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.ObjectFactory for creating server sockets that implement theEPPServerConinterface.
-
-
Constructor Summary
Constructors Constructor Description EPPSrvFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EPPServerCongetEPPServer()Creates a server socket implements theEPPServerConinterface based on the configuration.EPPServerCongetEPPServer(java.lang.String aServerSocketClass)Creates a server socket by name that implements theEPPServerConinterface.
-
-
-
Method Detail
-
getEPPServer
public EPPServerCon getEPPServer(java.lang.String aServerSocketClass) throws EPPConException
Creates a server socket by name that implements theEPPServerConinterface.- Parameters:
aServerSocketClass- Server socket by name that implements theEPPServerConinterface.- Returns:
- Server socket object that implements the
EPPServerConinterface. - Throws:
EPPConException- Error creating server socket
-
getEPPServer
public EPPServerCon getEPPServer() throws EPPConException
Creates a server socket implements theEPPServerConinterface based on the configuration.- Returns:
- Server socket implements the
EPPServerConinterface - Throws:
EPPConException- Error creating server socket
-
-