Package org.cloudfoundry.ide.eclipse.server.ui.internal

Examples of org.cloudfoundry.ide.eclipse.server.ui.internal.ServerDescriptor


    // Only create a new space, if it doesnt match the existing space
    if (selectedSpace != null
        && !CloudServerSpacesDelegate.matchesExisting(selectedSpace, cloudServer.getCloudFoundrySpace())) {

      String serverName = cloudSpacePage.getServerName();
      final ServerDescriptor descriptor = ServerDescriptor.getServerDescriptor(cloudServer, serverName);

      if (descriptor == null) {
        CloudFoundryPlugin.logError(NLS.bind(Messages.ERROR_NO_CLOUD_SERVER_DESCRIPTOR,
            cloudServer.getServerId()));
        return false;
View Full Code Here


    assertEquals("pass", cloudFoundryServer.getPassword());
  }

  @Override
  protected void setUp() throws Exception {
    ServerDescriptor descriptor = new ServerDescriptor("server") {
      {
        setRuntimeTypeId("org.cloudfoundry.cloudfoundryserver.test.runtime.10");
        setServerTypeId("org.cloudfoundry.cloudfoundryserver.test.10");
        setRuntimeName("Cloud Foundry Test Runtime");
        setServerName("Cloud Foundry Test Server");
View Full Code Here

  public CloudFoundryTestFixture(String serverDomain) {

    this.url = "http://api." + serverDomain;

    ServerDescriptor descriptor = new ServerDescriptor("server") {
      {
        setRuntimeTypeId("org.cloudfoundry.cloudfoundryserver.test.runtime.10");
        setServerTypeId("org.cloudfoundry.cloudfoundryserver.test.10");
        setRuntimeName("Cloud Foundry Test Runtime");
        setServerName("Cloud Foundry Test Server");
View Full Code Here

TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.ui.internal.ServerDescriptor

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.