Package org.opentcs.access.rmi.factories
Schnittstelle SocketFactoryProvider
- Alle bekannten Implementierungsklassen:
NullSocketFactoryProvider
,SecureSocketFactoryProvider
public interface SocketFactoryProvider
A provider for instances of
RMIClientSocketFactory
and RMIServerSocketFactory
.
Generally one provider should provide compatible factories for clients and servers.-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungReturns aRMIClientSocketFactory
.Returns aRMIServerSocketFactory
.
-
Methodendetails
-
getClientSocketFactory
Returns aRMIClientSocketFactory
.- Gibt zurück:
- A
RMIClientSocketFactory
. May benull
to indicate that a default factory implementation is to be used.
-
getServerSocketFactory
Returns aRMIServerSocketFactory
.- Gibt zurück:
- A
RMIServerSocketFactory
. May benull
to indicate that a default factory implementation is to be used.
-