Uses of Interface
org.eclipse.jetty.alpn.ALPN.Provider
-
-
Uses of ALPN.Provider in org.eclipse.jetty.alpn
Subinterfaces of ALPN.Provider in org.eclipse.jetty.alpn Modifier and Type Interface Description static interfaceALPN.ClientProviderThe client-side provider interface that applications must implement to interact with the negotiation of the protocol.static interfaceALPN.ServerProviderThe server-side provider interface that applications must implement to interact with the negotiation of the protocol.Fields in org.eclipse.jetty.alpn with type parameters of type ALPN.Provider Modifier and Type Field Description private static java.util.Map<java.lang.Object,ALPN.Provider>ALPN. objectsMethods in org.eclipse.jetty.alpn that return ALPN.Provider Modifier and Type Method Description static ALPN.ProviderALPN. get(javax.net.ssl.SSLEngine engine)static ALPN.ProviderALPN. get(javax.net.ssl.SSLSocket socket)static ALPN.ProviderALPN. remove(javax.net.ssl.SSLEngine engine)Unregisters the given SSLEngine.static ALPN.ProviderALPN. remove(javax.net.ssl.SSLSocket socket)Unregisters the given SSLSocket.Methods in org.eclipse.jetty.alpn with parameters of type ALPN.Provider Modifier and Type Method Description static voidALPN. put(javax.net.ssl.SSLEngine engine, ALPN.Provider provider)Registers a SSLEngine with a provider.static voidALPN. put(javax.net.ssl.SSLSocket socket, ALPN.Provider provider)Registers a SSLSocket with a provider.
-