|
||||||||
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.SchedulerOrderAccessBean
This bean provides access to the SCHORDERS table.
The following is a description of this table:
This table contains the entries for scheduled orders.
Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef |
Constructor Summary | |
SchedulerOrderAccessBean()
Default constructor. |
|
SchedulerOrderAccessBean(javax.ejb.EJBObject object)
Creates an access bean for the specified EJB |
|
SchedulerOrderAccessBean(java.lang.Long anJobRefNum,
java.lang.Long anOrderId)
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 |
findByMemberId(java.lang.Long anMemberId)
Retrieves the SchedulerOrderAccessBean representing the scheduler job and order id relationship created on behalf of the specified member. The SQL query used to fetch the requested row from the SCHORDERS table is: SELECT * FROM SCHORDERS T1 WHERE (T1.JOB_RN = ANY (SELECT SCCJOBREFNUM FROM SCHCONFIG WHERE MEMBER_ID = ?)) |
java.util.Enumeration |
findByOrder(java.lang.Long anOrder)
Retrieves the SchedulerOrderAccessBean representing the scheduler job and order id relationship corresponding to the specified order. The SQL query used to fetch the requested row from the SCHORDERS table is: SELECT * FROM SCHORDERS T1 WHERE (T1.ORDERS_ID = ?) |
java.lang.String |
getJobReferenceNumber()
This method provides access to the SCHORDERS.JOB_RN column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getJobReferenceNumberInEJBType()
This method provides access to the SCHORDERS.JOB_RN column of DB2 type BIGINT NOT NULL. |
java.lang.String |
getOrderId()
This method provides access to the SCHORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getOrderIdInEJBType()
This method provides access to the SCHORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL. |
void |
refreshCopyHelper()
Load data from the EJBObject. |
void |
setInitKey_jobReferenceNumber(java.lang.String aInitKey_jobReferenceNumber)
Set the primary key for this object |
void |
setOrderId(java.lang.Long aOrderId)
This method provides access to the SCHORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL. |
void |
setOrderId(java.lang.String aOrderId)
This method provides access to the SCHORDERS.ORDERS_ID column of DB2 type BIGINT 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 SchedulerOrderAccessBean()
Default constructor. Maps to findByPrimaryKey.
public SchedulerOrderAccessBean(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 SchedulerOrderAccessBean(java.lang.Long anJobRefNum, java.lang.Long anOrderId) throws javax.ejb.CreateException, java.rmi.RemoteException, javax.naming.NamingException
Maps to a corresponding ejbCreate method in the home interface of the EJB
anJobRefNum
- java.lang.Long Scheduler job reference numberanOrderId
- java.lang.Long Scheduled order identifierjavax.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 findByMemberId(java.lang.Long anMemberId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the SchedulerOrderAccessBean representing the scheduler job and order id relationship
created on behalf of the specified member.
The SQL query used to fetch the requested row from the
SCHORDERS table is:
SELECT * FROM SCHORDERS T1 WHERE (T1.JOB_RN = ANY (SELECT SCCJOBREFNUM FROM SCHCONFIG WHERE MEMBER_ID = ?))
anMemberId
- java.lang.Long Member identifierjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByOrder(java.lang.Long anOrder) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the SchedulerOrderAccessBean representing the scheduler job and order id relationship
corresponding to the specified order.
The SQL query used to fetch the requested row from the
SCHORDERS table is:
SELECT * FROM SCHORDERS T1 WHERE (T1.ORDERS_ID = ?)
anOrder
- java.lang.Long Order identifierjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getJobReferenceNumber() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SCHORDERS.JOB_RN column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Scheduled job reference number.
getJobReferenceNumber
in interface SchedulerOrderAccessBeanData
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 getJobReferenceNumberInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SCHORDERS.JOB_RN column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Scheduled job reference number.
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 SCHORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Scheduled order ID.
getOrderId
in interface SchedulerOrderAccessBeanData
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 SCHORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Scheduled order ID.
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 setInitKey_jobReferenceNumber(java.lang.String aInitKey_jobReferenceNumber)
Set the primary key for this object
aInitKey_jobReferenceNumber
- java.lang.Stringpublic void setOrderId(java.lang.Long aOrderId)
This method provides access to the SCHORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Scheduled order ID.
aOrderId
- java.lang.Longpublic void setOrderId(java.lang.String aOrderId)
This method provides access to the SCHORDERS.ORDERS_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Scheduled order ID.
setOrderId
in interface SchedulerOrderAccessBeanData
aOrderId
- java.lang.String
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |