Package io.undertow.server
Class ConnectionSSLSessionInfo
- java.lang.Object
-
- io.undertow.server.ConnectionSSLSessionInfo
-
- All Implemented Interfaces:
SSLSessionInfo
public class ConnectionSSLSessionInfo extends java.lang.Object implements SSLSessionInfo
SSL session information that is read directly from the SSL session of the XNIO connection- Author:
- Stuart Douglas
-
-
Constructor Summary
Constructors Constructor Description ConnectionSSLSessionInfo(org.xnio.channels.SslChannel channel, HttpServerConnection serverConnection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCipherSuite()
javax.security.cert.X509Certificate[]
getPeerCertificateChain()
java.security.cert.Certificate[]
getPeerCertificates()
Gets the peer certificates.byte[]
getSessionId()
javax.net.ssl.SSLSession
getSSLSession()
void
renegotiate(HttpServerExchange exchange, org.xnio.SslClientAuthMode sslClientAuthMode)
Renegotiate in a blocking manner.void
renegotiateBufferRequest(HttpServerExchange exchange, org.xnio.SslClientAuthMode newAuthMode)
void
renegotiateNoRequest(HttpServerExchange exchange, org.xnio.SslClientAuthMode newAuthMode)
-
-
-
Constructor Detail
-
ConnectionSSLSessionInfo
public ConnectionSSLSessionInfo(org.xnio.channels.SslChannel channel, HttpServerConnection serverConnection)
-
-
Method Detail
-
getSessionId
public byte[] getSessionId()
- Specified by:
getSessionId
in interfaceSSLSessionInfo
- Returns:
- The SSL session ID, or null if this could not be determined.
-
getCipherSuite
public java.lang.String getCipherSuite()
- Specified by:
getCipherSuite
in interfaceSSLSessionInfo
-
getPeerCertificates
public java.security.cert.Certificate[] getPeerCertificates() throws javax.net.ssl.SSLPeerUnverifiedException, RenegotiationRequiredException
Description copied from interface:SSLSessionInfo
Gets the peer certificates. This may force SSL renegotiation.- Specified by:
getPeerCertificates
in interfaceSSLSessionInfo
- Returns:
- The peer certificates
- Throws:
javax.net.ssl.SSLPeerUnverifiedException
RenegotiationRequiredException
- If the session
-
getPeerCertificateChain
public javax.security.cert.X509Certificate[] getPeerCertificateChain() throws javax.net.ssl.SSLPeerUnverifiedException, RenegotiationRequiredException
- Specified by:
getPeerCertificateChain
in interfaceSSLSessionInfo
- Throws:
javax.net.ssl.SSLPeerUnverifiedException
RenegotiationRequiredException
-
renegotiate
public void renegotiate(HttpServerExchange exchange, org.xnio.SslClientAuthMode sslClientAuthMode) throws java.io.IOException
Description copied from interface:SSLSessionInfo
Renegotiate in a blocking manner. This will set the client aut TODO: we also need a non-blocking version- Specified by:
renegotiate
in interfaceSSLSessionInfo
- Parameters:
exchange
- The exchangesslClientAuthMode
- The client cert mode to use when renegotiating- Throws:
java.io.IOException
-
getSSLSession
public javax.net.ssl.SSLSession getSSLSession()
- Specified by:
getSSLSession
in interfaceSSLSessionInfo
- Returns:
- The SSL session, or null if it is not applicable
-
renegotiateBufferRequest
public void renegotiateBufferRequest(HttpServerExchange exchange, org.xnio.SslClientAuthMode newAuthMode) throws java.io.IOException
- Throws:
java.io.IOException
-
renegotiateNoRequest
public void renegotiateNoRequest(HttpServerExchange exchange, org.xnio.SslClientAuthMode newAuthMode) throws java.io.IOException
- Throws:
java.io.IOException
-
-