Uses of Class
org.cocome.tradingsystem.inventory.application.reporting.StoreTO

Packages that use StoreTO
org.cocome.tradingsystem.inventory.application.productdispatcher   
org.cocome.tradingsystem.inventory.application.productdispatcher.impl   
org.cocome.tradingsystem.inventory.application.reporting   
org.cocome.tradingsystem.inventory.application.reporting.impl   
org.cocome.tradingsystem.inventory.application.store   
org.cocome.tradingsystem.inventory.application.store.impl   
 

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

Methods in org.cocome.tradingsystem.inventory.application.productdispatcher that return types with arguments of type StoreTO
 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
 

Methods in org.cocome.tradingsystem.inventory.application.productdispatcher with parameters of type StoreTO
 ProductAmountTO[] ProductDispatcherIf.orderProductsAvailableAtOtherStores(EnterpriseTO enterpriseTO, StoreTO callingStore, java.util.Collection<ProductAmountTO> productAmounts)
          Executes a query to search for a product (that ran out of stock at one store) at other stores in the region.
 

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

Methods in org.cocome.tradingsystem.inventory.application.productdispatcher.impl that return types with arguments of type StoreTO
 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
 

Methods in org.cocome.tradingsystem.inventory.application.productdispatcher.impl with parameters of type StoreTO
 ProductAmountTO[] ProductDispatcher.orderProductsAvailableAtOtherStores(EnterpriseTO enterpriseTO, StoreTO callingStore, java.util.Collection<ProductAmountTO> productAmounts)
           
 

Uses of StoreTO in org.cocome.tradingsystem.inventory.application.reporting
 

Methods in org.cocome.tradingsystem.inventory.application.reporting with parameters of type StoreTO
 ReportTO ReportingIf.getStockReport(StoreTO storeTO)
          Generates report of available stocks in the specified store.
 

Uses of StoreTO in org.cocome.tradingsystem.inventory.application.reporting.impl
 

Methods in org.cocome.tradingsystem.inventory.application.reporting.impl with parameters of type StoreTO
 ReportTO ReportingImpl.getStockReport(StoreTO storeTO)
          Used for implementation of UC 5:ShowStockReports
 

Uses of StoreTO in org.cocome.tradingsystem.inventory.application.store
 

Subclasses of StoreTO in org.cocome.tradingsystem.inventory.application.store
 class StoreWithEnterpriseTO
          StoreWithEnterpriseTO is used as transfer object class for transferring basic store information and additional enterprise information between client and the service-oriented application layer.
 

Methods in org.cocome.tradingsystem.inventory.application.store that return StoreTO
 StoreTO ProductMovementTO.getDeliveringStore()
          The store that has to deliver the products.
 StoreTO ProductMovementTO.getTargetStore()
          The store that receives the products.
 

Methods in org.cocome.tradingsystem.inventory.application.store with parameters of type StoreTO
 void ProductMovementTO.setDeliveringStore(StoreTO deliveringStore)
          The store that has to deliver the products.
 void ProductMovementTO.setTargetStore(StoreTO targetStore)
          The store that receives the products.
 

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

Methods in org.cocome.tradingsystem.inventory.application.store.impl that return StoreTO
static StoreTO FillTransferObjects.fillStoreTO(Store store)