Package com.verisign.epp.framework
Interface EPPPollHandler
- All Known Implementing Classes:
BalancePollHandler,ContactPollHandler,DomainPollHandler,LaunchPollHandler,LowBalancePollHandler,MaintenancePollHandler,NameVerificationPollHandler,NSPollHandler,OrgPollHandler,RegistryPollHandler,RgpDomainPollHandler
public interface EPPPollHandler
Represents an EPPPollHandler interface that is implemented by any class that
needs to manipulate their own poll handler.
-
Method Summary
Modifier and TypeMethodDescriptiongetKind()Gets the kind of poll messages it handles.toResponse(EPPPollDataRecord aRecord) Converts a poll queueEPPPollDataRecordto anEPPResponse.
-
Method Details
-
getKind
String getKind()Gets the kind of poll messages it handles.- Returns:
- The XML namespace represented for the poll handler.
-
toResponse
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.
-