Uses of Enum
org.jboss.netty.handler.ssl.SslProvider
Packages that use SslProvider
-
Uses of SslProvider in org.jboss.netty.handler.ssl
Methods in org.jboss.netty.handler.ssl that return SslProviderModifier and TypeMethodDescriptionstatic SslProvider
SslContext.defaultClientProvider()
Returns the default client-side implementation provider currently in use.static SslProvider
SslContext.defaultServerProvider()
Returns the default server-side implementation provider currently in use.static SslProvider
Returns the enum constant of this type with the specified name.static SslProvider[]
SslProvider.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.netty.handler.ssl with parameters of type SslProviderModifier and TypeMethodDescriptionstatic SslContext
SslContext.newClientContext
(SslProvider provider) Creates a new client-sideSslContext
.static SslContext
SslContext.newClientContext
(SslProvider provider, File certChainFile) Creates a new client-sideSslContext
.static SslContext
SslContext.newClientContext
(SslProvider provider, File certChainFile, TrustManagerFactory trustManagerFactory) Creates a new client-sideSslContext
.static SslContext
SslContext.newClientContext
(SslProvider provider, TrustManagerFactory trustManagerFactory) Creates a new client-sideSslContext
.static SslContext
SslContext.newClientContext
(SslProvider provider, SslBufferPool bufPool, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout) Creates a new client-sideSslContext
.static SslContext
SslContext.newServerContext
(SslProvider provider, File certChainFile, File keyFile) Creates a new server-sideSslContext
.static SslContext
SslContext.newServerContext
(SslProvider provider, File certChainFile, File keyFile, String keyPassword) Creates a new server-sideSslContext
.static SslContext
SslContext.newServerContext
(SslProvider provider, SslBufferPool bufPool, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout) Creates a new server-sideSslContext
.