Searched refs:commit (Results 1 - 25 of 93) sorted by relevance

1234

/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/
H A DLocalTransaction.java90 * @throws ResourceException Failed to commit a local
100 * <LI> Invalid transaction context; commit
106 void commit() throws ResourceException; method in interface:LocalTransaction
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/
H A DLocalTransaction.java92 void commit() throws ResourceException; method in interface:LocalTransaction
H A DXATerminator.java62 * commit protocol to commit the work done on behalf of xid.
68 * <P>If the resource manager did not commit the transaction and the
73 void commit(Xid xid, boolean onePhase) throws XAException; method in interface:XATerminator
88 * Ask the resource manager to prepare for a transaction commit
/glassfish-3.1.2/ha/ha-file-store/src/main/java/org/glassfish/ha/store/adapter/file/
H A DFileStoreTransaction.java53 public void commit() throws BackingStoreException { method in class:FileStoreTransaction
/glassfish-3.1.2/transaction/javax.transaction/src/main/java/javax/transaction/
H A DUserTransaction.java82 * not allowed to commit the transaction.
90 void commit() throws RollbackException, method in interface:UserTransaction
H A DTransaction.java73 * not allowed to commit the transaction.
81 public void commit() throws RollbackException, method in interface:Transaction
150 * commit process. After the transaction is completed, the transaction
H A DTransactionManager.java82 * not allowed to commit the transaction.
91 public void commit() throws RollbackException, method in interface:TransactionManager
/glassfish-3.1.2/persistence/cmp/internal-api/src/main/java/com/sun/jdo/api/persistence/support/
H A DTransaction.java77 void commit(); method in interface:Transaction
88 /** If true, at commit instances retain their values and the instances
95 /** If true, at commit time instances retain their field values.
111 /** Optimistic transactions do not hold data store locks until commit time.
116 /** Optimistic transactions do not hold data store locks until commit time.
138 * commit operation.
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/
H A DXATerminatorProxy.java80 public void commit(Xid xid, boolean onePhase) throws XAException { method in class:XATerminatorProxy
81 xat.commit(xid, onePhase);
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/enterprise/transaction/jts/recovery/
H A DSybaseXAResource.java88 public void commit(Xid xid, boolean flag) throws XAException{ method in class:SybaseXAResource
90 m_xacon.getXAResource().commit(xid, flag);
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jta/
H A DUserTransactionImpl.java106 * not allowed to commit the transaction.
114 public void commit() throws RollbackException, method in class:UserTransactionImpl
118 this.transactionManager.commit();
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/
H A DLocalTransactionImpl.java104 public void commit() throws ResourceException { method in class:LocalTransactionImpl
106 mc.getActualConnection().commit();
110 _logger.finest("Exception during commit() : " + sqle);
H A DXAResourceImpl.java73 * @param onePhase If true, the resource manager should use a one-phase commit
74 * protocol to commit the work done on behalf of xid.
76 public void commit(Xid xid, boolean onePhase) throws XAException { method in class:XAResourceImpl
84 xar.commit(xid, onePhase);
140 * Ask the resource manager to prepare for a transaction commit
153 //When the VOTE from resource manager is XA_RDONLY , we will not get commit() call from TxManager.
/glassfish-3.1.2/persistence/cmp/generator-database/src/main/java/com/sun/jdo/spi/persistence/generator/database/
H A DDatabaseOutputStream.java94 conn_.commit();
112 conn_.commit();
/glassfish-3.1.2/transaction/javax.transaction/src/main/java/javax/transaction/xa/
H A DXAResource.java69 * <p>At transaction commit time, the resource managers are informed by
70 * the transaction manager to prepare, commit, or rollback a transaction
71 * according to the two-phase commit protocol.</p>
82 * commit protocol to commit the work done on behalf of xid.
88 * <P>If the resource manager did not commit the transaction and the
94 void commit(Xid xid, boolean onePhase) throws XAException; method in interface:XAResource
169 /** Ask the resource manager to prepare for a transaction commit
/glassfish-3.1.2/transaction/jta/src/test/java/com/sun/enterprise/transaction/
H A DAppTest.java176 t.commit();
183 System.out.println("**Calling TM commit ===>");
184 t.commit();
185 System.out.println("**WRONG: TM commit successful <===");
229 t.commit();
236 System.out.println("**Calling Tx commit ===>");
237 tx.commit();
238 System.out.println("**WRONG: Tx commit successful <===");
317 System.out.println("**Testing Wrong TM commit ===>");
319 System.out.println("**Calling TM commit
854 public void commit(Xid xid, boolean onePhase) throws XAException{} method in class:AppTest.TestResource
[all...]
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/admin/cli/
H A DSecureAdminStartupCheck.java92 commit();
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/
H A DXAResourceWrapper.java72 public void commit(Xid xid, boolean onePhase) throws XAException { method in class:XAResourceWrapper
73 print("XAResource.commit: " + xidToString(xid) + "," + onePhase);
74 res.commit(xid, onePhase);
/glassfish-3.1.2/tests/jbi/transactions/jse_only/webclient/client/
H A DClient.java72 ut.commit();
/glassfish-3.1.2/transaction/internal-api/src/main/java/com/sun/enterprise/transaction/api/
H A DXAResourceWrapper.java104 public abstract void commit(Xid xid, boolean flag) throws XAException; method in class:XAResourceWrapper
112 public void commit(Xid xid, boolean flag) throws XAException{
/glassfish-3.1.2/transaction/jta-xa/src/test/java/com/sun/enterprise/transaction/xa/
H A DAppTest.java107 System.out.println("**Testing TM commit ===>");
114 System.out.println("**Calling TM commit ===>");
115 t.commit();
117 System.out.println("**Status after commit: " + status + " <===");
146 System.out.println("**Testing TX commit ===>");
161 System.out.println("**Calling TX commit ===>");
162 tx.commit();
163 System.out.println("**Status after commit: "
191 System.out.println("**Calling TX commit ===>");
192 tx.commit();
[all...]
/glassfish-3.1.2/ha/ha-shoal-store/src/main/java/org/shoal/ha/store/
H A DReplicatedBackingStoreFactory.java92 public void commit() throws BackingStoreException {
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/concurrency/
H A DConcurrency.java78 public void commit(UpdateObjectDesc updateDesc, method in interface:Concurrency
H A DConcurrencyDBNative.java70 public void commit(UpdateObjectDesc updateDesc, method in class:ConcurrencyDBNative
/glassfish-3.1.2/security/javax.security.jacc/src/main/java/javax/security/jacc/
H A DPolicyConfiguration.java64 * the "inService" state by calling the commit method.
138 * <td width="28%"><font size="-2">commit</font></td>
568 * other than commit, delete, getContextID, or inService on its
583 * accounted for by the commit method signature. The exception thrown
587 public void commit() method in interface:PolicyConfiguration

Completed in 270 milliseconds

1234