Methods Summary |
---|
public void | commitOperation(Notification parameters)
throw new UnsupportedOperationException("Not yet implemented");
/*
ATCompletion completeCoord = getATCompletion();
if (completeCoord != null ) {
completeCoord.commit();
} else {
// Check if wsa:replyTo used when completeCoord not found.
// TODO: send committed to wsa:replyTo
}
*/
|
private com.sun.xml.ws.tx.at.ATCompletion | getATCompletion()
/*
* TODO: fix this to get inbound 2004 WS-A Reference Parameters from message context property (added by
* TxRefParamHandler.
AddressingProperties ap = getWSAProperties();
assert(ap != null);
// TODO: get activity Id and registrant id from wsContext.
// lookup in ATCoordinator.getRegistrant
return null;
*/
throw new UnsupportedOperationException("not implemented yet");
|
public void | rollbackOperation(Notification parameters)
throw new UnsupportedOperationException("Not yet implemented");
/*
ATCompletion completeCoord = getATCompletion();
if (completeCoord != null ) {
completeCoord.rollback();
} else {
// Check if wsa:replyTo used when completeCoord not found.
// TODO: send committed to wsa:replyTo
}
*/
|