Uses of Class
ejava.examples.asyncmarket.bo.AuctionItem
-
Packages that use AuctionItem Package Description ejava.examples.asyncmarket ejava.examples.asyncmarket.bo ejava.examples.asyncmarket.dao ejava.examples.asyncmarket.ejb ejava.examples.asyncmarket.jpa -
-
Uses of AuctionItem in ejava.examples.asyncmarket
Methods in ejava.examples.asyncmarket that return AuctionItem Modifier and Type Method Description AuctionItem
Buyer. getItem(long itemId)
AuctionItem
Seller. getItem(long id)
Methods in ejava.examples.asyncmarket that return types with arguments of type AuctionItem Modifier and Type Method Description List<AuctionItem>
Buyer. getAvailableItems(int index, int count)
List<AuctionItem>
AuctionMgmt. getItems(int index, int count)
Methods in ejava.examples.asyncmarket with parameters of type AuctionItem Modifier and Type Method Description long
Seller. sellProduct(String sellerId, AuctionItem item)
-
Uses of AuctionItem in ejava.examples.asyncmarket.bo
Fields in ejava.examples.asyncmarket.bo declared as AuctionItem Modifier and Type Field Description private AuctionItem
Bid. item
private AuctionItem
Order. item
Fields in ejava.examples.asyncmarket.bo with type parameters of type AuctionItem Modifier and Type Field Description private Collection<AuctionItem>
Person. items
Methods in ejava.examples.asyncmarket.bo that return AuctionItem Modifier and Type Method Description AuctionItem
Bid. getItem()
AuctionItem
Order. getItem()
Methods in ejava.examples.asyncmarket.bo that return types with arguments of type AuctionItem Modifier and Type Method Description Collection<AuctionItem>
Person. getItems()
Methods in ejava.examples.asyncmarket.bo with parameters of type AuctionItem Modifier and Type Method Description void
Bid. setItem(AuctionItem item)
void
Order. setItem(AuctionItem item)
Method parameters in ejava.examples.asyncmarket.bo with type arguments of type AuctionItem Modifier and Type Method Description void
Person. setItems(Collection<AuctionItem> items)
-
Uses of AuctionItem in ejava.examples.asyncmarket.dao
Methods in ejava.examples.asyncmarket.dao that return AuctionItem Modifier and Type Method Description AuctionItem
AuctionItemDAO. createItem(AuctionItem item)
AuctionItem
AuctionItemDAO. getItem(long itemId)
AuctionItem
AuctionItemDAO. updateItem(AuctionItem item)
Methods in ejava.examples.asyncmarket.dao that return types with arguments of type AuctionItem Modifier and Type Method Description List<AuctionItem>
AuctionItemDAO. getAvailableItems(int index, int count)
List<AuctionItem>
AuctionItemDAO. getItems(int index, int count)
List<AuctionItem>
AuctionItemDAO. getItems(String queryString, Map<String,Object> args, int index, int count)
Methods in ejava.examples.asyncmarket.dao with parameters of type AuctionItem Modifier and Type Method Description AuctionItem
AuctionItemDAO. createItem(AuctionItem item)
AuctionItem
AuctionItemDAO. updateItem(AuctionItem item)
-
Uses of AuctionItem in ejava.examples.asyncmarket.ejb
Methods in ejava.examples.asyncmarket.ejb that return AuctionItem Modifier and Type Method Description AuctionItem
BuyerEJB. getItem(long itemId)
AuctionItem
SellerEJB. getItem(long itemId)
AuctionItem
DtoMapper. toDTO(AuctionItem item)
AuctionItem
DtoMapper. toDTO(AuctionItem item, Bid bid)
private AuctionItem
DtoMapper. toDTO(AuctionItem item, Order order)
Methods in ejava.examples.asyncmarket.ejb that return types with arguments of type AuctionItem Modifier and Type Method Description List<AuctionItem>
BuyerEJB. getAvailableItems(int index, int count)
List<AuctionItem>
AuctionMgmtEJB. getItems(int index, int count)
Collection<AuctionItem>
DtoMapper. toDTO(Collection<AuctionItem> items, Person owner)
List<AuctionItem>
DtoMapper. toDTO(List<AuctionItem> items)
Methods in ejava.examples.asyncmarket.ejb with parameters of type AuctionItem Modifier and Type Method Description protected Bid
SellerEJB. getWinningDTO(Bid winningBid, AuctionItem item)
protected void
AuctionMgmtEJB. publishAvailableItem(AuctionItem item)
protected void
SellerEJB. publishForSale(AuctionItem item)
protected void
SellerEJB. publishSold(AuctionItem item)
long
SellerEJB. sellProduct(String sellerId, AuctionItem item)
AuctionItem
DtoMapper. toDTO(AuctionItem item)
AuctionItem
DtoMapper. toDTO(AuctionItem item, Bid bid)
private AuctionItem
DtoMapper. toDTO(AuctionItem item, Order order)
Bid
DtoMapper. toDTO(Bid bid, AuctionItem item)
Person
DtoMapper. toDTO(Person owner, AuctionItem item)
List<Bid>
DtoMapper. toDTO(List<Bid> bids, AuctionItem item)
Method parameters in ejava.examples.asyncmarket.ejb with type arguments of type AuctionItem Modifier and Type Method Description Collection<AuctionItem>
DtoMapper. toDTO(Collection<AuctionItem> items, Person owner)
List<AuctionItem>
DtoMapper. toDTO(List<AuctionItem> items)
-
Uses of AuctionItem in ejava.examples.asyncmarket.jpa
Methods in ejava.examples.asyncmarket.jpa that return AuctionItem Modifier and Type Method Description AuctionItem
JPAAuctionItemDAO. createItem(AuctionItem item)
AuctionItem
JPAAuctionItemDAO. getItem(long itemId)
AuctionItem
JPAAuctionItemDAO. updateItem(AuctionItem item)
Methods in ejava.examples.asyncmarket.jpa that return types with arguments of type AuctionItem Modifier and Type Method Description List<AuctionItem>
JPAAuctionItemDAO. getAvailableItems(int index, int count)
List<AuctionItem>
JPAAuctionItemDAO. getItems(int index, int count)
List<AuctionItem>
JPAAuctionItemDAO. getItems(String queryString, Map<String,Object> params, int index, int count)
Methods in ejava.examples.asyncmarket.jpa with parameters of type AuctionItem Modifier and Type Method Description AuctionItem
JPAAuctionItemDAO. createItem(AuctionItem item)
AuctionItem
JPAAuctionItemDAO. updateItem(AuctionItem item)
-