Package com.verisign.epp.transport
Class EPPSrvFactory
- java.lang.Object
-
- com.verisign.epp.transport.EPPSrvFactory
-
- Direct Known Subclasses:
EPPSrvFactorySingle
public abstract class EPPSrvFactory extends java.lang.Object
Factory for creating server sockets that implement theEPPServerCon
interface.
-
-
Constructor Summary
Constructors Constructor Description EPPSrvFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EPPServerCon
getEPPServer()
Creates a server socket implements theEPPServerCon
interface based on the configuration.EPPServerCon
getEPPServer(java.lang.String aServerSocketClass)
Creates a server socket by name that implements theEPPServerCon
interface.
-
-
-
Method Detail
-
getEPPServer
public EPPServerCon getEPPServer(java.lang.String aServerSocketClass) throws EPPConException
Creates a server socket by name that implements theEPPServerCon
interface.- Parameters:
aServerSocketClass
- Server socket by name that implements theEPPServerCon
interface.- Returns:
- Server socket object that implements the
EPPServerCon
interface. - Throws:
EPPConException
- Error creating server socket
-
getEPPServer
public EPPServerCon getEPPServer() throws EPPConException
Creates a server socket implements theEPPServerCon
interface based on the configuration.- Returns:
- Server socket implements the
EPPServerCon
interface - Throws:
EPPConException
- Error creating server socket
-
-