use of org.jboss.ws.api.addressing.MAPEndpoint 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);
}
use of org.jboss.ws.api.addressing.MAPEndpoint in project narayana by jbosstm.
the class TerminationParticipantClient method sendCompleted.
/**
* Send a completed 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 sendCompleted(final W3CEndpointReference participant, final MAP map, final InstanceIdentifier identifier) throws SoapFault, IOException {
MAPEndpoint coordinator = getCoordinator(participant);
AddressingHelper.installFromFaultTo(map, coordinator, identifier);
final TerminationParticipantPortType port = getPort(participant, map, identifier, completedAction);
final NotificationType completed = new NotificationType();
port.completedOperation(completed);
}
use of org.jboss.ws.api.addressing.MAPEndpoint in project narayana by jbosstm.
the class TerminationParticipantClient method sendFaulted.
/**
* Send a faulted 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 sendFaulted(final W3CEndpointReference participant, final MAP map, final InstanceIdentifier identifier) throws SoapFault, IOException {
MAPEndpoint coordinator = getCoordinator(participant);
AddressingHelper.installFromFaultTo(map, coordinator, identifier);
final TerminationParticipantPortType port = getPort(participant, map, identifier, faultedAction);
final NotificationType faulted = new NotificationType();
port.faultedOperation(faulted);
}
use of org.jboss.ws.api.addressing.MAPEndpoint in project narayana by jbosstm.
the class TerminationParticipantClient method sendCancelled.
/**
* Send a cancelled 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 sendCancelled(final W3CEndpointReference participant, final MAP map, final InstanceIdentifier identifier) throws SoapFault, IOException {
MAPEndpoint coordinator = getCoordinator(participant);
AddressingHelper.installFromFaultTo(map, coordinator, identifier);
final TerminationParticipantPortType port = getPort(participant, map, identifier, cancelledAction);
final NotificationType cancelled = new NotificationType();
port.cancelledOperation(cancelled);
}
use of org.jboss.ws.api.addressing.MAPEndpoint in project narayana by jbosstm.
the class CoordinatorClient method sendPrepared.
/**
* Send a prepared 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 SOAP errors.
* @throws java.io.IOException for any transport errors.
*/
public void sendPrepared(final W3CEndpointReference endpoint, final MAP map, final InstanceIdentifier identifier) throws SoapFault, IOException {
MAPEndpoint participant = getParticipant(endpoint, map);
AddressingHelper.installFromFaultTo(map, participant, identifier);
CoordinatorPortType port = getPort(endpoint, map, preparedAction);
Notification prepared = new Notification();
port.preparedOperation(prepared);
}
Aggregations