Tabnine Logo
SSLUtils.getSupportedCipherSuites
Code IndexAdd Tabnine to your IDE (free)

How to use
getSupportedCipherSuites
method
in
com.sun.enterprise.security.ssl.SSLUtils

Best Java code snippets using com.sun.enterprise.security.ssl.SSLUtils.getSupportedCipherSuites (Showing top 3 results out of 315)

origin: org.glassfish.main.common/amx-core

public String[] getSupportedCipherSuites()
{
  try
  {
    final SSLUtils sslUtils = mHabitat.getService(SSLUtils.class);
    return sslUtils.getSupportedCipherSuites();
  }
  catch (final Exception ex)
  {
    AMXLoggerInfo.getLogger().log( Level.INFO, AMXLoggerInfo.cantGetCipherSuites, ex);
    return new String[0];
  }
}
origin: org.glassfish.security/security

  @Override
  public void execute(AdminCommandContext context) {
    final ActionReport report = context.getActionReport();
    String[] cipherSuites = sslutils.getSupportedCipherSuites();

    for (String cipherSuite : cipherSuites) {
      if (!cipherSuite.contains("_KRB5_")) {
        ActionReport.MessagePart part = report.getTopMessagePart().addChild();
        part.setMessage(cipherSuite);
      }
    }

    report.setActionExitCode(ActionReport.ExitCode.SUCCESS);

  }
}
origin: org.glassfish.main.security/security

  @Override
  public void execute(AdminCommandContext context) {
    final ActionReport report = context.getActionReport();
    String[] cipherSuites = sslutils.getSupportedCipherSuites();

    for (String cipherSuite : cipherSuites) {
      if (!cipherSuite.contains("_KRB5_")) {
        ActionReport.MessagePart part = report.getTopMessagePart().addChild();
        part.setMessage(cipherSuite);
      }
    }

    report.setActionExitCode(ActionReport.ExitCode.SUCCESS);

  }
}
com.sun.enterprise.security.sslSSLUtilsgetSupportedCipherSuites

Popular methods of SSLUtils

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

Popular in Java

  • Updating database using SQL prepared statement
  • notifyDataSetChanged (ArrayAdapter)
  • getSharedPreferences (Context)
  • getSystemService (Context)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • JButton (javax.swing)
  • Option (scala)
  • Top Sublime Text plugins
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