Package org.cloudfoundry.ide.eclipse.server.core.internal.client

Examples of org.cloudfoundry.ide.eclipse.server.core.internal.client.SelfSignedStore


   * @return true if server uses self-signed certificates. False otherwise,
   * including if server preference can't be resolved.
   */
  public boolean getSelfSignedCertificate() {
    try {
      return new SelfSignedStore(getUrl()).isSelfSignedCert();
    }
    catch (CoreException e) {
      CloudFoundryPlugin.logError(e);
    }
    return false;
View Full Code Here


   * @param isSelfSigned true if server uses self-signed certificate
   * @param cloudServerURL non-null Cloud Foundry server URL
   */
  public static void setSelfSignedCertificate(boolean isSelfSigned, String cloudServerURL) {
    try {
      new SelfSignedStore(cloudServerURL).setSelfSignedCert(isSelfSigned);
    }
    catch (CoreException e) {
      CloudFoundryPlugin.logError(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.core.internal.client.SelfSignedStore

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.