Uses of Class
org.jboss.netty.handler.ssl.SslContext
Packages that use SslContext
Package
Description
This package contains an example web socket web server.
-
Uses of SslContext in org.jboss.netty.example.factorial
Fields in org.jboss.netty.example.factorial declared as SslContextModifier and TypeFieldDescriptionprivate final SslContext
FactorialClientPipelineFactory.sslCtx
private final SslContext
FactorialServerPipelineFactory.sslCtx
Constructors in org.jboss.netty.example.factorial with parameters of type SslContextModifierConstructorDescription -
Uses of SslContext in org.jboss.netty.example.http.file
Fields in org.jboss.netty.example.http.file declared as SslContextModifier and TypeFieldDescriptionprivate final SslContext
HttpStaticFileServerPipelineFactory.sslCtx
Constructors in org.jboss.netty.example.http.file with parameters of type SslContext -
Uses of SslContext in org.jboss.netty.example.http.helloworld
Fields in org.jboss.netty.example.http.helloworld declared as SslContextModifier and TypeFieldDescriptionprivate final SslContext
HttpHelloWorldServerPipelineFactory.sslCtx
Constructors in org.jboss.netty.example.http.helloworld with parameters of type SslContext -
Uses of SslContext in org.jboss.netty.example.http.snoop
Fields in org.jboss.netty.example.http.snoop declared as SslContextModifier and TypeFieldDescriptionprivate final SslContext
HttpSnoopClientPipelineFactory.sslCtx
private final SslContext
HttpSnoopServerPipelineFactory.sslCtx
Constructors in org.jboss.netty.example.http.snoop with parameters of type SslContextModifierConstructorDescriptionHttpSnoopClientPipelineFactory
(SslContext sslCtx, String host, int port) -
Uses of SslContext in org.jboss.netty.example.http.upload
Fields in org.jboss.netty.example.http.upload declared as SslContextModifier and TypeFieldDescriptionprivate final SslContext
HttpUploadClientPipelineFactory.sslCtx
private final SslContext
HttpUploadServerPipelineFactory.sslCtx
Constructors in org.jboss.netty.example.http.upload with parameters of type SslContextModifierConstructorDescriptionHttpUploadClientPipelineFactory
(SslContext sslCtx, String host, int port) -
Uses of SslContext in org.jboss.netty.example.http.websocketx.server
Fields in org.jboss.netty.example.http.websocketx.server declared as SslContextConstructors in org.jboss.netty.example.http.websocketx.server with parameters of type SslContext -
Uses of SslContext in org.jboss.netty.example.localtime
Fields in org.jboss.netty.example.localtime declared as SslContextModifier and TypeFieldDescriptionprivate final SslContext
LocalTimeClientPipelineFactory.sslCtx
private final SslContext
LocalTimeServerPipelineFactory.sslCtx
Constructors in org.jboss.netty.example.localtime with parameters of type SslContextModifierConstructorDescription -
Uses of SslContext in org.jboss.netty.example.portunification
Fields in org.jboss.netty.example.portunification declared as SslContextConstructors in org.jboss.netty.example.portunification with parameters of type SslContextModifierConstructorDescriptionprivate
PortUnificationServerHandler
(SslContext sslCtx, boolean detectSsl, boolean detectGzip) -
Uses of SslContext in org.jboss.netty.example.securechat
Fields in org.jboss.netty.example.securechat declared as SslContextModifier and TypeFieldDescriptionprivate final SslContext
SecureChatClientPipelineFactory.sslCtx
private final SslContext
SecureChatServerPipelineFactory.sslCtx
Constructors in org.jboss.netty.example.securechat with parameters of type SslContextModifierConstructorDescription -
Uses of SslContext in org.jboss.netty.example.telnet
Fields in org.jboss.netty.example.telnet declared as SslContextModifier and TypeFieldDescriptionprivate final SslContext
TelnetClientPipelineFactory.sslCtx
private final SslContext
TelnetServerPipelineFactory.sslCtx
Constructors in org.jboss.netty.example.telnet with parameters of type SslContextModifierConstructorDescription -
Uses of SslContext in org.jboss.netty.handler.ssl
Subclasses of SslContext in org.jboss.netty.handler.sslModifier and TypeClassDescriptionfinal class
A client-sideSslContext
which uses JDK's SSL/TLS implementation.class
AnSslContext
which uses JDK's SSL/TLS implementation.final class
A server-sideSslContext
which uses JDK's SSL/TLS implementation.final class
A server-sideSslContext
which uses OpenSSL's SSL/TLS implementation.Methods in org.jboss.netty.handler.ssl that return SslContextModifier and TypeMethodDescriptionstatic SslContext
SslContext.newClientContext()
Creates a new client-sideSslContext
.static SslContext
SslContext.newClientContext
(File certChainFile) Creates a new client-sideSslContext
.static SslContext
SslContext.newClientContext
(File certChainFile, TrustManagerFactory trustManagerFactory) Creates a new client-sideSslContext
.static SslContext
SslContext.newClientContext
(TrustManagerFactory trustManagerFactory) Creates a new client-sideSslContext
.static SslContext
SslContext.newClientContext
(SslBufferPool bufPool, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout) Creates a new client-sideSslContext
.static 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
(File certChainFile, File keyFile) Creates a new server-sideSslContext
.static SslContext
SslContext.newServerContext
(File certChainFile, File keyFile, String keyPassword) Creates a new server-sideSslContext
.static SslContext
SslContext.newServerContext
(SslBufferPool bufPool, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout) Creates a new server-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
.