|
||||||||
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.ordermanagement.objects.RMAAuthorizationLogAccessBean
This bean provides access to the RMAAUTHLOG table.
The following is a description of this table:
This table is a log of when each return merchandise authorization (RMA) was authorized. A single RMA may appear multiple times if changes were made and the RMA was re-authorized.
Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef |
Constructor Summary | |
RMAAuthorizationLogAccessBean()
Default constructor. |
|
RMAAuthorizationLogAccessBean(javax.ejb.EJBObject ejbObject)
Maps to a corresponding ejbCreate method in the home interface of the EJB |
|
RMAAuthorizationLogAccessBean(java.sql.Timestamp rmaAuthorizationNoticeDate,
java.lang.Long rmaID)
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 |
findByRmaId(java.lang.Long rmaID)
Retrieves all the RMA authorization log entries for a RMA. The SQL query used to fetch the requested row from the RMAAUTHLOG table is: SELECT * FROM RMAAUTHLOG T1 WHERE T1.RMA_ID = ? |
java.lang.String |
getAuthorizationNoticeDate()
This method provides access to the RMAAUTHLOG.AUTHNOTICEDATE column of DB2 type TIMESTAMP NOT NULL. |
java.sql.Timestamp |
getAuthorizationNoticeDateInEJBType()
This method provides access to the RMAAUTHLOG.AUTHNOTICEDATE column of DB2 type TIMESTAMP NOT NULL. |
java.lang.String |
getRmaAuthorizationLogId()
This method provides access to the RMAAUTHLOG.RMAAUTHLOG_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getRmaAuthorizationLogIdInEJBType()
This method provides access to the RMAAUTHLOG.RMAAUTHLOG_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String |
getRmaId()
This method provides access to the RMAAUTHLOG.RMA_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getRmaIdInEJBType()
This method provides access to the RMAAUTHLOG.RMA_ID column of DB2 type BIGINT NOT NULL. |
void |
refreshCopyHelper()
Load data from the EJBObject. |
void |
setAuthorizationNoticeDate(java.lang.String aAuthorizationNoticeDate)
This method provides access to the RMAAUTHLOG.AUTHNOTICEDATE column of DB2 type TIMESTAMP NOT NULL. |
void |
setAuthorizationNoticeDate(java.sql.Timestamp aAuthorizationNoticeDate)
This method provides access to the RMAAUTHLOG.AUTHNOTICEDATE column of DB2 type TIMESTAMP NOT NULL. |
void |
setInitKey_rmaAuthorizationLogId(java.lang.String aInitKey_rmaAuthorizationLogId)
Set the primary key for this object |
void |
setRmaAuthorizationLogId(java.lang.Long aRmaAuthorizationLogId)
This method provides access to the RMAAUTHLOG.RMAAUTHLOG_ID column of DB2 type BIGINT NOT NULL. |
void |
setRmaAuthorizationLogId(java.lang.String aRmaAuthorizationLogId)
This method provides access to the RMAAUTHLOG.RMAAUTHLOG_ID column of DB2 type BIGINT NOT NULL. |
void |
setRmaId(java.lang.Long aRmaId)
This method provides access to the RMAAUTHLOG.RMA_ID column of DB2 type BIGINT NOT NULL. |
void |
setRmaId(java.lang.String aRmaId)
This method provides access to the RMAAUTHLOG.RMA_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 RMAAuthorizationLogAccessBean()
Default constructor. Maps to findByPrimaryKey.
public RMAAuthorizationLogAccessBean(javax.ejb.EJBObject ejbObject) throws java.rmi.RemoteException
Maps to a corresponding ejbCreate method in the home interface of the EJB
ejbObject
- javax.ejb.EJBObjectjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionpublic RMAAuthorizationLogAccessBean(java.sql.Timestamp rmaAuthorizationNoticeDate, java.lang.Long rmaID) throws javax.naming.NamingException, javax.ejb.CreateException, java.rmi.RemoteException, javax.ejb.FinderException
Maps to a corresponding ejbCreate method in the home interface of the EJB
rmaAuthorizationNoticeDate
- java.sql.Timestamp RMA Authorization Notice DatermaID
- java.lang.Long RMA IDjavax.naming.NamingException
- The javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException 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 findByRmaId(java.lang.Long rmaID) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves all the RMA authorization log entries for a RMA.
The SQL query used to fetch the requested row from the
RMAAUTHLOG table is:
SELECT *
FROM RMAAUTHLOG T1
WHERE T1.RMA_ID = ?
rmaID
- java.lang.Long RMA IDjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getAuthorizationNoticeDate() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the RMAAUTHLOG.AUTHNOTICEDATE column of DB2 type TIMESTAMP NOT NULL.
The following is a description of this column:
The date on which an RMA was authorized or re-authorized.
getAuthorizationNoticeDate
in interface RMAAuthorizationLogAccessBeanData
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.sql.Timestamp getAuthorizationNoticeDateInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the RMAAUTHLOG.AUTHNOTICEDATE column of DB2 type TIMESTAMP NOT NULL.
The following is a description of this column:
The date on which an RMA was authorized or re-authorized.
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 getRmaAuthorizationLogId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the RMAAUTHLOG.RMAAUTHLOG_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique key.
getRmaAuthorizationLogId
in interface RMAAuthorizationLogAccessBeanData
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 getRmaAuthorizationLogIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the RMAAUTHLOG.RMAAUTHLOG_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique key.
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 getRmaId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the RMAAUTHLOG.RMA_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The RMA which was authorized.
getRmaId
in interface RMAAuthorizationLogAccessBeanData
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 getRmaIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the RMAAUTHLOG.RMA_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The RMA which was authorized.
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 setAuthorizationNoticeDate(java.lang.String aAuthorizationNoticeDate)
This method provides access to the RMAAUTHLOG.AUTHNOTICEDATE column of DB2 type TIMESTAMP NOT NULL.
The following is a description of this column:
The date on which an RMA was authorized or re-authorized.
setAuthorizationNoticeDate
in interface RMAAuthorizationLogAccessBeanData
aAuthorizationNoticeDate
- java.lang.Stringpublic void setAuthorizationNoticeDate(java.sql.Timestamp aAuthorizationNoticeDate)
This method provides access to the RMAAUTHLOG.AUTHNOTICEDATE column of DB2 type TIMESTAMP NOT NULL.
The following is a description of this column:
The date on which an RMA was authorized or re-authorized.
aAuthorizationNoticeDate
- java.sql.Timestamppublic void setInitKey_rmaAuthorizationLogId(java.lang.String aInitKey_rmaAuthorizationLogId)
Set the primary key for this object
aInitKey_rmaAuthorizationLogId
- java.lang.Stringpublic void setRmaAuthorizationLogId(java.lang.Long aRmaAuthorizationLogId)
This method provides access to the RMAAUTHLOG.RMAAUTHLOG_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique key.
aRmaAuthorizationLogId
- java.lang.Longpublic void setRmaAuthorizationLogId(java.lang.String aRmaAuthorizationLogId)
This method provides access to the RMAAUTHLOG.RMAAUTHLOG_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique key.
setRmaAuthorizationLogId
in interface RMAAuthorizationLogAccessBeanData
aRmaAuthorizationLogId
- java.lang.Stringpublic void setRmaId(java.lang.Long aRmaId)
This method provides access to the RMAAUTHLOG.RMA_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The RMA which was authorized.
aRmaId
- java.lang.Longpublic void setRmaId(java.lang.String aRmaId)
This method provides access to the RMAAUTHLOG.RMA_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The RMA which was authorized.
setRmaId
in interface RMAAuthorizationLogAccessBeanData
aRmaId
- java.lang.String
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |