play.api.libs.ws.ssl

ConfigSSLContextBuilder

Related Doc: package ssl

class ConfigSSLContextBuilder extends SSLContextBuilder

Creates an SSL context builder from info objects.

Source
SSLContextBuilder.scala
Linear Supertypes
SSLContextBuilder, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ConfigSSLContextBuilder
  2. SSLContextBuilder
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ConfigSSLContextBuilder(info: SSLConfig, keyManagerFactory: KeyManagerFactoryWrapper, trustManagerFactory: TrustManagerFactoryWrapper)

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def build(): SSLContext

  6. def buildCompositeKeyManager(keyManagerConfig: KeyManagerConfig, algorithmChecker: AlgorithmChecker): CompositeX509KeyManager

  7. def buildCompositeTrustManager(trustManagerInfo: TrustManagerConfig, revocationEnabled: Boolean, revocationLists: Option[Seq[CRL]], algorithmChecker: AlgorithmChecker): CompositeX509TrustManager

  8. def buildKeyManager(ksc: KeyStoreConfig, algorithmChecker: AlgorithmChecker): X509KeyManager

    Builds a key manager from a keystore, using the KeyManagerFactory.

  9. def buildSSLContext(protocol: String, keyManagers: Seq[KeyManager], trustManagers: Seq[TrustManager], secureRandom: Option[SecureRandom]): SSLContext

  10. def buildTrustManager(tsc: TrustStoreConfig, revocationEnabled: Boolean, revocationLists: Option[Seq[CRL]], algorithmChecker: AlgorithmChecker): X509TrustManager

    Builds trust managers, using a TrustManagerFactory internally.

  11. def buildTrustManagerParameters(trustStore: KeyStore, revocationEnabled: Boolean, revocationLists: Option[Seq[CRL]], algorithmChecker: AlgorithmChecker): CertPathTrustManagerParameters

  12. def certificateRevocationList(sslConfig: SSLConfig): Option[Seq[CRL]]

  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  16. def fileBuilder(storeType: String, filePath: String, password: Option[Array[Char]]): KeyStoreBuilder

  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def generateCRL(inputStream: InputStream): CRL

  19. def generateCRLFromFile(file: File): CRL

  20. def generateCRLFromURL(url: URL): CRL

  21. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def keyStoreBuilder(ksc: KeyStoreConfig): KeyStoreBuilder

  25. val logger: org.slf4j.Logger

    Attributes
    protected
  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. def stringBuilder(data: String): KeyStoreBuilder

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    AnyRef → Any
  32. def trustStoreBuilder(tsc: TrustStoreConfig): KeyStoreBuilder

  33. def validateStore(store: KeyStore, algorithmChecker: AlgorithmChecker): Unit

    Tests each trusted certificate in the store, and warns if the certificate is not valid.

    Tests each trusted certificate in the store, and warns if the certificate is not valid. Does not throw exceptions.

  34. def validateStoreContainsPrivateKeys(ksc: KeyStoreConfig, keyStore: KeyStore): Boolean

    Validates that a key store (as opposed to a trust store) contains private keys for client authentication.

  35. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. def warnOnPKCS12EmptyPasswordBug(ksc: KeyStoreConfig): Boolean

    Returns true if the keystore should throw an exception as a result of the JSSE bug 6879539, false otherwise.

Inherited from SSLContextBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped