- java.lang.Object
-
- javax.rmi.ssl.SslRMIClientSocketFactory
-
- All Implemented Interfaces:
- Serializable, RMIClientSocketFactory
public class SslRMIClientSocketFactory extends Object implements RMIClientSocketFactory, Serializable
An
SslRMIClientSocketFactory
instance is used by the RMI runtime in order to obtain client sockets for RMI calls via SSL.This class implements
RMIClientSocketFactory
over the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocols.This class creates SSL sockets using the default
SSLSocketFactory
(seeSSLSocketFactory.getDefault()
). All instances of this class are functionally equivalent. In particular, they all share the same truststore, and the same keystore when client authentication is required by the server. This behavior can be modified in subclasses by overriding thecreateSocket(String,int)
method; in that case,equals
andhashCode
may also need to be overridden.If the system property
javax.rmi.ssl.client.enabledCipherSuites
is specified, thecreateSocket(String,int)
method will callSSLSocket.setEnabledCipherSuites(String[])
before returning the socket. The value of this system property is a string that is a comma-separated list of SSL/TLS cipher suites to enable.If the system property
javax.rmi.ssl.client.enabledProtocols
is specified, thecreateSocket(String,int)
method will callSSLSocket.setEnabledProtocols(String[])
before returning the socket. The value of this system property is a string that is a comma-separated list of SSL/TLS protocol versions to enable.- Since:
- 1.5
- See Also:
SSLSocketFactory
,SslRMIServerSocketFactory
, Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description SslRMIClientSocketFactory()
Creates a newSslRMIClientSocketFactory
.
-
-
-
Constructor Detail
-
SslRMIClientSocketFactory
public SslRMIClientSocketFactory()
Creates a new
SslRMIClientSocketFactory
.
-
-
Method Detail
-
createSocket
public Socket createSocket(String host, int port) throws IOException
Creates an SSL socket.
If the system property
javax.rmi.ssl.client.enabledCipherSuites
is specified, this method will callSSLSocket.setEnabledCipherSuites(String[])
before returning the socket. The value of this system property is a string that is a comma-separated list of SSL/TLS cipher suites to enable.If the system property
javax.rmi.ssl.client.enabledProtocols
is specified, this method will callSSLSocket.setEnabledProtocols(String[])
before returning the socket. The value of this system property is a string that is a comma-separated list of SSL/TLS protocol versions to enable.- Specified by:
createSocket
in interfaceRMIClientSocketFactory
- Parameters:
host
- the host nameport
- the port number- Returns:
- a socket connected to the specified host and port.
- Throws:
IOException
- if an I/O error occurs during socket creation
-
equals
public boolean equals(Object obj)
Indicates whether some other object is "equal to" this one.
Because all instances of this class are functionally equivalent (they all use the default
SSLSocketFactory
), this method simply returnsthis.getClass().equals(obj.getClass())
.A subclass should override this method (as well as
hashCode()
) if its instances are not all functionally equivalent.- Overrides:
equals
in classObject
- Parameters:
obj
- the reference object with which to compare.- Returns:
true
if this object is the same as the obj argument;false
otherwise.- See Also:
Object.hashCode()
,HashMap
-
hashCode
public int hashCode()
Returns a hash code value for this
SslRMIClientSocketFactory
.- Overrides:
hashCode
in classObject
- Returns:
- a hash code value for this
SslRMIClientSocketFactory
. - See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/rmi/ssl/SslRMIClientSocketFactory.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.