/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/ |
H A D | LocalTransaction.java | 90 * @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 D | LocalTransaction.java | 92 void commit() throws ResourceException; method in interface:LocalTransaction
|
H A D | XATerminator.java | 62 * 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/transaction/javax.transaction/src/main/java/javax/transaction/ |
H A D | UserTransaction.java | 82 * not allowed to commit the transaction. 90 void commit() throws RollbackException, method in interface:UserTransaction
|
H A D | Transaction.java | 73 * 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 D | TransactionManager.java | 82 * not allowed to commit the transaction. 91 public void commit() throws RollbackException, method in interface:TransactionManager
|
/glassfish-3.1.2/ha/ha-file-store/src/main/java/org/glassfish/ha/store/adapter/file/ |
H A D | FileStoreTransaction.java | 53 public void commit() throws BackingStoreException { method in class:FileStoreTransaction
|
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/ |
H A D | LocalTransactionImpl.java | 104 public void commit() throws ResourceException { method in class:LocalTransactionImpl 106 mc.getActualConnection().commit(); 110 _logger.finest("Exception during commit() : " + sqle);
|
H A D | XAResourceImpl.java | 73 * @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/transaction/jts/src/main/java/com/sun/enterprise/transaction/jts/recovery/ |
H A D | SybaseXAResource.java | 88 public void commit(Xid xid, boolean flag) throws XAException{ method in class:SybaseXAResource 90 m_xacon.getXAResource().commit(xid, flag);
|
H A D | OracleXAResource.java | 142 public void commit(Xid xid, boolean flag) throws XAException{ method in class:OracleXAResource 159 m_xacon.getXAResource().commit(xid,true); 187 stmt.executeUpdate((isCommit ? "commit force '" : "rollback force '") + s + "'");
|
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jta/ |
H A D | UserTransactionImpl.java | 106 * not allowed to commit the transaction. 114 public void commit() throws RollbackException, method in class:UserTransactionImpl 118 this.transactionManager.commit();
|
/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 { method in class:XATerminatorProxy 81 xat.commit(xid, onePhase);
|
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/ |
H A D | CoordinatorTerm.java | 120 * CoordinatorTerm can find the Coordinator to pass on the two-phase commit 180 * Uses a private interface to pass the Terminator's commit request on to the 187 * Before telling the Coordinator to commit, it is informed that the 189 * transaction has completed, with an indication of commit or rollback. 207 void commit( boolean promptReturn ) method in class:CoordinatorTerm 260 // If this CoordinatorTerm was created by a Factory, then this commit will 315 // GDH Now see if we can legally call commit one phase 342 // Then we have done the commit already above 350 // commit two phase now 371 // Depending on the prepare result, commit o [all...] |
H A D | CurrentImpl.java | 512 * @exception NoTransaction There is no current transaction to commit. 515 * @exception NO_PERMISSION The caller is not allowed to commit the 527 public void commit( boolean reportHeuristics ) method in class:CurrentImpl 553 // thread calls commit after an asynchronous abort happens, 556 // In the case where someone had called terminator.commit 614 // Tell the Terminator to commit the transaction. 633 term.commit(reportHeuristics); 637 // because commit/rollback operation by a different thread 697 // In the case where someone had called terminator.commit 780 // because commit/rollbac [all...] |
H A D | XATerminatorImpl.java | 81 * commit protocol to commit the work done on behalf of xid. 87 * <P>If the resource manager did not commit the transaction and the 92 public void commit(Xid xid, boolean onePhase) throws XAException { method in class:XATerminatorImpl 128 if (coord == null) { // error to receive commit more than once 134 // operation. Tell the Coordinator to commit. 149 coord.commit(); 155 coord.commit(); 166 // beforeCompletion calls in prepare phase of one phase commit. 200 * Ask the resource manager to prepare for a transaction commit [all...] |
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/codegen/jtsxa/ |
H A D | _OTSResourceStub.java | 123 public void commit () throws org.omg.CosTransactions.NotPrepared, org.omg.CosTransactions.HeuristicRollback, org.omg.CosTransactions.HeuristicMixed, org.omg.CosTransactions.HeuristicHazard method in class:_OTSResourceStub 127 org.omg.CORBA.portable.OutputStream $out = _request ("commit", true); 143 commit (); 147 } // commit
|
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/codegen/otsidl/ |
H A D | _CoordinatorResourceStub.java | 139 public void commit () throws org.omg.CosTransactions.NotPrepared, org.omg.CosTransactions.HeuristicRollback, org.omg.CosTransactions.HeuristicMixed, org.omg.CosTransactions.HeuristicHazard method in class:_CoordinatorResourceStub 143 org.omg.CORBA.portable.OutputStream $out = _request ("commit", true); 159 commit (); 163 } // commit
|
/glassfish-3.1.2/security/javax.security.jacc/src/main/java/javax/security/jacc/ |
H A D | PolicyConfiguration.java | 64 * 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
|
/glassfish-3.1.2/transaction/internal-api/src/main/java/com/sun/enterprise/transaction/api/ |
H A D | XAResourceWrapper.java | 104 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/src/main/java/com/sun/enterprise/transaction/ |
H A D | UserTransactionImpl.java | 191 public void commit() throws RollbackException, method in class:UserTransactionImpl 197 userTx.commit(); 208 transactionManager.commit();
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/ |
H A D | ApplicationDispatcherForward.java | 107 static void commit(ServletRequest request, method in class:ApplicationDispatcherForward
|
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/concurrency/ |
H A D | ConcurrencyCheckDirty.java | 67 public void commit(UpdateObjectDesc updateDesc, method in class:ConcurrencyCheckDirty
|
H A D | ConcurrencyDBNative.java | 70 public void commit(UpdateObjectDesc updateDesc, method in class:ConcurrencyDBNative
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/login/ |
H A D | ClientPasswordLoginModule.java | 233 * @exception LoginException if the commit fails. 235 * @return true if this LoginModule's own login and commit 238 public boolean commit() throws LoginException { method in class:ClientPasswordLoginModule 279 * <code>login</code> and <code>commit</code> methods), 286 * @return false if this LoginModule's own login and/or commit attempts 304 // overall authentication succeeded and commit succeeded, 305 // but someone else's commit failed 315 * that was added by the <code>commit</code> method.
|