Uses of Class
info.ejava.examples.ejb.cdisales.bo.Product
-
-
Uses of Product in info.ejava.examples.ejb.cdisales.bl
Methods in info.ejava.examples.ejb.cdisales.bl that return Product Modifier and Type Method Description Product
ProductCatalog. addProduct(Product product)
Methods in info.ejava.examples.ejb.cdisales.bl that return types with arguments of type Product Modifier and Type Method Description List<Product>
ProductCatalog. getBuyerProducts(Member buyer, int offset, int limit)
List<Product>
ProductCatalog. getProductsForSale(Product template, int offset, int limit)
List<Product>
ProductCatalog. getSellerProducts(Member seller, int offset, int limit)
Methods in info.ejava.examples.ejb.cdisales.bl with parameters of type Product Modifier and Type Method Description Product
ProductCatalog. addProduct(Product product)
List<Product>
ProductCatalog. getProductsForSale(Product template, int offset, int limit)
int
ProductCatalog. remove(Product product)
-
Uses of Product in info.ejava.examples.ejb.cdisales.bo
Methods in info.ejava.examples.ejb.cdisales.bo with parameters of type Product Modifier and Type Method Description int
Product.ProductASC. compare(Product lhs, Product rhs)
-
Uses of Product in info.ejava.examples.ejb.cdisales.dao
Methods in info.ejava.examples.ejb.cdisales.dao that return Product Modifier and Type Method Description Product
ProductCatalogDAO. addProduct(Product product)
Methods in info.ejava.examples.ejb.cdisales.dao that return types with arguments of type Product Modifier and Type Method Description List<Product>
ProductCatalogDAO. getBuyerProducts(Member buyer, int offset, int limit)
List<Product>
ProductCatalogDAO. getProductsForSale(Product template, int offset, int limit)
List<Product>
ProductCatalogDAO. getSellerProducts(Member seller, int offset, int limit)
Methods in info.ejava.examples.ejb.cdisales.dao with parameters of type Product Modifier and Type Method Description Product
ProductCatalogDAO. addProduct(Product product)
List<Product>
ProductCatalogDAO. getProductsForSale(Product template, int offset, int limit)
int
ProductCatalogDAO. remove(Product product)
-
Uses of Product in info.ejava.examples.ejb.cdisales.ejb
Methods in info.ejava.examples.ejb.cdisales.ejb that return Product Modifier and Type Method Description Product
ProductCatalogEJB. addProduct(Product product)
Methods in info.ejava.examples.ejb.cdisales.ejb that return types with arguments of type Product Modifier and Type Method Description List<Product>
ProductCatalogEJB. getBuyerProducts(Member buyer, int offset, int limit)
List<Product>
ProductCatalogEJB. getProductsForSale(Product template, int offset, int limit)
List<Product>
ProductCatalogEJB. getSellerProducts(Member seller, int offset, int limit)
Methods in info.ejava.examples.ejb.cdisales.ejb with parameters of type Product Modifier and Type Method Description Product
ProductCatalogEJB. addProduct(Product product)
List<Product>
ProductCatalogEJB. getProductsForSale(Product template, int offset, int limit)
int
ProductCatalogEJB. remove(Product product)
-
Uses of Product in info.ejava.examples.ejb.cdisales.web
Fields in info.ejava.examples.ejb.cdisales.web declared as Product Modifier and Type Field Description private Product
SellerController. product
This is the product the page is currently working with.Fields in info.ejava.examples.ejb.cdisales.web with type parameters of type Product Modifier and Type Field Description private List<Product>
SellerController. products
This is initially populated using a call to the back-end for persisted items for sale and then updated as products are added for sale during the conversation.Methods in info.ejava.examples.ejb.cdisales.web that return Product Modifier and Type Method Description Product
SellerController. getProduct()
Associated getter/setter is called for inputText.value elements.Methods in info.ejava.examples.ejb.cdisales.web that return types with arguments of type Product Modifier and Type Method Description List<Product>
SellerController. getProducts()
Methods in info.ejava.examples.ejb.cdisales.web with parameters of type Product Modifier and Type Method Description void
SellerController. setProduct(Product product)
Method parameters in info.ejava.examples.ejb.cdisales.web with type arguments of type Product Modifier and Type Method Description void
SellerController. setProducts(List<Product> products)
-