Chilkat Online Tools

GetApplicationComponentDetails Android Example

Migration Hub Strategy Recommendations

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // 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) {
        Log.i(TAG, "ConnectFailReason: " + String.valueOf(rest.get_ConnectFailReason()));
        Log.i(TAG, 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) {
        Log.i(TAG, rest.lastErrorText());
        return;
        }

    int respStatusCode = rest.get_ResponseStatusCode();
    Log.i(TAG, "response status code = " + String.valueOf(respStatusCode));
    if (respStatusCode != 200) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, rest.responseHeader());
        Log.i(TAG, "Response Body:");
        Log.i(TAG, 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
    // }

  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}