Uses of Class
org.cocome.tradingsystem.inventory.data.store.StockItem

Packages that use StockItem
org.cocome.tradingsystem.inventory.application.productdispatcher   
org.cocome.tradingsystem.inventory.application.productdispatcher.impl   
org.cocome.tradingsystem.inventory.application.store.impl   
org.cocome.tradingsystem.inventory.data.store   
org.cocome.tradingsystem.inventory.data.store.impl   
 

Uses of StockItem in org.cocome.tradingsystem.inventory.application.productdispatcher
 

Method parameters in org.cocome.tradingsystem.inventory.application.productdispatcher with type arguments of type StockItem
 java.util.Hashtable<StoreTO,java.util.Collection<ProductAmountTO>> OptimisationSolverIf.solveOptimization(java.util.Collection<ProductAmountTO> requiredProductAmounts, java.util.Hashtable<Store,java.util.Collection<StockItem>> storeStockItems, java.util.Hashtable<Store,java.lang.Integer> storeDistances)
          Solves an optimisation problem: Optimal transportation costs with respect to The required products and the required amount The available products and their provided amount per providing store The distances between the requiring and the providing store
 

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

Method parameters in org.cocome.tradingsystem.inventory.application.productdispatcher.impl with type arguments of type StockItem
 java.util.Hashtable<StoreTO,java.util.Collection<ProductAmountTO>> AmplStarter.solveOptimization(java.util.Collection<ProductAmountTO> requiredProductAmounts, java.util.Hashtable<Store,java.util.Collection<StockItem>> storeStockItems, java.util.Hashtable<Store,java.lang.Integer> storeDistances)
          Solves an optimisation problem: Optimal transportation costs with respect to The required products and the required amount The available products and their provided amount per providing store The distances between the requiring and the providing store
 

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

Methods in org.cocome.tradingsystem.inventory.application.store.impl with parameters of type StockItem
static ProductWithStockItemTO FillTransferObjects.fillProductWithStockItemTO(StockItem stockitem)
           
static StockItemTO FillTransferObjects.fillStockItemTO(StockItem stockitem)
           
 

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

Methods in org.cocome.tradingsystem.inventory.data.store that return StockItem
 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)
           
 

Methods in org.cocome.tradingsystem.inventory.data.store that return types with arguments of type StockItem
 java.util.Collection<StockItem> Store.getStockItems()
           
 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
 

Method parameters in org.cocome.tradingsystem.inventory.data.store with type arguments of type StockItem
 void Store.setStockItems(java.util.Collection<StockItem> stockItems)
           
 

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

Methods in org.cocome.tradingsystem.inventory.data.store.impl that return StockItem
 StockItem StoreQueryImpl.queryStockItem(long storeId, long productbarcode, PersistenceContext pctx)
           
 StockItem StoreQueryImpl.queryStockItemById(long stockId, PersistenceContext pctx)
           
 

Methods in org.cocome.tradingsystem.inventory.data.store.impl that return types with arguments of type StockItem
 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)