use of com.jboss.transaction.wstf.webservices.sc007.participant.RollbackDurable2PCParticipant in project narayana by jbosstm.
the class ParticipantProcessor method phase2Rollback.
/**
* Execute the Phase2Rollback
* @param map The current addressing context.
* @throws SoapFault11 for errors during processing
*/
public void phase2Rollback(final CoordinationContextType coordinationContext, final MAP map) throws SoapFault11 {
try {
InteropUtil.registerVolatile2PC(coordinationContext, new CommitVolatile2PCParticipant(), new Uid().toString());
InteropUtil.registerDurable2PC(coordinationContext, new RollbackDurable2PCParticipant(), new Uid().toString());
} catch (final Throwable th) {
throw new SoapFault11(th);
}
}
Aggregations