Package com.verisign.epp.serverstub
Class RegistryPollHandler
- java.lang.Object
-
- com.verisign.epp.serverstub.RegistryPollHandler
-
- All Implemented Interfaces:
EPPPollHandler
public class RegistryPollHandler extends java.lang.Object implements EPPPollHandler
-
-
Constructor Summary
Constructors Constructor Description RegistryPollHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getKind()
Gets the kind of poll messages it handles.EPPResponse
toResponse(EPPPollDataRecord aRecord)
Converts a poll queueEPPPollDataRecord
to anEPPResponse
.
-
-
-
Method Detail
-
getKind
public java.lang.String getKind()
Description copied from interface:EPPPollHandler
Gets the kind of poll messages it handles.- Specified by:
getKind
in interfaceEPPPollHandler
- Returns:
- The XML namespace represented for the poll handler.
-
toResponse
public EPPResponse toResponse(EPPPollDataRecord aRecord) throws EPPPollQueueException
Description copied from interface:EPPPollHandler
Converts a poll queueEPPPollDataRecord
to anEPPResponse
.- Specified by:
toResponse
in interfaceEPPPollHandler
- Parameters:
aRecord
- Poll queue record to convert to anEPPResponse
.- Returns:
- An
EPPResponse
that represents the poll queue record. - Throws:
EPPPollQueueException
- Error converting theEPPPollDataRecord
to anEPPResponse
.
-
-