public abstract class

SSLSocket

extends Socket
java.lang.Object
   ↳ java.net.Socket
     ↳ javax.net.ssl.SSLSocket

Class Overview

The extension of Socket providing secure protocols like SSL (Secure Socket Layer") or TLS (Transport Layer Security).

Summary

Protected Constructors
SSLSocket()
Only to be used by subclasses.
SSLSocket(String host, int port)
Only to be used by subclasses.
SSLSocket(InetAddress address, int port)
Only to be used by subclasses.
SSLSocket(String host, int port, InetAddress clientAddress, int clientPort)
Only to be used by subclasses.
SSLSocket(InetAddress address, int port, InetAddress clientAddress, int clientPort)
Only to be used by subclasses.
Public Methods
abstract void addHandshakeCompletedListener(HandshakeCompletedListener listener)
Registers the specified listener to receive notification on completion of a handshake on this connection.
abstract boolean getEnableSessionCreation()
Returns whether new SSL sessions may be created by this socket or if existing sessions must be reused.
abstract String[] getEnabledCipherSuites()
Returns the names of the enabled cipher suites.
abstract String[] getEnabledProtocols()
Returns the names of the enabled protocols.
abstract boolean getNeedClientAuth()
Returns whether this connection requires client authentication.
abstract SSLSession getSession()
Returns the SSLSession for this connection.
abstract String[] getSupportedCipherSuites()
Returns the names of the supported cipher suites.
abstract String[] getSupportedProtocols()
Returns the names of the supported protocols.
abstract boolean getUseClientMode()
Returns whether this connection will act in client mode when handshaking.
abstract boolean getWantClientAuth()
Returns whether this connections will request client authentication.
abstract void removeHandshakeCompletedListener(HandshakeCompletedListener listener)
Removes the specified handshake completion listener.
abstract void setEnableSessionCreation(boolean flag)
Sets whether new SSL sessions may be created by this socket or if existing sessions must be reused.
abstract void setEnabledCipherSuites(String[] suites)
Sets the names of the cipher suites to be enabled.
abstract void setEnabledProtocols(String[] protocols)
Sets the names of the protocols to be enabled.
abstract void setNeedClientAuth(boolean need)
Sets whether this connection should require client authentication.
abstract void setUseClientMode(boolean mode)
Sets whether this connection should act in client mode when handshaking.
abstract void setWantClientAuth(boolean want)
Sets whether this connections should request client authentication.
abstract void startHandshake()
Starts a new SSL handshake on this connection.
[Expand]
Inherited Methods
From class java.net.Socket
From class java.lang.Object

Protected Constructors

protected SSLSocket ()

Only to be used by subclasses.

Creates a TCP socket.

protected SSLSocket (String host, int port)

Only to be used by subclasses.

Creates a TCP socket connection to the specified host at the specified port.

Parameters
host the host name to connect to.
port the port number to connect to.
Throws
IOException if creating the socket fails.
UnknownHostException if the specified host is not known.

protected SSLSocket (InetAddress address, int port)

Only to be used by subclasses.

Creates a TCP socket connection to the specified address at the specified port.

Parameters
address the address to connect to.
port the port number to connect to.
Throws
IOException if creating the socket fails.

protected SSLSocket (String host, int port, InetAddress clientAddress, int clientPort)

Only to be used by subclasses.

Creates a TCP socket connection to the specified host at the specified port with the client side bound to the specified address and port.

Parameters
host the host name to connect to.
port the port number to connect to.
clientAddress the client address to bind to
clientPort the client port number to bind to.
Throws
IOException if creating the socket fails.
UnknownHostException if the specified host is not known.

protected SSLSocket (InetAddress address, int port, InetAddress clientAddress, int clientPort)

Only to be used by subclasses.

Creates a TCP socket connection to the specified address at the specified port with the client side bound to the specified address and port.

Parameters
address the address to connect to.
port the port number to connect to.
clientAddress the client address to bind to.
clientPort the client port number to bind to.
Throws
IOException if creating the socket fails.

Public Methods

public abstract void addHandshakeCompletedListener (HandshakeCompletedListener listener)

Registers the specified listener to receive notification on completion of a handshake on this connection.

Parameters
listener the listener to register.
Throws
IllegalArgumentException if listener is null.

public abstract boolean getEnableSessionCreation ()

Returns whether new SSL sessions may be created by this socket or if existing sessions must be reused.

Returns
  • true if new sessions may be created, otherwise false.

public abstract String[] getEnabledCipherSuites ()

Returns the names of the enabled cipher suites.

Returns
  • the names of the enabled cipher suites.

public abstract String[] getEnabledProtocols ()

Returns the names of the enabled protocols.

Returns
  • the names of the enabled protocols.

public abstract boolean getNeedClientAuth ()

Returns whether this connection requires client authentication. This is only useful for sockets in server mode.

Returns
  • true if client authentication is required, false if no client authentication is needed.

public abstract SSLSession getSession ()

Returns the SSLSession for this connection. If necessary, a handshake will be initiated, in which case this method will block until the handshake has been established. If the handshake fails, an invalid session object will be returned.

Returns
  • the session object.

public abstract String[] getSupportedCipherSuites ()

Returns the names of the supported cipher suites.

Returns
  • the names of the supported cipher suites.

public abstract String[] getSupportedProtocols ()

Returns the names of the supported protocols.

Returns
  • the names of the supported protocols.

public abstract boolean getUseClientMode ()

Returns whether this connection will act in client mode when handshaking.

Returns
  • true if this connections will act in client mode when handshaking, false if not.

public abstract boolean getWantClientAuth ()

Returns whether this connections will request client authentication.

Returns
  • true is client authentication will be requested, false if no client authentication is needed.

public abstract void removeHandshakeCompletedListener (HandshakeCompletedListener listener)

Removes the specified handshake completion listener.

Parameters
listener the listener to remove.
Throws
IllegalArgumentException if the specified listener is not registered or null.

public abstract void setEnableSessionCreation (boolean flag)

Sets whether new SSL sessions may be created by this socket or if existing sessions must be reused.

Parameters
flag true if new sessions may be created, otherwise false.

public abstract void setEnabledCipherSuites (String[] suites)

Sets the names of the cipher suites to be enabled. Only cipher suites returned by getSupportedCipherSuites() are allowed.

Parameters
suites the names of the to be enabled cipher suites.
Throws
IllegalArgumentException if one of the cipher suite names is not supported.

public abstract void setEnabledProtocols (String[] protocols)

Sets the names of the protocols to be enabled. Only protocols returned by getSupportedProtocols() are allowed.

Parameters
protocols the names of the to be enabled protocols.
Throws
IllegalArgumentException if one of the protocols is not supported.

public abstract void setNeedClientAuth (boolean need)

Sets whether this connection should require client authentication. This is only useful for sockets in server mode. The client authentication is one of the following:

  • authentication required
  • authentication requested
  • no authentication needed
This method overrides the setting of setWantClientAuth(boolean).

Parameters
need true if client authentication is required, false if no authentication is needed.

public abstract void setUseClientMode (boolean mode)

Sets whether this connection should act in client mode when handshaking.

Parameters
mode true if this connection should act in client mode, false if not.

public abstract void setWantClientAuth (boolean want)

Sets whether this connections should request client authentication. This is only useful for sockets in server mode. The client authentication is one of:

  • authentication required
  • authentication requested
  • no authentication needed
This method overrides the setting of setNeedClientAuth(boolean).

Parameters
want true if client authentication should be requested, false if not authentication is needed.

public abstract void startHandshake ()

Starts a new SSL handshake on this connection.

Throws
IOException if an error occurs.