Package org.cloudfoundry.client.lib.domain.CloudApplication

Examples of org.cloudfoundry.client.lib.domain.CloudApplication.AppState


   *
   * @return {@link IServer} state
   */
  public synchronized int getState() {
    if (application != null) {
      AppState state = application.getState();
      switch (state) {
      case STARTED:
        return IServer.STATE_STARTED;
      case UPDATING:
        return IServer.STATE_STARTING;
View Full Code Here

TOP

Related Classes of org.cloudfoundry.client.lib.domain.CloudApplication.AppState

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.