Uses of Class
net.jini.jeri.ssl.SslServerEndpoint

Packages that use SslServerEndpoint
net.jini.jeri.ssl Provides implementations of Endpoint and ServerEndpoint that use TLS/SSL and HTTPS (HTTP over TLS/SSL) to support invocation constraints. 
 

Uses of SslServerEndpoint in net.jini.jeri.ssl
 

Methods in net.jini.jeri.ssl that return SslServerEndpoint
static SslServerEndpoint SslServerEndpoint.getInstance(int port)
          Returns a TLS/SSL server endpoint for the specified port.
static SslServerEndpoint SslServerEndpoint.getInstance(String serverHost, int port)
          Returns a TLS/SSL server endpoint for the specified server host and port.
static SslServerEndpoint SslServerEndpoint.getInstance(String serverHost, int port, SocketFactory socketFactory, ServerSocketFactory serverSocketFactory)
          Returns a TLS/SSL server endpoint for the specified server host, port, and socket factories.
static SslServerEndpoint SslServerEndpoint.getInstance(Subject serverSubject, X500Principal[] serverPrincipals, String serverHost, int port)
          Returns a TLS/SSL server endpoint for the specified server subject, server principals, server host, and port.
static SslServerEndpoint SslServerEndpoint.getInstance(Subject serverSubject, X500Principal[] serverPrincipals, String serverHost, int port, SocketFactory socketFactory, ServerSocketFactory serverSocketFactory)
          Returns a TLS/SSL server endpoint for the specified server subject, server principals, server host, port, and socket factories.