package gov.nist.registry.ws.serviceclasses; import gov.nist.registry.common2.exception.XdsWSException; public class AsyncRepositoryB extends RepositoryB { protected void validateWS() throws XdsWSException { checkSOAP12(); if (!isAsync()) throw new XdsWSException("Asynchronous web service request required on this endpoint" + " - replyTo is " + getMessageContext().getReplyTo().getAddress()); } protected String getPnRTransactionName() { return "PnR.b ASync"; } protected String getRetTransactionName() { return "RET.b ASync"; } }