Skip navigation links

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.security.SSL
Class SSLContext

java.lang.Object
  extended by weblogic.security.SSL.SSLContext


public final class SSLContext
extends Object

SSLContext holds all of the state information shared across all sockets created under that context.


Method Summary
static SSLContext getInstance(String secureProtocol)
          Generates a new SSLContext object that implements the specified secure socket protocol.
 String getProtocol()
           
 String getProvider()
           
 SSLSocketFactory getSocketFactory()
          Returns an SSLSocketFactory object for this context.
 void loadLocalIdentity(Certificate[] certs, PrivateKey privateKey)
          Load local identity certificate chain and key for client.
 void loadLocalIdentity(InputStream[] streams)
          Deprecated. 12.1.1.0
 void loadLocalIdentity(InputStream[] streams, String password)
          Deprecated. 12.1.1.0
 void setHostnameVerifier(HostnameVerifier hv)
          Sets the HostnameVerifier for this instance of this class.
 void setTrustManager(TrustManager tm)
          Sets the TrustManager for this instance of this class.

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Method Detail

getInstance

public static SSLContext getInstance(String secureProtocol)
Generates a new SSLContext object that implements the specified secure socket protocol.
Parameters:
secureProtocol - The handshake protocol name.

setTrustManager

public void setTrustManager(TrustManager tm)
Sets the TrustManager for this instance of this class.

setHostnameVerifier

public void setHostnameVerifier(HostnameVerifier hv)
Sets the HostnameVerifier for this instance of this class.

loadLocalIdentity

public void loadLocalIdentity(InputStream[] streams)
Deprecated. 12.1.1.0
Sets an RSA private key and chain of X.509 certificates for SSL client authentication. The array of input streams passed as an argument are DER encoded values, the first of which is a private key, followed by X.509 certificates. All but the first of the certificates are issuer certificates for the previous certificate.

The InputStreams you use must support mark and reset. If you have PEM-encoded data, you can wrap your InputStreams in PEMInputStream classes before passing them in here.

Parameters:
streams - Array of InputStreams of DER encoded values
See Also:
PEMInputStream, BufferedInputStream

loadLocalIdentity

public void loadLocalIdentity(InputStream[] streams,
                              String password)
Deprecated. 12.1.1.0
Sets an RSA private key and chain of X.509 certificates for SSL client authentication. The array of input streams passed as an argument are DER encoded values, the first of which is a private key, followed by X.509 certificates. All but the first of the certificates are issuer certificates for the previous certificate.

The InputStreams you use must support mark and reset. If you have PEM-encoded data, you can wrap your InputStreams in PEMInputStream classes before passing them in here.

Parameters:
streams - Array of InputStreams of DER encoded values
password - Password for private key
See Also:
PEMInputStream, BufferedInputStream

loadLocalIdentity

public void loadLocalIdentity(Certificate[] certs,
                              PrivateKey privateKey)
Load local identity certificate chain and key for client.
Parameters:
certs - Array of certificates. All but the first of the certificates are issuer certificates for the previous certificate.
privateKey - Private key.

getSocketFactory

public SSLSocketFactory getSocketFactory()
Returns an SSLSocketFactory object for this context.
Returns:
SSLSocketFactory object for this context.

getProtocol

public String getProtocol()

getProvider

public String getProvider()

Skip navigation links

Copyright 1996, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09