private OutboundOrchestratable createOutboundOrchestratable(String id) {
    RegistryResponseType regResponse = new RegistryResponseType();
    regResponse.setStatus(id);

    XDRAcknowledgementType response = new XDRAcknowledgementType();
    response.setMessage(regResponse);

    OutboundDocSubmissionDeferredResponseOrchestratable orchestratable =
        new OutboundDocSubmissionDeferredResponseOrchestratable(null);
    orchestratable.setResponse(response);

    return orchestratable;
  }