Tabnine Logo
SSLUtils.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
com.sun.enterprise.security.ssl.SSLUtils
constructor

Best Java code snippets using com.sun.enterprise.security.ssl.SSLUtils.<init> (Showing top 4 results out of 315)

origin: org.glassfish.main.security/security

  private void initSSLUtils() {
    if (sslUtils == null) {
      if (Globals.getDefaultHabitat() != null) {
        sslUtils = Globals.getDefaultHabitat().getService(SSLUtils.class);
      } else {
        sslUtils = new SSLUtils();
        sslUtils.postConstruct();
      }
    }
  }
}
origin: org.glassfish.security/security

  private void initSSLUtils() {
    if (sslUtils == null) {
      if (Globals.getDefaultHabitat() != null) {
        sslUtils = Globals.getDefaultHabitat().getByType(SSLUtils.class);
      } else {
        sslUtils = new SSLUtils();
        sslUtils.postConstruct();
      }
    }
  }
}
origin: org.glassfish.security/security

protected BaseContainerCallbackHandler() {
  if(Globals.getDefaultHabitat() == null){
    sslUtils = new SSLUtils();
    secSup = SecuritySupport.getDefaultInstance();
    masterPasswordHelper = null;
    sslUtils.postConstruct();
  } else {
    sslUtils = Globals.getDefaultHabitat().getComponent(SSLUtils.class);
    secSup = Globals.getDefaultHabitat().getByContract(SecuritySupport.class);
    masterPasswordHelper = Globals.getDefaultHabitat().getComponent(MasterPassword.class, "Security SSL Password Provider Service");
  }
}

origin: org.glassfish.main.security/security-ee

protected BaseContainerCallbackHandler() {
  if(Globals.getDefaultHabitat() == null){
    sslUtils = new SSLUtils();
    secSup = SecuritySupport.getDefaultInstance();
    masterPasswordHelper = null;
    sslUtils.postConstruct();
  } else {
    sslUtils = Globals.getDefaultHabitat().getService(SSLUtils.class);
    secSup = Globals.getDefaultHabitat().getService(SecuritySupport.class);
    masterPasswordHelper = Globals.getDefaultHabitat().getService(MasterPassword.class, "Security SSL Password Provider Service");
  }
}

com.sun.enterprise.security.sslSSLUtils<init>

Popular methods of SSLUtils

  • getKeyManagers
  • getTrustManagers
  • checkPermission
  • getKeyStores
  • getSupportedCipherSuites
  • getTrustStores
  • mergingTrustStores
  • postConstruct
  • setAppclientSsl
  • getAdminSSLContext
  • getAdminSocketFactory
  • getKeyStore
  • getAdminSocketFactory,
  • getKeyStore,
  • getMergedTrustStore,
  • getPrivateKeyEntryFromTokenAlias,
  • getSSLContext,
  • getTrustStore,
  • verifyMasterPassword,
  • checkCertificateDates,
  • getKeyStorePass

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getExternalFilesDir (Context)
  • requestLocationUpdates (LocationManager)
  • setScale (BigDecimal)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now