Uses of Interface
org.wildfly.security.ssl.SSLContextSelector
-
Packages that use SSLContextSelector Package Description org.wildfly.security.ssl -
-
Uses of SSLContextSelector in org.wildfly.security.ssl
Fields in org.wildfly.security.ssl declared as SSLContextSelector Modifier and Type Field Description static SSLContextSelector
SSLContextSelector. NULL_SELECTOR
A selector which always returnsnull
(no match).private SSLContextSelector
SelectingServerSSLEngine.InitialState. selector
Methods in org.wildfly.security.ssl that return SSLContextSelector Modifier and Type Method Description static SSLContextSelector
SSLContextSelector. aggregate(SSLContextSelector... selectors)
Create an aggregate selector which executes each given selector in order until a match is found.static SSLContextSelector
SSLContextSelector. aggregate(SSLContextSelector selector1, SSLContextSelector selector2)
Create an aggregate selector which executes each given selector in order until a match is found.static SSLContextSelector
SSLContextSelector. constantSelector(SSLContext context)
Create a selector which always returns the same context.static SSLContextSelector
SSLContextSelector. sniMatcherSelector(SNIMatcher matcher, SSLContext context)
Create a selector which returns the given SSL context if the given SNI matcher matches.Methods in org.wildfly.security.ssl with parameters of type SSLContextSelector Modifier and Type Method Description static SSLContextSelector
SSLContextSelector. aggregate(SSLContextSelector... selectors)
Create an aggregate selector which executes each given selector in order until a match is found.static SSLContextSelector
SSLContextSelector. aggregate(SSLContextSelector selector1, SSLContextSelector selector2)
Create an aggregate selector which executes each given selector in order until a match is found.static SecurityFactory<SSLEngine>
SSLUtils. createDispatchingSSLEngineFactory(SSLContextSelector selector)
Get a factory which produces SSL engines which dispatch to the appropriate SSL context based on the information in the SSL greeting.static SSLEngine
SSLUtils. createSelectingSSLEngine(SSLContextSelector selector)
Get a server SSL engine which dispatches to the appropriate SSL context based on the information in the SSL greeting.static SSLEngine
SSLUtils. createSelectingSSLEngine(SSLContextSelector selector, String host, int port)
Get a server SSL engine which dispatches to the appropriate SSL context based on the information in the SSL greeting.Constructors in org.wildfly.security.ssl with parameters of type SSLContextSelector Constructor Description InitialState(SSLContextSelector selector, Function<SSLContext,SSLEngine> engineFunction)
SelectingServerSSLEngine(SSLContextSelector selector)
SelectingServerSSLEngine(SSLContextSelector selector, String host, int port)
-