Package org.cloudfoundry.client.lib

Examples of org.cloudfoundry.client.lib.CloudFoundryClient


    try {
      vcapUrl = new URL(VCAP_TARGET);
    } catch (MalformedURLException e) {
      throw new RuntimeException(e);
    }
    CloudFoundryClient client = new CloudFoundryClient(new CloudCredentials(VCAP_EMAIL, VCAP_PASSWD), vcapUrl);
    client.login();
    String version = client.getCloudInfo().getVersion();
    if (Float.valueOf(version) >= 2.0) {
      client = new CloudFoundryClient(new CloudCredentials(VCAP_EMAIL, VCAP_PASSWD), vcapUrl, getSpace(client));
      client.login();
    }
    return client;
  }
View Full Code Here

TOP

Related Classes of org.cloudfoundry.client.lib.CloudFoundryClient

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.