| java.lang.Object org.objectweb.jonas.stests.appli.OrderPlacementSLR
OrderPlacementSLR | public class OrderPlacementSLR implements SessionBean(Code) | | |
ejbActivate | public void ejbActivate()(Code) | | |
ejbCreate | public void ejbCreate() throws CreateException(Code) | | |
ejbPassivate | public void ejbPassivate()(Code) | | |
ejbRemove | public void ejbRemove()(Code) | | |
placeOrder | public float placeOrder(String wID, String dID, Integer cID, Vector orderLines) throws RemoteException(Code) | | Convenience method to place an order using all Strings for the IDs.
Converts district id String to an int and calls the appropriate placeOrder method.
Parameters: wID - String Warehouse ID Parameters: dID - String District ID Parameters: cID - Integer Customer ID Parameters: orderLines - Vector of OrderDetail objects. Each OrderDetail object represents one line item on the order. exception: javax.ejb.RemoteException - |
placeOrder | public float placeOrder(String wID, int dID, Integer cID, Vector orderLines) throws RemoteException(Code) | | Place an order.
Parameters: wID - String Warehouse ID Parameters: dID - int District ID Parameters: cID - Integer Customer ID Parameters: orderLines - Vector of OrderDetail objects. Each OrderDetail object represents one line item on the order. The order number assigned to this order. exception: javax.ejb.RemoteException - |
setSessionContext | public void setSessionContext(SessionContext ctxt)(Code) | | |
|
|