Uses of Class
ejava.examples.ejbwar.inventory.bo.Product
-
-
Uses of Product in ejava.examples.ejbwar.inventory.bo
Fields in ejava.examples.ejbwar.inventory.bo with type parameters of type Product Modifier and Type Field Description private List<Product>
Category. products
private List<Product>
Products. products
Methods in ejava.examples.ejbwar.inventory.bo that return Product Modifier and Type Method Description Product
Product. withProtectedValue(String string)
Methods in ejava.examples.ejbwar.inventory.bo that return types with arguments of type Product Modifier and Type Method Description List<Product>
Category. getProducts()
List<Product>
Products. getProducts()
Method parameters in ejava.examples.ejbwar.inventory.bo with type arguments of type Product Modifier and Type Method Description void
Category. setProducts(List<Product> products)
void
Products. setProducts(List<Product> products)
Constructor parameters in ejava.examples.ejbwar.inventory.bo with type arguments of type Product Constructor Description Products(List<Product> products, int offset, int limit)
-
Uses of Product in ejava.examples.ejbwar.inventory.client
Methods in ejava.examples.ejbwar.inventory.client that return Product Modifier and Type Method Description Product
InventoryClient. createProduct(Product product, String string)
Product
InventoryJaxRSClientImpl. createProduct(Product product, String categoryName)
This method uses HTML FORM mechanism to POST a new product in the inventory.Product
InventoryClient. getProduct(int id)
Product
InventoryJaxRSClientImpl. getProduct(int id)
Product
InventoryClient. updateProduct(Product product)
Product
InventoryJaxRSClientImpl. updateProduct(Product product)
Methods in ejava.examples.ejbwar.inventory.client with parameters of type Product Modifier and Type Method Description Product
InventoryClient. createProduct(Product product, String string)
Product
InventoryJaxRSClientImpl. createProduct(Product product, String categoryName)
This method uses HTML FORM mechanism to POST a new product in the inventory.Product
InventoryClient. updateProduct(Product product)
Product
InventoryJaxRSClientImpl. updateProduct(Product product)
-
Uses of Product in ejava.examples.ejbwar.inventory.dao
Methods in ejava.examples.ejbwar.inventory.dao that return Product Modifier and Type Method Description Product
InventoryDAO. getProduct(int id)
Product
InventoryDAOImpl. getProduct(int id)
Product
InventoryDAO. updateProduct(Product product)
Product
InventoryDAOImpl. updateProduct(Product product)
Methods in ejava.examples.ejbwar.inventory.dao that return types with arguments of type Product Modifier and Type Method Description List<Product>
InventoryDAO. findProductsByName(String criteria, int offset, int limit)
List<Product>
InventoryDAOImpl. findProductsByName(String criteria, int offset, int limit)
Methods in ejava.examples.ejbwar.inventory.dao with parameters of type Product Modifier and Type Method Description void
InventoryDAO. addProduct(Product p)
void
InventoryDAOImpl. addProduct(Product p)
void
InventoryDAO. deleteProduct(Product p)
void
InventoryDAOImpl. deleteProduct(Product product)
Product
InventoryDAO. updateProduct(Product product)
Product
InventoryDAOImpl. updateProduct(Product product)
-
Uses of Product in ejava.examples.ejbwar.inventory.ejb
Methods in ejava.examples.ejbwar.inventory.ejb that return Product Modifier and Type Method Description Product
InventoryMgmtEJB. addProduct(Product product, String categoryName)
Product
InventoryMgmtEJB. getProduct(int id)
Product
InventoryMgmtEJB. updateProduct(Product product)
Methods in ejava.examples.ejbwar.inventory.ejb with parameters of type Product Modifier and Type Method Description Product
InventoryMgmtEJB. addProduct(Product product, String categoryName)
void
InventoryMgmtEJB. deleteProduct(Product product)
Product
InventoryMgmtEJB. updateProduct(Product product)
-
Uses of Product in ejava.examples.ejbwar.inventory.rmi
Methods in ejava.examples.ejbwar.inventory.rmi that return Product Modifier and Type Method Description Product
InventoryMgmtRMIEJB. createProduct(Product product, String category)
Product
InventoryMgmtRMIEJB. getProduct(int id)
Product
InventoryMgmtRMIEJB. updateProduct(Product product)
Methods in ejava.examples.ejbwar.inventory.rmi with parameters of type Product Modifier and Type Method Description Product
InventoryMgmtRMIEJB. createProduct(Product product, String category)
Product
InventoryMgmtRMIEJB. updateProduct(Product product)
-
Uses of Product in ejava.examples.ejbwar.inventory.rs
Methods in ejava.examples.ejbwar.inventory.rs with parameters of type Product Modifier and Type Method Description javax.ws.rs.core.Response
ProductsResource. updateProduct(int id, Product product)
Updates a product with the values of the object passed in
-