Package com.cloudcontrolled.api.request

Examples of com.cloudcontrolled.api.request.ApplicationRequest


    log.info("Successfully pushed refs of " + deploymentQualifier + " with branch " + retrieveBranch() + " to " + remoteRepository + " on CloudControl PaaS.");
  }

  private String retrieveRemoteRepositoryLocation() throws MojoFailureException, MojoExecutionException {
    CloudControlClient client = CloudControlSupport.createCloudControlClient();
    ApplicationRequest applicationRequest = CloudControlSupport.createApplicationRequest(application);

    ApplicationResponse applicationResponse = null;
    try {
      applicationResponse = client.send(applicationRequest);
View Full Code Here


   *            a {@link java.lang.String} object.
   * @return a {@link com.cloudcontrolled.api.request.ApplicationRequest}
   *         object.
   */
  public static ApplicationRequest createApplicationRequest(String applicationName) {
    ApplicationRequest applicationRequest = new ApplicationRequest();
    applicationRequest.setApplicationName(applicationName);

    return applicationRequest;
  }
View Full Code Here

TOP

Related Classes of com.cloudcontrolled.api.request.ApplicationRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.