Java javax.rmi.ssl SslRMIServerSocketFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.rmi.ssl SslRMIServerSocketFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.rmi.ssl SslRMIServerSocketFactory.

The text is from its open source code.

Constructor

SslRMIServerSocketFactory()

Creates a new SslRMIServerSocketFactory with the default SSL socket configuration.

SSL connections accepted by server sockets created by this factory have the default cipher suites and protocol versions enabled and do not require client authentication.

SslRMIServerSocketFactory(String[] enabledCipherSuites, String[] enabledProtocols, boolean needClientAuth)

Creates a new SslRMIServerSocketFactory with the specified SSL socket configuration.

Method

String[]getEnabledCipherSuites()

Returns the names of the cipher suites enabled on SSL connections accepted by server sockets created by this factory, or null if this factory uses the cipher suites that are enabled by default.

String[]getEnabledProtocols()

Returns the names of the protocol versions enabled on SSL connections accepted by server sockets created by this factory, or null if this factory uses the protocol versions that are enabled by default.

booleangetNeedClientAuth()

Returns true if client authentication is required on SSL connections accepted by server sockets created by this factory.