use of com.jboss.transaction.txinterop.webservices.bainterop.participant.FailedCompensateParticipant in project narayana by jbosstm.
the class BAParticipantProcessor method participantCompensationFail.
/**
* Execute the ParticipantCompensationFail
* @param map The current addressing context.
*
* @throws SoapFault11 for errors during processing
*/
public void participantCompensationFail(final CoordinationContextType coordinationContext, final MAP map) throws SoapFault11 {
try {
final FailedCompensateParticipant participant = new FailedCompensateParticipant();
final ParticipantCompletionParticipantEngine engine = BAInteropUtil.registerParticipantCompletion(coordinationContext, participant, new Uid().toString());
participant.setEngine(engine);
participant.initialiseTimeout();
} catch (final Throwable th) {
throw new SoapFault11(th);
}
}
Aggregations