public abstract class

SSLContextSpi

extends Object
java.lang.Object
   ↳ com.sun.net.ssl.SSLContextSpi

This class is deprecated.
As of JDK 1.4, this implementation-specific class was replaced by SSLContextSpi.

Class Overview

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.

Summary

Public Constructors
SSLContextSpi()
Protected Methods
abstract SSLServerSocketFactory engineGetServerSocketFactory()
Returns a ServerSocketFactory object for this context.
abstract SSLSocketFactory engineGetSocketFactory()
Returns a SocketFactory object for this context.
abstract void engineInit(KeyManager[] ah, TrustManager[] th, SecureRandom sr)
Initializes this context.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public SSLContextSpi ()

Protected Methods

protected abstract SSLServerSocketFactory engineGetServerSocketFactory ()

Returns a ServerSocketFactory object for this context.

Returns
  • the factory

protected abstract SSLSocketFactory engineGetSocketFactory ()

Returns a SocketFactory object for this context.

Returns
  • the factory

protected abstract void engineInit (KeyManager[] ah, TrustManager[] th, SecureRandom sr)

Initializes this context.