Uses of Interface
org.cocome.tradingsystem.inventory.data.persistence.PersistenceContext

Packages that use PersistenceContext
org.cocome.tradingsystem.inventory.application.productdispatcher.impl   
org.cocome.tradingsystem.inventory.application.store.impl   
org.cocome.tradingsystem.inventory.data.enterprise   
org.cocome.tradingsystem.inventory.data.enterprise.impl   
org.cocome.tradingsystem.inventory.data.persistence   
org.cocome.tradingsystem.inventory.data.persistence.impl   
org.cocome.tradingsystem.inventory.data.store   
org.cocome.tradingsystem.inventory.data.store.impl   
 

Uses of PersistenceContext in org.cocome.tradingsystem.inventory.application.productdispatcher.impl
 

Constructors in org.cocome.tradingsystem.inventory.application.productdispatcher.impl with parameters of type PersistenceContext
AmplStarter(PersistenceContext pctx)
          Constructor.
 

Uses of PersistenceContext in org.cocome.tradingsystem.inventory.application.store.impl
 

Methods in org.cocome.tradingsystem.inventory.application.store.impl with parameters of type PersistenceContext
static ProductWithSupplierAndStockItemTO FillTransferObjects.fillProductWithSupplierAndStockItemTO(StoreQueryIf storequery, long storeid, Product product, PersistenceContext pctx)
           
 

Uses of PersistenceContext in org.cocome.tradingsystem.inventory.data.enterprise
 

Methods in org.cocome.tradingsystem.inventory.data.enterprise with parameters of type PersistenceContext
 long EnterpriseQueryIf.getMeanTimeToDelivery(ProductSupplier supplier, TradingEnterprise enterprise, PersistenceContext pctx)
           
 TradingEnterprise EnterpriseQueryIf.queryEnterpriseById(long enterpriseId, PersistenceContext pctx)
           
 

Uses of PersistenceContext in org.cocome.tradingsystem.inventory.data.enterprise.impl
 

Methods in org.cocome.tradingsystem.inventory.data.enterprise.impl with parameters of type PersistenceContext
 long EnterpriseQueryImpl.getMeanTimeToDelivery(ProductSupplier supplier, TradingEnterprise enterprise, PersistenceContext pctx)
           
 TradingEnterprise EnterpriseQueryImpl.queryEnterpriseById(long enterpriseId, PersistenceContext pctx)
           
 

Uses of PersistenceContext in org.cocome.tradingsystem.inventory.data.persistence
 

Methods in org.cocome.tradingsystem.inventory.data.persistence that return PersistenceContext
 PersistenceContext PersistenceIf.getPersistenceContext()
          Method used to get a PersistenceContext (to start transactions and persist objects for example)
 

Uses of PersistenceContext in org.cocome.tradingsystem.inventory.data.persistence.impl
 

Classes in org.cocome.tradingsystem.inventory.data.persistence.impl that implement PersistenceContext
 class PersistenceContextImpl
           
 

Methods in org.cocome.tradingsystem.inventory.data.persistence.impl that return PersistenceContext
 PersistenceContext PersistenceImpl.getPersistenceContext()
           
 

Uses of PersistenceContext in org.cocome.tradingsystem.inventory.data.store
 

Methods in org.cocome.tradingsystem.inventory.data.store with parameters of type PersistenceContext
 java.util.Collection<StockItem> StoreQueryIf.getStockItems(long storeId, long[] productIds, PersistenceContext pctx)
           
 java.util.Collection<StockItem> StoreQueryIf.queryAllStockItems(long storeId, PersistenceContext pctx)
           
 java.util.Collection<StockItem> StoreQueryIf.queryLowStockItems(long storeId, PersistenceContext pctx)
          queries the stockitems which are low on stock
 ProductOrder StoreQueryIf.queryOrderById(long orderId, PersistenceContext pctx)
          The following methods from StoreIf use this method: List orderProducts(ComplexOrderTO complexOrder, StoreTO storeTO); ComplexOrderTO getOrder(int orderId); void rollInReceivedOrder(ComplexOrderTO complexOrder, StoreTO store);
 Product StoreQueryIf.queryProductById(long productId, PersistenceContext pctx)
           
 java.util.Collection<Product> StoreQueryIf.queryProducts(long storeId, PersistenceContext pctx)
           
 StockItem StoreQueryIf.queryStockItem(long storeId, long productbarcode, PersistenceContext pctx)
          The following methods from StoreIf use this method: ProductWithStockItemTO getProductWithStockItem(int productBarCode);
 StockItem StoreQueryIf.queryStockItemById(long stockId, PersistenceContext pctx)
           
 Store StoreQueryIf.queryStoreById(long storeId, PersistenceContext pctx)
           
 

Uses of PersistenceContext in org.cocome.tradingsystem.inventory.data.store.impl
 

Methods in org.cocome.tradingsystem.inventory.data.store.impl with parameters of type PersistenceContext
 java.util.Collection<StockItem> StoreQueryImpl.getStockItems(long storeId, long[] productIds, PersistenceContext pctx)
           
 java.util.Collection<StockItem> StoreQueryImpl.queryAllStockItems(long storeId, PersistenceContext pctx)
           
 java.util.Collection<StockItem> StoreQueryImpl.queryLowStockItems(long storeId, PersistenceContext pctx)
           
 ProductOrder StoreQueryImpl.queryOrderById(long orderId, PersistenceContext pctx)
           
 Product StoreQueryImpl.queryProductById(long productId, PersistenceContext pctx)
           
 java.util.Collection<Product> StoreQueryImpl.queryProducts(long storeId, PersistenceContext pctx)
           
 StockItem StoreQueryImpl.queryStockItem(long storeId, long productbarcode, PersistenceContext pctx)
           
 StockItem StoreQueryImpl.queryStockItemById(long stockId, PersistenceContext pctx)
           
 Store StoreQueryImpl.queryStoreById(long storeId, PersistenceContext pctx)