Searched refs:Transaction (Results 1 - 25 of 99) sorted by relevance

1234

/glassfish-3.1.2/connectors/connectors-internal-api/src/main/java/com/sun/appserv/connectors/internal/api/
H A DTransactedPoolManager.java45 import javax.transaction.Transaction;
57 * @param tran Transaction to which the resource is enlisted
61 void resourceEnlisted(Transaction tran, ResourceHandle res) throws IllegalStateException;
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/
H A DPoolManager.java59 import javax.transaction.Transaction;
94 Transaction tran) throws PoolingException, RetryableUnavailableException;
114 public void transactionCompleted(Transaction tran, int status);
H A DResourcePool.java54 import javax.transaction.Transaction;
65 Transaction tran) throws PoolingException, RetryableUnavailableException;
72 public void resourceEnlisted(Transaction tran, ResourceHandle resource);
77 public void transactionCompleted(Transaction tran, int status);
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/rm/
H A DNoTxResourceManagerImpl.java47 import javax.transaction.Transaction;
71 public Transaction getTransaction() throws PoolingException {
H A DResourceManager.java46 import javax.transaction.Transaction;
57 * Returns the current Transaction, resource should be dealing with.
59 * @return An instance of Transaction object.
64 public Transaction getTransaction() throws PoolingException;
H A DResourceManagerImpl.java72 * @return Handle to the <code>Transaction</code> object.
75 public Transaction getTransaction() throws PoolingException {
86 return (Transaction) inv.getTransaction();
124 Transaction tran = null;
146 tran = (Transaction) inv.getTransaction();
178 protected void enlist( JavaEETransactionManager tm, Transaction tran,
196 Transaction tran = null;
214 tran = (Transaction) inv.getTransaction();
251 Transaction tran = null;
273 tran = (Transaction) in
[all...]
H A DSystemResourceManagerImpl.java45 import javax.transaction.Transaction;
71 * @return Handle to the <code>Transaction</code> object.
75 public Transaction getTransaction() throws PoolingException {
101 Transaction tran = tm.getTransaction();
121 Transaction tran = tm.getTransaction();
143 Transaction tran = tm.getTransaction();
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/
H A DComponentContext.java46 import javax.transaction.Transaction;
69 * Get the Transaction object associated with this Context.
71 Transaction getTransaction();
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEjbContainerUtil.java60 import javax.transaction.Transaction;
139 public ContainerSynchronization getContainerSync(Transaction jtx)
142 public void removeContainerSync(Transaction tx);
144 public void registerPMSync(Transaction jtx, Synchronization sync)
153 public Vector getBeans(Transaction jtx);
155 public Object getActiveTxCache(Transaction jtx);
157 public void setActiveTxCache(Transaction jtx, Object cache);
/glassfish-3.1.2/transaction/internal-api/src/main/java/com/sun/enterprise/transaction/api/
H A DJavaEETransaction.java48 import javax.transaction.Transaction;
55 extends Transaction {
/glassfish-3.1.2/transaction/internal-api/src/main/java/com/sun/enterprise/transaction/spi/
H A DJavaEETransactionManagerDelegate.java100 public Transaction getTransaction() throws SystemException;
107 public JavaEETransaction getJavaEETransaction(Transaction t);
113 * @param tran the Transaction object to be used to enlist the resource.
118 Transaction tran, TransactionalResource h)
124 * @param tran the Transaction object to be used to enlist the resource.
128 public boolean enlistLAOResource(Transaction tran, TransactionalResource h)
142 * @return Transaction object representing the suspended transaction.
144 public Transaction suspend(JavaEETransaction tx) throws SystemException;
147 * Perform implementation specific steps to resume a Transaction.
149 * @param tx the Transaction objec
[all...]
H A DTransactionInternal.java45 public interface TransactionInternal extends Transaction {
H A DTransactionalResource.java43 import javax.transaction.Transaction;
83 * @param tran Transaction to which the resource is enlisted
86 void enlistedInTransaction(Transaction tran) throws IllegalStateException;
/glassfish-3.1.2/transaction/javax.transaction/src/main/java/javax/transaction/
H A DTransaction.java48 * The Transaction interface allows operations to be performed against
49 * the transaction in the target Transaction object. A Transaction
51 * The Transaction object can be used for resource enlistment,
56 public interface Transaction { interface
59 * Complete the transaction represented by this Transaction object.
87 * with the target Transaction object.
109 * target Transaction object.
134 * Transaction object.
172 * Rollback the transaction represented by this Transaction objec
[all...]
H A DTransactionManager.java57 * associated with a transaction and the Transaction Manager
112 * @return the <code>Transaction</code> object representing the
119 public Transaction getTransaction() throws SystemException;
123 * with the transaction represented by the supplied Transaction object.
127 * @param tobj The <code>Transaction</code> object that represents the
139 public void resume(Transaction tobj)
194 * thread and return a Transaction object that represents the
200 * @return Transaction object representing the suspended transaction.
206 public Transaction suspend() throws SystemException;
/glassfish-3.1.2/transaction/jta/src/main/java/com/sun/enterprise/transaction/
H A DJavaEETransactionManagerSimplifiedDelegate.java139 public Transaction getTransaction() throws SystemException {
143 public JavaEETransaction getJavaEETransaction(Transaction t) {
152 public boolean enlistDistributedNonXAResource(Transaction tran, TransactionalResource h)
157 public boolean enlistLAOResource(Transaction tran, TransactionalResource h)
173 public Transaction suspend(JavaEETransaction tx) throws SystemException {
181 public void resume(Transaction tx)
187 public void removeTransaction(Transaction tx) {}
266 public TransactionAdminBean getTransactionAdminBean(Transaction tran)
/glassfish-3.1.2/transaction/jta-xa/src/main/java/com/sun/enterprise/transaction/xa/
H A DJavaEETransactionManagerXADelegate.java105 public Transaction getTransaction()
110 public boolean enlistDistributedNonXAResource(Transaction tran, TransactionalResource h)
115 public boolean enlistLAOResource(Transaction tran, TransactionalResource h)
126 public Transaction suspend(JavaEETransaction tx) throws SystemException {
132 public void resume(Transaction tx)
138 public void removeTransaction(Transaction tx) {}
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/handlers/
H A DJBITransactionHandler.java52 import javax.transaction.Transaction;
56 * Transaction handling for JBI message exchanges is done in this class. It has
91 Transaction tx = tm.getTransaction();
108 Transaction tx = (Transaction)me.getProperty(MessageExchange.JTA_TRANSACTION_PROPERTY_NAME);
/glassfish-3.1.2/persistence/cmp/internal-api/src/main/java/com/sun/jdo/api/persistence/support/
H A DTransaction.java42 * Transaction.java
50 /** The JDO Transaction interface is a sub-interface of the PersistenceManager
53 * <P>Transaction options include whether optimistic concurrency
57 * <P>Transaction completion methods have the same semantics as javax.transaction
64 public interface Transaction interface
71 * is assigned to this Transaction
143 /** The user-specified Synchronization instance for this Transaction instance.
150 * to execute in the datastore associated with this Transaction instance
157 * to execute in the datastore associated with this Transaction instance
164 * to execute in the datastore associated with this Transaction instanc
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/
H A DPersistenceManagerFactory.java57 void registerPersistenceManager (PersistenceManager pm, javax.transaction.Transaction t);
59 void releasePersistenceManager (PersistenceManager pm, javax.transaction.Transaction t);
H A DTransaction.java46 public interface Transaction extends com.sun.jdo.api.persistence.support.Transaction, Synchronization interface in inherits:com.sun.jdo.api.persistence.support.Transaction,Synchronization
53 void begin(javax.transaction.Transaction t);
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/ejb/
H A DContainerHelper.java233 * @return javax.transaction.Transaction object representing
238 javax.transaction.Transaction suspendCurrentTransaction();
244 * @param tx - The javax.transaction.Transaction object that
247 void resumeCurrentTransaction(javax.transaction.Transaction tx);
H A DTransactionHelper.java81 /** Identify the Transaction context for the calling thread, and return a
82 * Transaction instance that can be used to register synchronizations,
83 * and used as the key for HashMaps. The returned Transaction must implement
85 * <P>All Transaction instances returned by this method called in the same
86 * Transaction context must compare equal and return the same hashCode.
87 * The Transaction instance returned will be held as the key to an
88 * internal HashMap until the Transaction completes. If there is no transaction
90 * @return the Transaction instance for the calling thread
92 Transaction getTransaction();
94 /** Translate local representation of the Transaction Statu
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/concurrency/
H A DConcurrency.java50 import com.sun.jdo.spi.persistence.support.sqlstore.Transaction;
74 public Transaction suspend();
76 public void resume(Transaction t);
H A DConcurrencyDBNative.java52 import com.sun.jdo.spi.persistence.support.sqlstore.Transaction;
81 public Transaction suspend() {
85 public void resume(Transaction t) {

Completed in 122 milliseconds

1234