Uses of Class
transaction.TransactionAbortedException

Packages that use TransactionAbortedException
transaction   
 

Uses of TransactionAbortedException in transaction
 

Methods in transaction that throw TransactionAbortedException
 boolean ITravelAgency.abort()
          Abort the current transaction.
 boolean TransactionManagerImpl.abort(int xid)
           
 boolean ITransactionManager.abort(int globalXID)
          Abort a distributed transaction.
 boolean IResourceManager.addResource(int xid, java.lang.String rid, int num, int price)
          Add a new resource (e.g. hotel) to the database.
 boolean ResourceManagerImpl.addResource(int xid, java.lang.String rid, int num, int price)
           
 boolean ITravelAgency.commit()
          Commit the current transaction.
 boolean TransactionManagerImpl.commit(int xid)
           
 boolean IResourceManager.commit(int xid)
          Commit transaction.
 boolean ResourceManagerImpl.commit(int xid)
           
 boolean ITransactionManager.commit(int globalXID)
          Commit a distributed transaction.
 boolean IResourceManager.newCustomer(int xid, java.lang.String custName)
          Add a new customer to the database.
 boolean ResourceManagerImpl.newCustomer(int xid, java.lang.String custName)
          Add a new customer to database.
 int IResourceManager.queryCustomerBill(int xid, java.lang.String custName)
          Query the bill of a customer.
 int ResourceManagerImpl.queryCustomerBill(int xid, java.lang.String custName)
           
 int IResourceManager.queryResourceAvailability(int xid, java.lang.String rid)
          Query the availability of a resource.
 int ResourceManagerImpl.queryResourceAvailability(int xid, java.lang.String rid)
           
 int IResourceManager.queryResourcePrice(int xid, java.lang.String rid)
          Query the price of a resource.
 int ResourceManagerImpl.queryResourcePrice(int xid, java.lang.String rid)
           
 boolean IResourceManager.reserveResource(int xid, java.lang.String rid, java.lang.String custName)
          Reserve a resource for a given customer.
 boolean ResourceManagerImpl.reserveResource(int xid, java.lang.String rid, java.lang.String custName)
           
 boolean IResourceManager.updateResource(int xid, java.lang.String rid, int num, int price)
          Update the attributes (total capacity and price) of a resource.
 boolean ResourceManagerImpl.updateResource(int xid, java.lang.String rid, int num, int price)