Communicate with Fortify Software Security Center through REST API in java, a swagger generated client
- API version: 1:23.1.0.0145
To run swagger generator and produce the library, simply run
gradlew clean build
When you build this project it will use [./src/swagger/spec.json] to generate a source code to communicate with Fortify SSC using REST, then compile it into a jar library and prepare for publishing to Maven central.
You can download spec.json from your working Fortify Software Security Center on the API Reference page.
Add this dependency to your project's POM:
<dependency>
<groupId>com.fortify</groupId>
<artifactId>ssc-restapi-client</artifactId>
<version>23.1.1</version>
<scope>compile</scope>
</dependency>
Add this dependency to your project's build file:
compile "com.fortify:ssc-restapi-client:23.1.1"
At first generate the JAR by running the gradle build Then manually install the following JARs:
- build/libs/ssc-restapi-client-23.1.1.jar
- build/swagger-code-ssc/build/target/lib/*.jar
Please follow the installation instruction and execute the following Java code:
import com.fortify.ssc.restclient.*;
import com.fortify.ssc.restclient.auth.*;
import com.fortify.ssc.restclient.model.*;
import com.fortify.ssc.restclient.api.AaTrainingStatusOfProjectVersionControllerApi;
import java.io.File;
import java.util.*;
public class AaTrainingStatusOfProjectVersionControllerApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: FortifyToken
ApiKeyAuth FortifyToken = (ApiKeyAuth) defaultClient.getAuthentication("FortifyToken");
FortifyToken.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//FortifyToken.setApiKeyPrefix("Token");
AaTrainingStatusOfProjectVersionControllerApi apiInstance = new AaTrainingStatusOfProjectVersionControllerApi();
Long parentId = 789L; // Long | parentId
String fields = "fields_example"; // String | Output fields
try {
ApiResultListAATrainingStatus result = apiInstance.listAaTrainingStatusOfProjectVersion(parentId, fields);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AaTrainingStatusOfProjectVersionControllerApi#listAaTrainingStatusOfProjectVersion");
e.printStackTrace();
}
}
}
Authentication schemes defined for the API:
- Type: HTTP basic authentication
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
It's recommended to create an instance of ApiClient
per thread in a multithreaded environment to avoid any potential issues.
Fortify R&D