|
© 2004 BEA Systems, Inc. | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.beasys.commerce.ebusiness.order.OrderManagerBean
The OrderManagerBean is a session bean that isolates
the JSP type calls from dealing directly with
Order Entity Beans in a piece-meal fashion
and improves performance by keeping the
calls on the EJB sides.
Its main purpose is to create an Order and
to retrieve OrderValue's using a variety of
criteria, customerPK, a date range, a SKU, a Status.
The returned objects on those finder methods may be either
straight collection with all the orderValue objects filled,
or a more sophisticated ScrollableModel which caches the
PK and a few orderValues only.
Finally, the OrderManagerBean deals with getting and setting
an Order's status, and helps the JSP presentation by providing
the only possible statuses an Order can move to.
OrderValue
,
StateMachine
,
,
OrderManagerHome
,
OrderManager
,
Serialized FormConstructor Summary | |
OrderManagerBean()
The constructor gets an order state machine for any status associated action. |
Method Summary | |
protected static void |
close(Connection connection,
PreparedStatement statement,
ResultSet resultSet)
Close database "stuff" quietly and without exceptions. |
Handle |
createOrder(OrderPk orderPK,
OrderValue orderValue,
Quote adjustments)
Creates an order using a value object. |
void |
ejbActivate()
Empty ejb method implementation |
void |
ejbCreate()
Empty ejb method implementation |
void |
ejbPassivate()
Empty ejb method implementation |
void |
ejbPostCreate()
Empty ejb method implementation |
void |
ejbRemove()
Empty ejb method implementation |
Collection |
findByCustomer(CustomerPk customerPk)
Finds the OrderValues associated with a customer and returns a collection |
ScrollableModel |
findByCustomer(CustomerPk customerPK,
int pageSize)
Finds the OrderValues associated with a customer and returns a scrollable model |
Collection |
findByDates(Date startDate,
Date endDate)
Finds a collection of orders given a range of dates. |
ScrollableModel |
findByDates(Date startDate,
Date endDate,
int pageSize)
Finds the OrderValues associated with a date range and returns a scrollable model |
OrderValue |
findByPK(OrderPk pk)
Finds an order value given its primary key. |
Collection |
findBySKU(String SKU)
This method uses a prepared statement and a Jdbc Connection to retrieve Order Values from the WLCS_ORDER_LINE table, based on the SKU of a product item. |
ScrollableModel |
findBySKU(String sku,
int pageSize)
This method uses a prepared statement and a Jdbc Connection to retrieve Order Values organized in a ScrollableModel from the WLCS_ORDER_LINE table, based on the SKU of a product item. |
Collection |
findByStatus(String status)
Finds the OrderValues associated with a status and returns a collection |
ScrollableModel |
findByStatus(String status,
int pageSize)
Finds the OrderValues associated with a status and returns a scrollable model |
String |
getOrderStatus(OrderPk pk)
Gets the status of an order, given the order's primary key. |
String[] |
getValidNewStatuses(OrderPk orderPK)
Retrieves all the possible statuses an Order can move to based on its primary key. |
void |
queryOrderAdjusments(OrderPk orderPk,
OrderValue orderValue)
this call fills an orderValue with the adjustments that are associated with it. |
void |
setOrderStatus(OrderPk pk,
String orderStatus)
Sets an order's status to a specified value, given the order's primary key. |
void |
setSessionContext(SessionContext context)
Set the session context |
void |
updateOrderDiscounts(OrderPk orderPk,
OrderValue orderValue,
Quote adjustments)
updates the discounts associated with an order |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public OrderManagerBean() throws Exception
Method Detail |
protected static void close(Connection connection, PreparedStatement statement, ResultSet resultSet)
public Handle createOrder(OrderPk orderPK, OrderValue orderValue, Quote adjustments) throws RemoteException
RemoteException
public void ejbActivate()
ejbActivate
in interface SessionBean
public void ejbCreate()
public void ejbPassivate()
ejbPassivate
in interface SessionBean
public void ejbPostCreate()
public void ejbRemove()
ejbRemove
in interface SessionBean
public Collection findByCustomer(CustomerPk customerPk) throws RemoteException
RemoteException
public ScrollableModel findByCustomer(CustomerPk customerPK, int pageSize) throws RemoteException
RemoteException
public Collection findByDates(Date startDate, Date endDate) throws RemoteException
startDate
- endDate
-
RemoteException
public ScrollableModel findByDates(Date startDate, Date endDate, int pageSize) throws RemoteException
startDate
- of the date rangeendDate
- of the date range
RemoteException
public OrderValue findByPK(OrderPk pk) throws RemoteException
pk
- The primary key of the order to be found
RemoteException
public Collection findBySKU(String SKU) throws RemoteException
SKU
-
RemoteException
public ScrollableModel findBySKU(String sku, int pageSize) throws RemoteException
pageSize
-
RemoteException
public Collection findByStatus(String status) throws RemoteException
RemoteException
public ScrollableModel findByStatus(String status, int pageSize) throws RemoteException
RemoteException
public String getOrderStatus(OrderPk pk) throws RemoteException
pk
- The primary key of the order in question
RemoteException
public String[] getValidNewStatuses(OrderPk orderPK) throws RemoteException
orderPK
-
RemoteException
public void queryOrderAdjusments(OrderPk orderPk, OrderValue orderValue) throws RemoteException
RemoteException
public void setOrderStatus(OrderPk pk, String orderStatus) throws RemoteException
pk
- The order's primary keyorderStatus
-
RemoteException
public void setSessionContext(SessionContext context)
setSessionContext
in interface SessionBean
context
- the Session contextpublic void updateOrderDiscounts(OrderPk orderPk, OrderValue orderValue, Quote adjustments) throws RemoteException
orderPk
- the order primary key.orderValue
- the order value which contains the creation date
and the orderlineadjustments
- a Quote object containing the adjustments
RemoteException
|
© 2004 BEA Systems, Inc. | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |