Examples of newCloudController()


Examples of org.cloudfoundry.client.lib.rest.CloudControllerClientFactory.newCloudController()

  public CloudFoundryClient(CloudCredentials credentials, URL cloudControllerUrl, CloudSpace sessionSpace,
                            HttpProxyConfiguration httpProxyConfiguration, boolean trustSelfSignedCerts) {
    Assert.notNull(cloudControllerUrl, "URL for cloud controller cannot be null");
    CloudControllerClientFactory cloudControllerClientFactory =
        new CloudControllerClientFactory(httpProxyConfiguration, trustSelfSignedCerts);
    this.cc = cloudControllerClientFactory.newCloudController(cloudControllerUrl, credentials, sessionSpace);
  }

  /**
   * Construct a client with a default space name and org name.
   */
 
View Full Code Here

Examples of org.cloudfoundry.client.lib.rest.CloudControllerClientFactory.newCloudController()

  public CloudFoundryClient(CloudCredentials credentials, URL cloudControllerUrl, String orgName, String spaceName,
                            HttpProxyConfiguration httpProxyConfiguration, boolean trustSelfSignedCerts) {
    Assert.notNull(cloudControllerUrl, "URL for cloud controller cannot be null");
    CloudControllerClientFactory cloudControllerClientFactory =
        new CloudControllerClientFactory(httpProxyConfiguration, trustSelfSignedCerts);
    this.cc = cloudControllerClientFactory.newCloudController(cloudControllerUrl, credentials, orgName, spaceName);
  }

  /**
   * Construct a client with a pre-configured CloudControllerClient
   */
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.