Package ejava.examples.asyncmarket
Interface Seller
-
- All Known Subinterfaces:
SellerLocal
,SellerRemote
- All Known Implementing Classes:
SellerEJB
public interface Seller
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuctionItem
getItem(long id)
long
sellProduct(String sellerId, AuctionItem item)
-
-
-
Method Detail
-
sellProduct
long sellProduct(String sellerId, AuctionItem item) throws ResourceNotFoundException
- Throws:
ResourceNotFoundException
-
getItem
AuctionItem getItem(long id) throws ResourceNotFoundException
- Throws:
ResourceNotFoundException
-
-