Class ConscryptClientALPNProcessor
- java.lang.Object
-
- org.eclipse.jetty.alpn.conscrypt.client.ConscryptClientALPNProcessor
-
- All Implemented Interfaces:
ALPNProcessor
,ALPNProcessor.Client
public class ConscryptClientALPNProcessor extends java.lang.Object implements ALPNProcessor.Client
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.ssl.ALPNProcessor
ALPNProcessor.Client, ALPNProcessor.Server
-
-
Constructor Summary
Constructors Constructor Description ConscryptClientALPNProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
appliesTo(javax.net.ssl.SSLEngine sslEngine)
Tests if this processor can be applied to the given SSLEngine.void
configure(javax.net.ssl.SSLEngine sslEngine, Connection connection)
Configures the given SSLEngine and the given Connection for ALPN.void
init()
Initializes this ALPNProcessor
-
-
-
Method Detail
-
init
public void init()
Description copied from interface:ALPNProcessor
Initializes this ALPNProcessor- Specified by:
init
in interfaceALPNProcessor
-
appliesTo
public boolean appliesTo(javax.net.ssl.SSLEngine sslEngine)
Description copied from interface:ALPNProcessor
Tests if this processor can be applied to the given SSLEngine.- Specified by:
appliesTo
in interfaceALPNProcessor
- Parameters:
sslEngine
- the SSLEngine to check- Returns:
- true if the processor can be applied to the given SSLEngine
-
configure
public void configure(javax.net.ssl.SSLEngine sslEngine, Connection connection)
Description copied from interface:ALPNProcessor
Configures the given SSLEngine and the given Connection for ALPN.- Specified by:
configure
in interfaceALPNProcessor
- Parameters:
sslEngine
- the SSLEngine to configureconnection
- the Connection to configure
-
-