GetApplicationComponentDetails Java Example
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkRest rest = new CkRest();
boolean success;
CkAuthAws authAws = new CkAuthAws();
authAws.put_AccessKey("AWS_ACCESS_KEY");
authAws.put_SecretKey("AWS_SECRET_KEY");
// Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
authAws.put_Region("us-west-2");
authAws.put_ServiceName("migrationhub-strategy");
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws);
// URL: https://migrationhub-strategy.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect("migrationhub-strategy.us-west-2.amazonaws.com",443,true,true);
if (success != true) {
System.out.println("ConnectFailReason: " + rest.get_ConnectFailReason());
System.out.println(rest.lastErrorText());
return;
}
rest.AddHeader("Content-Type","application/x-amz-json-1.1");
rest.AddHeader("X-Amz-Target","GetApplicationComponentDetails");
CkStringBuilder sbResponseBody = new CkStringBuilder();
success = rest.FullRequestNoBodySb("GET","/get-applicationcomponent-details/{applicationComponentId}",sbResponseBody);
if (success != true) {
System.out.println(rest.lastErrorText());
return;
}
int respStatusCode = rest.get_ResponseStatusCode();
System.out.println("response status code = " + respStatusCode);
if (respStatusCode != 200) {
System.out.println("Response Header:");
System.out.println(rest.responseHeader());
System.out.println("Response Body:");
System.out.println(sbResponseBody.getAsString());
return;
}
CkJsonObject jResp = new CkJsonObject();
jResp.LoadSb(sbResponseBody);
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
// Use this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
int count;
String severity;
String branch;
String repository;
String versionControlType;
String id;
String name;
String strVal;
String AnalysisStatus = jResp.stringOf("applicationComponentDetail.analysisStatus");
String S3Bucket = jResp.stringOf("applicationComponentDetail.antipatternReportS3Object.s3Bucket");
String S3key = jResp.stringOf("applicationComponentDetail.antipatternReportS3Object.s3key");
String AntipatternReportStatus = jResp.stringOf("applicationComponentDetail.antipatternReportStatus");
String AntipatternReportStatusMessage = jResp.stringOf("applicationComponentDetail.antipatternReportStatusMessage");
String AppType = jResp.stringOf("applicationComponentDetail.appType");
String AssociatedServerId = jResp.stringOf("applicationComponentDetail.associatedServerId");
String SecretName = jResp.stringOf("applicationComponentDetail.databaseConfigDetail.secretName");
String Id = jResp.stringOf("applicationComponentDetail.id");
String InclusionStatus = jResp.stringOf("applicationComponentDetail.inclusionStatus");
int LastAnalyzedTimestamp = jResp.IntOf("applicationComponentDetail.lastAnalyzedTimestamp");
int MoreServerAssociationExists = jResp.IntOf("applicationComponentDetail.moreServerAssociationExists");
String Name = jResp.stringOf("applicationComponentDetail.name");
String OsDriver = jResp.stringOf("applicationComponentDetail.osDriver");
String OsVersion = jResp.stringOf("applicationComponentDetail.osVersion");
String Strategy = jResp.stringOf("applicationComponentDetail.recommendationSet.strategy");
String TargetDestination = jResp.stringOf("applicationComponentDetail.recommendationSet.targetDestination");
String Description = jResp.stringOf("applicationComponentDetail.recommendationSet.transformationTool.description");
String TransformationToolName = jResp.stringOf("applicationComponentDetail.recommendationSet.transformationTool.name");
String TranformationToolInstallationLink = jResp.stringOf("applicationComponentDetail.recommendationSet.transformationTool.tranformationToolInstallationLink");
String ResourceSubType = jResp.stringOf("applicationComponentDetail.resourceSubType");
String StatusMessage = jResp.stringOf("applicationComponentDetail.statusMessage");
int moreApplicationResource = jResp.IntOf("moreApplicationResource");
int i = 0;
int count_i = jResp.SizeOfArray("applicationComponentDetail.listAntipatternSeveritySummary");
while (i < count_i) {
jResp.put_I(i);
count = jResp.IntOf("applicationComponentDetail.listAntipatternSeveritySummary[i].count");
severity = jResp.stringOf("applicationComponentDetail.listAntipatternSeveritySummary[i].severity");
i = i+1;
}
i = 0;
count_i = jResp.SizeOfArray("applicationComponentDetail.sourceCodeRepositories");
while (i < count_i) {
jResp.put_I(i);
branch = jResp.stringOf("applicationComponentDetail.sourceCodeRepositories[i].branch");
repository = jResp.stringOf("applicationComponentDetail.sourceCodeRepositories[i].repository");
versionControlType = jResp.stringOf("applicationComponentDetail.sourceCodeRepositories[i].versionControlType");
i = i+1;
}
i = 0;
count_i = jResp.SizeOfArray("associatedApplications");
while (i < count_i) {
jResp.put_I(i);
id = jResp.stringOf("associatedApplications[i].id");
name = jResp.stringOf("associatedApplications[i].name");
i = i+1;
}
i = 0;
count_i = jResp.SizeOfArray("associatedServerIds");
while (i < count_i) {
jResp.put_I(i);
strVal = jResp.stringOf("associatedServerIds[i]");
i = i+1;
}
// A sample JSON response body parsed by the above code:
// {
// "applicationComponentDetail": {
// "analysisStatus": "string",
// "antipatternReportS3Object": {
// "s3Bucket": "string",
// "s3key": "string"
// },
// "antipatternReportStatus": "string",
// "antipatternReportStatusMessage": "string",
// "appType": "string",
// "associatedServerId": "string",
// "databaseConfigDetail": {
// "secretName": "string"
// },
// "id": "string",
// "inclusionStatus": "string",
// "lastAnalyzedTimestamp": number,
// "listAntipatternSeveritySummary": [
// {
// "count": number,
// "severity": "string"
// }
// ],
// "moreServerAssociationExists": boolean,
// "name": "string",
// "osDriver": "string",
// "osVersion": "string",
// "recommendationSet": {
// "strategy": "string",
// "targetDestination": "string",
// "transformationTool": {
// "description": "string",
// "name": "string",
// "tranformationToolInstallationLink": "string"
// }
// },
// "resourceSubType": "string",
// "sourceCodeRepositories": [
// {
// "branch": "string",
// "repository": "string",
// "versionControlType": "string"
// }
// ],
// "statusMessage": "string"
// },
// "associatedApplications": [
// {
// "id": "string",
// "name": "string"
// }
// ],
// "associatedServerIds": [
// "string"
// ],
// "moreApplicationResource": boolean
// }
}
}