use of com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType in project narayana by jbosstm.
the class TerminationCoordinatorClient method sendComplete.
/**
* Send a complete request.
* @param map addressing context initialised with to and message ID.
* @param identifier The identifier of the initiator.
* @throws com.arjuna.webservices.SoapFault For any errors.
* @throws java.io.IOException for any transport errors.
*/
public void sendComplete(final W3CEndpointReference coordinator, final MAP map, final InstanceIdentifier identifier) throws SoapFault, IOException {
MAPEndpoint participant = getParticipant(coordinator);
AddressingHelper.installFromFaultTo(map, participant, identifier);
final TerminationCoordinatorPortType port = getPort(coordinator, map, identifier, completeAction);
final NotificationType complete = new NotificationType();
port.completeOperation(complete);
}
use of com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType in project narayana by jbosstm.
the class TerminationCoordinatorClient method sendClose.
/**
* Send a close request.
* @param map addressing context initialised with to and message ID.
* @param identifier The identifier of the initiator.
* @throws com.arjuna.webservices.SoapFault For any errors.
* @throws java.io.IOException for any transport errors.
*/
public void sendClose(final W3CEndpointReference coordinator, final MAP map, final InstanceIdentifier identifier) throws SoapFault, IOException {
MAPEndpoint participant = getParticipant(coordinator);
AddressingHelper.installFromFaultTo(map, participant, identifier);
final TerminationCoordinatorPortType port = getPort(coordinator, map, identifier, closeAction);
final NotificationType close = new NotificationType();
port.closeOperation(close);
}
use of com.arjuna.schemas.ws._2005._10.wsarjtx.TerminationCoordinatorPortType in project narayana by jbosstm.
the class TerminationCoordinatorClient method sendCancel.
/**
* Send a cancel request.
* @param map addressing context initialised with to and message ID.
* @param identifier The identifier of the initiator.
* @throws com.arjuna.webservices.SoapFault For any errors.
* @throws java.io.IOException for any transport errors.
*/
public void sendCancel(final W3CEndpointReference coordinator, final MAP map, final InstanceIdentifier identifier) throws SoapFault, IOException {
MAPEndpoint participant = getParticipant(coordinator);
AddressingHelper.installFromFaultTo(map, participant, identifier);
final TerminationCoordinatorPortType port = getPort(coordinator, map, identifier, cancelAction);
final NotificationType cancel = new NotificationType();
port.cancelOperation(cancel);
}
Aggregations