コード例 #1
0
  @Override
  public void addToCommand(Command command) {
    final XMLWriter xmlWriter = command.getXmlWriter();
    final Element extensionElement = command.getExtensionElement();
    final Element infoElement =
        xmlWriter.appendChild(extensionElement, "info", ExtendedObjectType.BLOCK.getURI());

    xmlWriter.appendChild(infoElement, "id", ExtendedObjectType.BLOCK.getURI()).setTextContent(id);
  }
コード例 #2
0
/**
 * Extension for the EPP Domain Create response, representing the Block Create Block extension.
 *
 * <p>Use this to access create data for a domain block as provided in an EPP Domain Create response
 * compliant with RFC5730 and RFC5731. Such a service element is sent by a compliant EPP server in
 * response to a valid Domain Create command with the Block extension.
 *
 * <p>For flexibility, this implementation extracts the data from the response using XPath queries,
 * the expressions for which are defined statically.
 *
 * @see com.ausregistry.jtoolkit2.se.DomainCreateCommand
 * @see com.ausregistry.jtoolkit2.se.block.DomainCreateBlockCommandExtension
 * @see <a href="http://ausregistry.github.io/doc/block-1.0/block-1.0.html">Block Extension Mapping
 *     for the Extensible Provisioning Protocol (EPP)</a>
 */
public class DomainCreateBlockResponseExtension extends ResponseExtension {
  private static final long serialVersionUID = -4403413192868009866L;

  private static final String BLO_PREFIX = ExtendedObjectType.BLOCK.getName();
  private static final String BLO_XPATH_PREFIX =
      ResponseExtension.EXTENSION_EXPR + "/" + BLO_PREFIX + ":RESPONSE_TYPE/" + BLO_PREFIX;
  private static final String ID = BLO_XPATH_PREFIX + ":id/text()";
  private static final String RESPONSE_TYPE = ResponseExtension.CREATE;

  private String id;
  private boolean initialised;

  @Override
  public void fromXML(XMLDocument xmlDoc) throws XPathExpressionException {
    id = xmlDoc.getNodeValue(replaceResponseType(ID, RESPONSE_TYPE));
    initialised = id != null;
  }

  @Override
  public boolean isInitialised() {
    return initialised;
  }

  public String getId() {
    return id;
  }
}