Package org.xnio.ssl
Class JsseSslConnection
java.lang.Object
org.xnio.Connection
org.xnio.StreamConnection
org.xnio.ssl.SslConnection
org.xnio.ssl.JsseSslConnection
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Channel
,InterruptibleChannel
,BoundChannel
,CloseableChannel
,CloseListenerSettable<StreamConnection>
,Configurable
,ConnectedChannel
,SslChannel
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.xnio.channels.CloseListenerSettable
CloseListenerSettable.Setter<C extends Channel>
-
Field Summary
Fields inherited from class org.xnio.Connection
thread
Fields inherited from interface org.xnio.channels.Configurable
EMPTY
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
The close action to perform on this connection.ChannelListener.Setter<? extends SslConnection>
Get the setter which can be used to change the handshake listener for this channel.Get the local address that this channel is bound to.<T> T
Get the value of a channel option.Get the peer address of this channel.Get the currentSSLSession
for this channel.boolean
isOpen()
boolean
Determine whether reads have been shut down on this connection.boolean
Determine whether writes have been shut down on this connection.<T> T
Set an option for this channel.void
Start or restart the SSL/TLS handshake.boolean
supportsOption
(Option<?> option) Determine whether an option is supported on this channel.Methods inherited from class org.xnio.ssl.SslConnection
getCloseSetter
Methods inherited from class org.xnio.StreamConnection
getCloseListener, getSinkChannel, getSourceChannel, notifyReadClosed, notifyWriteClosed, setCloseListener, setSinkConduit, setSourceConduit
Methods inherited from class org.xnio.Connection
close, getIoThread, getLocalAddress, getPeerAddress, getWorker, readClosed, writeClosed
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.xnio.channels.BoundChannel
getLocalAddress
Methods inherited from interface org.xnio.channels.CloseableChannel
close, getIoThread, getWorker
Methods inherited from interface org.xnio.channels.ConnectedChannel
getPeerAddress
-
Constructor Details
-
JsseSslConnection
-
-
Method Details
-
startHandshake
Description copied from class:SslConnection
Start or restart the SSL/TLS handshake. To force a complete SSL/TLS session renegotiation, the current session should be invalidated prior to calling this method. This method is not needed for the initial handshake unless theOptions.SSL_STARTTLS
option is set as sending or receiving over the channel will automatically initiate it. This method must not be called while a read or write operation is taking place.- Specified by:
startHandshake
in interfaceSslChannel
- Specified by:
startHandshake
in classSslConnection
- Throws:
IOException
- if an I/O error occurs
-
getSslSession
Description copied from class:SslConnection
Get the currentSSLSession
for this channel.- Specified by:
getSslSession
in interfaceSslChannel
- Specified by:
getSslSession
in classSslConnection
- Returns:
- the current
SSLSession
-
closeAction
Description copied from class:Connection
The close action to perform on this connection.- Overrides:
closeAction
in classConnection
- Throws:
IOException
- if close fails
-
getPeerAddress
Description copied from interface:ConnectedChannel
Get the peer address of this channel.- Returns:
- the peer address
-
getLocalAddress
Description copied from interface:BoundChannel
Get the local address that this channel is bound to.- Returns:
- the local address
-
getHandshakeSetter
Description copied from class:SslConnection
Get the setter which can be used to change the handshake listener for this channel.- Specified by:
getHandshakeSetter
in interfaceSslChannel
- Specified by:
getHandshakeSetter
in classSslConnection
- Returns:
- the setter
-
setOption
Set an option for this channel. Unsupported options are ignored.- Specified by:
setOption
in interfaceConfigurable
- Overrides:
setOption
in classConnection
- Type Parameters:
T
- the type of the option value- Parameters:
option
- the option to setvalue
- the value of the option to set- Returns:
- the previous option value, if any
- Throws:
IllegalArgumentException
- if the value is not acceptable for this optionIOException
- if an I/O error occurred when modifying the option
-
getOption
Get the value of a channel option.- Specified by:
getOption
in interfaceConfigurable
- Overrides:
getOption
in classConnection
- Type Parameters:
T
- the type of the option value- Parameters:
option
- the option to get- Returns:
- the value of the option, or
null
if it is not set - Throws:
IOException
- if an I/O error occurred when reading the option
-
supportsOption
Determine whether an option is supported on this channel.- Specified by:
supportsOption
in interfaceConfigurable
- Overrides:
supportsOption
in classConnection
- Parameters:
option
- the option- Returns:
true
if it is supported
-
isOpen
public boolean isOpen()- Specified by:
isOpen
in interfaceChannel
- Overrides:
isOpen
in classConnection
-
isWriteShutdown
public boolean isWriteShutdown()Description copied from class:Connection
Determine whether writes have been shut down on this connection.- Overrides:
isWriteShutdown
in classConnection
- Returns:
true
if writes were shut down
-
isReadShutdown
public boolean isReadShutdown()Description copied from class:Connection
Determine whether reads have been shut down on this connection.- Overrides:
isReadShutdown
in classConnection
- Returns:
true
if reads were shut down
-
getEngine
-