is new.
java.lang.Objectjavax.net.ssl.SSLContextSpi
This class defines the Service Provider Interface ( SPI ) for the SSLContext class.
All the abstract methods in this class must be implemented by each cryptographic service provider who wishes to supply the implementation of a particular SSL context.
| Constructor Summary | |
|---|---|
|
SSLContextSpi
() |
|
| Method Summary | |
|---|---|
protected abstract
SSLEngine
|
engineCreateSSLEngine
()
Creates a new SSLEngine using this context.
|
protected abstract
SSLEngine
|
engineCreateSSLEngine
(
String
Creates a SSLEngine using this context.
|
| protected abstract SSLSessionContext |
engineGetClientSessionContext
() Returns a client SSLSessionContext object for this context. |
| protected abstract SSLSessionContext |
engineGetServerSessionContext
() Returns a server SSLSessionContext object for this context. |
| protected abstract SSLServerSocketFactory |
engineGetServerSocketFactory
() Returns a ServerSocketFactory object for this context. |
| protected abstract SSLSocketFactory |
engineGetSocketFactory
() Returns a SocketFactory object for this context. |
| protected abstract void |
engineInit
(
KeyManager
[] km,
TrustManager
[] tm,
SecureRandom
sr) Initializes this context. |
| Methods inherited from class java.lang. Object |
|---|
| clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait |
| Constructor Detail |
|---|
public SSLContextSpi()
| Method Detail |
|---|
protected abstract void engineInit(KeyManager[] km,
TrustManager[] tm,
SecureRandom sr)
throws KeyManagementException
protected abstract SSLSocketFactory engineGetSocketFactory()
protected abstract SSLServerSocketFactory engineGetServerSocketFactory()
engineCreateSSLEngine
protected abstract
SSLEngine
engineCreateSSLEngine
()
Creates a new SSLEngine using this context.
Applications using this method are specifically not providing underlying implementations any hints about the peer for determining how sessions should be reused. If hints are desired,
engineCreateSSLEngine(String, int)
should be used instead.
Returns:
the SSLEngine Object
Since:
1.5
See Also:
SSLContext.createSSLEngine()
engineCreateSSLEngine
protected abstract
SSLEngine
engineCreateSSLEngine
(
String
host, int port)
Creates a SSLEngine using this context.
SSLEngine implementations may use the peerHost and peerPort parameters as hints for their internal session reuse strategy.
Parameters:
host - the non-authoritative name of the host
port - the non-authoritative port
Returns:
the SSLEngine Object
Since:
1.5
See Also:
SSLContext.createSSLEngine(String, int)
protected abstract SSLSessionContext engineGetServerSessionContext()
protected abstract SSLSessionContext engineGetClientSessionContext()