Package com.verisign.epp.framework
Interface EPPPollHandler
-
- All Known Implementing Classes:
ContactPollHandler,DomainPollHandler,LaunchPollHandler,LowBalancePollHandler,MaintenancePollHandler,NameVerificationPollHandler,NSPollHandler,OrgPollHandler,RegistryPollHandler,RgpDomainPollHandler
public interface EPPPollHandlerRepresents an EPPPollHandler interface that is implemented by any class that needs to manipulate their own poll handler.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetKind()Gets the kind of poll messages it handles.EPPResponsetoResponse(EPPPollDataRecord aRecord)Converts a poll queueEPPPollDataRecordto anEPPResponse.
-
-
-
Method Detail
-
getKind
java.lang.String getKind()
Gets the kind of poll messages it handles.- Returns:
- The XML namespace represented for the poll handler.
-
toResponse
EPPResponse toResponse(EPPPollDataRecord aRecord) throws EPPPollQueueException
Converts a poll queueEPPPollDataRecordto anEPPResponse.- Parameters:
aRecord- Poll queue record to convert to anEPPResponse.- Returns:
- An
EPPResponsethat represents the poll queue record. - Throws:
EPPPollQueueException- Error converting theEPPPollDataRecordto anEPPResponse.
-
-