Searched refs:onePhase (Results 1 - 10 of 10) sorted by relevance
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/ |
H A D | XATerminator.java | 61 * @param onePhase If true, the resource manager should use a one-phase 69 * parameter onePhase is set to true, the resource manager may throw 73 void commit(Xid xid, boolean onePhase) throws XAException; argument
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/ |
H A D | XATerminatorProxy.java | 80 public void commit(Xid xid, boolean onePhase) throws XAException { argument 81 xat.commit(xid, onePhase);
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/ |
H A D | XAResourceWrapper.java | 72 public void commit(Xid xid, boolean onePhase) throws XAException { argument 73 print("XAResource.commit: " + xidToString(xid) + "," + onePhase); 74 res.commit(xid, onePhase);
|
H A D | ConnectorXAResource.java | 120 public void commit(Xid xid, boolean onePhase) throws XAException { argument
|
/glassfish-3.1.2/transaction/javax.transaction/src/main/java/javax/transaction/xa/ |
H A D | XAResource.java | 81 * @param onePhase If true, the resource manager should use a one-phase 89 * parameter onePhase is set to true, the resource manager may throw 94 void commit(Xid xid, boolean onePhase) throws XAException; argument
|
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/ |
H A D | XAResourceImpl.java | 73 * @param onePhase If true, the resource manager should use a one-phase commit 76 public void commit(Xid xid, boolean onePhase) throws XAException { argument 84 xar.commit(xid, onePhase);
|
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/ |
H A D | XATerminatorImpl.java | 80 * @param onePhase If true, the resource manager should use a one-phase 88 * parameter onePhase is set to true, the resource manager may throw 92 public void commit(Xid xid, boolean onePhase) throws XAException { argument 98 if (onePhase) { 136 if (onePhase) { 164 if (onePhase) {
|
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/impl/ |
H A D | TransactionImpl.java | 164 private boolean onePhase; field in class:TransactionImpl 272 this.onePhase = false; 852 this.onePhase = true; 858 if (!this.onePhase) { 916 // Commit resources. If onePhase then we can expect a rollback 1217 // .onePhase -- remember if was committed 1-phase 1293 if ((info & TRACE_ONE_PHASE) != 0 && this.onePhase) 1294 logMessage.append(", onePhase = true"); // NOI18N 1562 if (this.onePhase) 1563 s = s + " onePhase [all...] |
/glassfish-3.1.2/transaction/jta/src/test/java/com/sun/enterprise/transaction/ |
H A D | AppTest.java | 854 public void commit(Xid xid, boolean onePhase) throws XAException{} argument
|
/glassfish-3.1.2/transaction/jts/src/test/java/com/sun/enterprise/transaction/jts/ |
H A D | AppTest.java | 1542 public void commit(Xid xid, boolean onePhase) throws XAException{ argument 1547 System.out.println("throwing XAException." + commitErrorCode + " during commit of " + (onePhase? "1" : "2") + "pc");
|
Completed in 1648 milliseconds