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

How to use
getDefaultX509TrustManagerSecurityFactory
method
in
org.wildfly.security.ssl.SSLUtils

Best Java code snippets using org.wildfly.security.ssl.SSLUtils.getDefaultX509TrustManagerSecurityFactory (Showing top 8 results out of 315)

origin: wildfly/wildfly

SecurityFactory<X509TrustManager> getX509TrustManagerFactory() {
  return trustManagerFactory == null ? SSLUtils.getDefaultX509TrustManagerSecurityFactory() : trustManagerFactory;
}
origin: wildfly/wildfly

/**
 * Construct a new instance.
 *
 * @param delegate the delegate SASL server factory
 * @param trustManager the trust manager to use or {@code null} if the default trust manager should be used
 */
public TrustManagerSaslServerFactory(final SaslServerFactory delegate, final X509TrustManager trustManager) {
  super(delegate);
  if (trustManager == null) {
    this.trustManagerFactory = SSLUtils.getDefaultX509TrustManagerSecurityFactory();
  } else {
    this.trustManagerFactory = new FixedSecurityFactory<>(trustManager);
  }
}
origin: org.wildfly.security/wildfly-elytron-client

SecurityFactory<X509TrustManager> getX509TrustManagerFactory() {
  return trustManagerFactory == null ? SSLUtils.getDefaultX509TrustManagerSecurityFactory() : trustManagerFactory;
}
origin: org.jboss.eap/wildfly-client-all

SecurityFactory<X509TrustManager> getX509TrustManagerFactory() {
  return trustManagerFactory == null ? SSLUtils.getDefaultX509TrustManagerSecurityFactory() : trustManagerFactory;
}
origin: org.wildfly.security/wildfly-elytron

SecurityFactory<X509TrustManager> getX509TrustManagerFactory() {
  return trustManagerFactory == null ? SSLUtils.getDefaultX509TrustManagerSecurityFactory() : trustManagerFactory;
}
origin: org.wildfly.security/wildfly-elytron-sasl

/**
 * Construct a new instance.
 *
 * @param delegate the delegate SASL server factory
 * @param trustManager the trust manager to use or {@code null} if the default trust manager should be used
 */
public TrustManagerSaslServerFactory(final SaslServerFactory delegate, final X509TrustManager trustManager) {
  super(delegate);
  if (trustManager == null) {
    this.trustManagerFactory = SSLUtils.getDefaultX509TrustManagerSecurityFactory();
  } else {
    this.trustManagerFactory = new FixedSecurityFactory<>(trustManager);
  }
}
origin: org.wildfly.security/wildfly-elytron

/**
 * Construct a new instance.
 *
 * @param delegate the delegate SASL server factory
 * @param trustManager the trust manager to use or {@code null} if the default trust manager should be used
 */
public TrustManagerSaslServerFactory(final SaslServerFactory delegate, final X509TrustManager trustManager) {
  super(delegate);
  if (trustManager == null) {
    this.trustManagerFactory = SSLUtils.getDefaultX509TrustManagerSecurityFactory();
  } else {
    this.trustManagerFactory = new FixedSecurityFactory<>(trustManager);
  }
}
origin: org.jboss.eap/wildfly-client-all

/**
 * Construct a new instance.
 *
 * @param delegate the delegate SASL server factory
 * @param trustManager the trust manager to use or {@code null} if the default trust manager should be used
 */
public TrustManagerSaslServerFactory(final SaslServerFactory delegate, final X509TrustManager trustManager) {
  super(delegate);
  if (trustManager == null) {
    this.trustManagerFactory = SSLUtils.getDefaultX509TrustManagerSecurityFactory();
  } else {
    this.trustManagerFactory = new FixedSecurityFactory<>(trustManager);
  }
}
org.wildfly.security.sslSSLUtilsgetDefaultX509TrustManagerSecurityFactory

Javadoc

Get the platform's default X.509 trust manager security factory. The factory caches the instance.

Popular methods of SSLUtils

  • createConfiguredSslContext
    Create a configured SSL context from an outside SSL context.
  • createHostNameStringPredicateSNIMatcher
    Create an SNIMatcher which matches SNI host name strings that satisfy the given predicate.
  • createSslContextFactory
    Create an SSL context factory which locates the best context by searching the preferred providers in

Popular in Java

  • Creating JSON documents from java classes using gson
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • CodeWhisperer alternatives
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