|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.ibm.ivj.ejb.runtime.AbstractAccessBean | +--com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean | +--com.ibm.commerce.order.objects.CurrentPendingOrderAccessBean
This bean provides access to the CPENDORDER table.
The following is a description of this table:
Each row of this table indicates that an order is marked as current for a customer in a store, if its status is "P" (Pending).
Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef |
Constructor Summary | |
CurrentPendingOrderAccessBean()
Default constructor. |
|
CurrentPendingOrderAccessBean(javax.ejb.EJBObject object)
Creates an access bean for the specified EJB |
|
CurrentPendingOrderAccessBean(java.lang.Integer anStoreEntityId,
java.lang.Long anOrderId,
java.lang.Long anMemberId)
Maps to a corresponding ejbCreate method in the home interface of the EJB |
Method Summary | |
void |
commitCopyHelper()
Update(flush) data to the EJBObject (persistent storage). |
java.util.Enumeration |
findByMember(java.lang.Long anMemberId)
Retrieves all the current pending order records for specified customer. The SQL query used to fetch all the required rows from the CPENDORDER table is: SELECT * FROM CPENDORDER T1 WHERE T1.MEMBER_ID = ? |
java.util.Enumeration |
findByMemberAndStore(java.lang.Long anMemberId,
java.lang.Integer anStoreEntityId)
Retrieves all the current pending order records for specified customer and store. The SQL query used to fetch all the required rows from the CPENDORDER table is: SELECT * FROM CPENDORDER T1 WHERE T1.MEMBER_ID = ? AND T1.STOREENT_ID = ? |
java.util.Enumeration |
findByMemberForUpdate(java.lang.Long anMemberId)
Retrieves all the current pending order records for specified customer. The SQL query used to fetch all the required rows from the CPENDORDER table is: SELECT * FROM CPENDORDER T1 WHERE T1.MEMBER_ID = ? for update |
java.lang.String |
getField1()
This method provides access to the CPENDORDER.FIELD1 column of DB2 type INTEGER NULL. |
java.lang.Integer |
getField1InEJBType()
This method provides access to the CPENDORDER.FIELD1 column of DB2 type INTEGER NULL. |
java.lang.String |
getField2()
This method provides access to the CPENDORDER.FIELD2 column of DB2 type VARCHAR(254) NULL. |
java.lang.String |
getMemberId()
This method provides access to the CPENDORDER.MEMBER_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getMemberIdInEJBType()
This method provides access to the CPENDORDER.MEMBER_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String |
getOrderId()
This method provides access to the CPENDORDER.ORDERS_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getOrderIdInEJBType()
This method provides access to the CPENDORDER.ORDERS_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String |
getStoreEntityId()
This method provides access to the CPENDORDER.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getStoreEntityIdInEJBType()
This method provides access to the CPENDORDER.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
void |
refreshCopyHelper()
Load data from the EJBObject. |
void |
setField1(java.lang.Integer aField1)
This method provides access to the CPENDORDER.FIELD1 column of DB2 type INTEGER NULL. |
void |
setField1(java.lang.String aField1)
This method provides access to the CPENDORDER.FIELD1 column of DB2 type INTEGER NULL. |
void |
setField2(java.lang.String aField2)
This method provides access to the CPENDORDER.FIELD2 column of DB2 type VARCHAR(254) NULL. |
void |
setInitKey_memberId(java.lang.String aInitKey_memberId)
Set the primary key for this object |
void |
setInitKey_orderId(java.lang.String aInitKey_orderId)
Set the primary key for this object |
void |
setMemberId(java.lang.Long aMemberId)
This method provides access to the CPENDORDER.MEMBER_ID column of DB2 type BIGINT NOT NULL. |
void |
setMemberId(java.lang.String aMemberId)
This method provides access to the CPENDORDER.MEMBER_ID column of DB2 type BIGINT NOT NULL. |
void |
setStoreEntityId(java.lang.Integer aStoreEntityId)
This method provides access to the CPENDORDER.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
void |
setStoreEntityId(java.lang.String aStoreEntityId)
This method provides access to the CPENDORDER.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean |
__getCache, __getCache, __getKey, __setCache, __setCache, __setKey, commitCopyHelper, createAccessBeans, createAccessBeans, instantiateEJBByPrimaryKey, refreshCopyHelper, setEJBRef |
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
defaultJNDIName, defaultNameServiceType, defaultNameServiceURL, getEJBRef, getGlobalHome, getHome, getInit_GlobalNameServiceTypeName, getInit_GlobalNameServiceURLName, getInit_JNDIName, getInit_NameServiceTypeName, getInit_NameServiceURLName, getInitContext, getInitContext, instantiateEJB, resetEJBRef, resetHomeCache, setInit_GlobalNameServiceTypeName, setInit_GlobalNameServiceURLName, setInit_JNDIName, setInit_NameServiceTypeName, setInit_NameServiceURLName |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public CurrentPendingOrderAccessBean()
Default constructor. Maps to findByPrimaryKey.
public CurrentPendingOrderAccessBean(javax.ejb.EJBObject object) throws java.rmi.RemoteException
Creates an access bean for the specified EJB
object
- The EJB Object used for the access bean construction.java.rmi.RemoteException
- The java.rmi.RemoteException exceptionpublic CurrentPendingOrderAccessBean(java.lang.Integer anStoreEntityId, java.lang.Long anOrderId, java.lang.Long anMemberId) throws javax.ejb.CreateException, java.rmi.RemoteException, javax.naming.NamingException
Maps to a corresponding ejbCreate method in the home interface of the EJB
anStoreEntityId
- java.lang.Integer The store entity the current pending order is part ofanOrderId
- java.lang.Long The order identifier of the current pending orderanMemberId
- java.lang.Long The customer of the orderjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionMethod Detail |
public void commitCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Update(flush) data to the EJBObject (persistent storage).
commitCopyHelper
in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByMember(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the current pending order records for specified customer.
The SQL query used to fetch all the required rows from the
CPENDORDER table is:
SELECT * FROM CPENDORDER T1 WHERE T1.MEMBER_ID = ?
anMemberId
- java.lang.Long The customer of the current pending ordersjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByMemberAndStore(java.lang.Long anMemberId, java.lang.Integer anStoreEntityId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the current pending order records for specified customer and store.
The SQL query used to fetch all the required rows from the
CPENDORDER table is:
SELECT * FROM CPENDORDER T1 WHERE T1.MEMBER_ID = ? AND T1.STOREENT_ID = ?
anMemberId
- java.lang.Long The customer of the current pending ordersanStoreEntityId
- java.lang.Integer The store the orders are part ofjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByMemberForUpdate(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the current pending order records for specified customer.
The SQL query used to fetch all the required rows from the
CPENDORDER table is:
SELECT * FROM CPENDORDER T1 WHERE T1.MEMBER_ID = ? for update
anMemberId
- java.lang.Long The customer of the current pending ordersjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getField1() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CPENDORDER.FIELD1 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
getField1
in interface CurrentPendingOrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getField1InEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CPENDORDER.FIELD1 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getField2() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CPENDORDER.FIELD2 column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
Customizable.
getField2
in interface CurrentPendingOrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getMemberId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CPENDORDER.MEMBER_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the customer of the order.
getMemberId
in interface CurrentPendingOrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Long getMemberIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CPENDORDER.MEMBER_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the customer of the order.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getOrderId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CPENDORDER.ORDERS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the order.
getOrderId
in interface CurrentPendingOrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Long getOrderIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CPENDORDER.ORDERS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the order.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getStoreEntityId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CPENDORDER.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the store from which the customer placed the order.
getStoreEntityId
in interface CurrentPendingOrderAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getStoreEntityIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CPENDORDER.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the store from which the customer placed the order.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic void refreshCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Load data from the EJBObject.
refreshCopyHelper
in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic void setField1(java.lang.Integer aField1)
This method provides access to the CPENDORDER.FIELD1 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
aField1
- java.lang.Integerpublic void setField1(java.lang.String aField1)
This method provides access to the CPENDORDER.FIELD1 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
setField1
in interface CurrentPendingOrderAccessBeanData
aField1
- java.lang.Stringpublic void setField2(java.lang.String aField2)
This method provides access to the CPENDORDER.FIELD2 column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
Customizable.
setField2
in interface CurrentPendingOrderAccessBeanData
aField2
- java.lang.Stringpublic void setInitKey_memberId(java.lang.String aInitKey_memberId)
Set the primary key for this object
aInitKey_memberId
- java.lang.Stringpublic void setInitKey_orderId(java.lang.String aInitKey_orderId)
Set the primary key for this object
aInitKey_orderId
- java.lang.Stringpublic void setMemberId(java.lang.Long aMemberId)
This method provides access to the CPENDORDER.MEMBER_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the customer of the order.
aMemberId
- java.lang.Longpublic void setMemberId(java.lang.String aMemberId)
This method provides access to the CPENDORDER.MEMBER_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the customer of the order.
setMemberId
in interface CurrentPendingOrderAccessBeanData
aMemberId
- java.lang.Stringpublic void setStoreEntityId(java.lang.Integer aStoreEntityId)
This method provides access to the CPENDORDER.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the store from which the customer placed the order.
aStoreEntityId
- java.lang.Integerpublic void setStoreEntityId(java.lang.String aStoreEntityId)
This method provides access to the CPENDORDER.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The ID that uniquely identifies the store from which the customer placed the order.
setStoreEntityId
in interface CurrentPendingOrderAccessBeanData
aStoreEntityId
- java.lang.String
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |