Package org.glassfish.grizzly.ssl
Class SSLConnectionContext
- java.lang.Object
-
- org.glassfish.grizzly.ssl.SSLConnectionContext
-
public final class SSLConnectionContext extends Object
SSL context associated with aConnection.- Author:
- Alexey Stashok
-
-
Constructor Summary
Constructors Constructor Description SSLConnectionContext(Connection connection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidattach()voidconfigure(SSLEngine sslEngine)intgetAppBufferSize()ConnectiongetConnection()intgetNetBufferSize()FilterChaingetNewConnectionFilterChain()SSLEnginegetSslEngine()booleanisServerMode()voidsetNewConnectionFilterChain(FilterChain newConnectionFilterChain)
-
-
-
Constructor Detail
-
SSLConnectionContext
public SSLConnectionContext(Connection connection)
-
-
Method Detail
-
getSslEngine
public SSLEngine getSslEngine()
-
getConnection
public Connection getConnection()
-
attach
public void attach()
-
configure
public void configure(SSLEngine sslEngine)
-
isServerMode
public boolean isServerMode()
-
getAppBufferSize
public int getAppBufferSize()
-
getNetBufferSize
public int getNetBufferSize()
-
getNewConnectionFilterChain
public FilterChain getNewConnectionFilterChain()
-
setNewConnectionFilterChain
public void setNewConnectionFilterChain(FilterChain newConnectionFilterChain)
-
-