|
||||||||
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.inventory.objects.VendorAccessBean
This bean provides access to the VENDOR table.
The following is a description of this table:
Each row defines a Vendor who has a relationship with a Store, or all the Stores in a StoreGroup, generally to provide inventory.
Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef |
Constructor Summary | |
VendorAccessBean()
Default constructor. |
|
VendorAccessBean(javax.ejb.EJBObject object)
Creates an access bean for the specified EJB |
|
VendorAccessBean(java.lang.Integer StoreentId,
java.lang.String VendorName)
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 |
findByStoreentId(java.lang.Integer StoreentId)
Retrieves information about a vendor with the specified STOREENT_ID The SQL query used to fetch the requested row from the VENDOR table is: SELECT * FROM VENDOR T1 WHERE T1.STOREENT_ID = ? |
java.util.Enumeration |
findByStoreentIdAndVendorName(java.lang.Integer StoreentId,
java.lang.String VendorName)
Retrieves information about a vendor with the specified STOREENT_ID and VENDORNAME The SQL query used to fetch the requested row from the VENDOR table is: SELECT * FROM VENDOR T1 WHERE T1.STOREENT_ID = ? AND T1.VENDORNAME = ? |
boolean |
fulfills(java.lang.Long aFills,
java.lang.String aFills)
IBM internal use only. |
java.lang.String |
getLastupdate()
This method provides access to the VENDOR.LASTUPDATE column of DB2 type TIMESTAMP NULL. |
java.sql.Timestamp |
getLastupdateInEJBType()
This method provides access to the VENDOR.LASTUPDATE column of DB2 type TIMESTAMP NULL. |
java.lang.String |
getMarkForDelete()
This method provides access to the VENDOR.MARKFORDELETE column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getMarkForDeleteInEJBType()
This method provides access to the VENDOR.MARKFORDELETE column of DB2 type INTEGER NOT NULL. |
java.lang.Long |
getOwner()
IBM internal use only. |
java.lang.String |
getStoreentId()
This method provides access to the VENDOR.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getStoreentIdInEJBType()
This method provides access to the VENDOR.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getVendorId()
This method provides access to the VENDOR.VENDOR_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getVendorIdInEJBType()
This method provides access to the VENDOR.VENDOR_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String |
getVendorName()
This method provides access to the VENDOR.VENDORNAME column of DB2 type CHAR(30) NOT NULL. |
void |
refreshCopyHelper()
Load data from the EJBObject. |
void |
setInitKey_vendorId(java.lang.String aInitKey_vendorId)
Set the primary key for this object |
void |
setLastupdate(java.lang.String aLastupdate)
This method provides access to the VENDOR.LASTUPDATE column of DB2 type TIMESTAMP NULL. |
void |
setLastupdate(java.sql.Timestamp aLastupdate)
This method provides access to the VENDOR.LASTUPDATE column of DB2 type TIMESTAMP NULL. |
void |
setMarkForDelete(java.lang.Integer aMarkForDelete)
This method provides access to the VENDOR.MARKFORDELETE column of DB2 type INTEGER NOT NULL. |
void |
setMarkForDelete(java.lang.String aMarkForDelete)
This method provides access to the VENDOR.MARKFORDELETE column of DB2 type INTEGER NOT NULL. |
void |
setStoreentId(java.lang.Integer aStoreentId)
This method provides access to the VENDOR.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
void |
setStoreentId(java.lang.String aStoreentId)
This method provides access to the VENDOR.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
void |
setVendorId(java.lang.Long aVendorId)
This method provides access to the VENDOR.VENDOR_ID column of DB2 type BIGINT NOT NULL. |
void |
setVendorId(java.lang.String aVendorId)
This method provides access to the VENDOR.VENDOR_ID column of DB2 type BIGINT NOT NULL. |
void |
setVendorName(java.lang.String aVendorName)
This method provides access to the VENDOR.VENDORNAME column of DB2 type CHAR(30) 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 VendorAccessBean()
Default constructor. Maps to findByPrimaryKey.
public VendorAccessBean(javax.ejb.EJBObject object) throws java.rmi.RemoteException
Creates an access bean for the specified EJB
object
- - javax.ejb.EJBObjectjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionpublic VendorAccessBean(java.lang.Integer StoreentId, java.lang.String VendorName) 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
StoreentId
- - java.lang.IntegerVendorName
- - java.lang.Stringjavax.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 findByStoreentId(java.lang.Integer StoreentId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves information about a vendor with the specified STOREENT_ID
The SQL query used to fetch the requested row from the
VENDOR table is:
SELECT * FROM VENDOR T1 WHERE T1.STOREENT_ID = ?
StoreentId
- - java.lang.Integerjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStoreentIdAndVendorName(java.lang.Integer StoreentId, java.lang.String VendorName) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves information about a vendor with the specified STOREENT_ID and VENDORNAME
The SQL query used to fetch the requested row from the
VENDOR table is:
SELECT * FROM VENDOR T1 WHERE T1.STOREENT_ID = ? AND T1.VENDORNAME = ?
StoreentId
- - java.lang.IntegerVendorName
- - java.lang.Stringjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic boolean fulfills(java.lang.Long aFills, java.lang.String aFills) throws java.rmi.RemoteException, java.lang.Exception, javax.ejb.FinderException, javax.naming.NamingException
IBM internal use only.
aFills
- java.lang.LongaFills
- java.lang.Stringjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjava.lang.Exception
- The java.lang.Exception exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getLastupdate() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the VENDOR.LASTUPDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this row was most recently updated.
getLastupdate
in interface VendorAccessBeanData
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 getLastupdateInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the VENDOR.LASTUPDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this row was most recently updated.
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 getMarkForDelete() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the VENDOR.MARKFORDELETE column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Indicates if this Vendor has been marked for deletion:
0 = No.
1 = Yes, this Vendor and its associated values may be deleted from the system.
getMarkForDelete
in interface VendorAccessBeanData
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 getMarkForDeleteInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the VENDOR.MARKFORDELETE column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Indicates if this Vendor has been marked for deletion:
0 = No.
1 = Yes, this Vendor and its associated values may be deleted from the system.
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 getOwner() throws java.lang.Exception, java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
IBM internal use only.
java.lang.Exception
- The java.lang.Exception exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getStoreentId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the VENDOR.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The Vendor has a relationship with this Store, or all the Stores in this StoreGroup.
getStoreentId
in interface VendorAccessBeanData
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 getStoreentIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the VENDOR.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The Vendor has a relationship with this Store, or all the Stores in this StoreGroup.
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 getVendorId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the VENDOR.VENDOR_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique identifier.
getVendorId
in interface VendorAccessBeanData
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 getVendorIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the VENDOR.VENDOR_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique identifier.
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 getVendorName() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the VENDOR.VENDORNAME column of DB2 type CHAR(30) NOT NULL.
The following is a description of this column:
Uniquely identifies the Vendor for this StoreEntity.
getVendorName
in interface VendorAccessBeanData
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_vendorId(java.lang.String aInitKey_vendorId)
Set the primary key for this object
aInitKey_vendorId
- java.lang.Stringpublic void setLastupdate(java.lang.String aLastupdate)
This method provides access to the VENDOR.LASTUPDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this row was most recently updated.
setLastupdate
in interface VendorAccessBeanData
aLastupdate
- java.lang.Stringpublic void setLastupdate(java.sql.Timestamp aLastupdate)
This method provides access to the VENDOR.LASTUPDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this row was most recently updated.
aLastupdate
- java.sql.Timestamppublic void setMarkForDelete(java.lang.Integer aMarkForDelete)
This method provides access to the VENDOR.MARKFORDELETE column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Indicates if this Vendor has been marked for deletion:
0 = No.
1 = Yes, this Vendor and its associated values may be deleted from the system.
aMarkForDelete
- java.lang.Integerpublic void setMarkForDelete(java.lang.String aMarkForDelete)
This method provides access to the VENDOR.MARKFORDELETE column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Indicates if this Vendor has been marked for deletion:
0 = No.
1 = Yes, this Vendor and its associated values may be deleted from the system.
setMarkForDelete
in interface VendorAccessBeanData
aMarkForDelete
- java.lang.Stringpublic void setStoreentId(java.lang.Integer aStoreentId)
This method provides access to the VENDOR.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The Vendor has a relationship with this Store, or all the Stores in this StoreGroup.
aStoreentId
- java.lang.Integerpublic void setStoreentId(java.lang.String aStoreentId)
This method provides access to the VENDOR.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The Vendor has a relationship with this Store, or all the Stores in this StoreGroup.
setStoreentId
in interface VendorAccessBeanData
aStoreentId
- java.lang.Stringpublic void setVendorId(java.lang.Long aVendorId)
This method provides access to the VENDOR.VENDOR_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique identifier.
aVendorId
- java.lang.Longpublic void setVendorId(java.lang.String aVendorId)
This method provides access to the VENDOR.VENDOR_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
Generated unique identifier.
setVendorId
in interface VendorAccessBeanData
aVendorId
- java.lang.Stringpublic void setVendorName(java.lang.String aVendorName)
This method provides access to the VENDOR.VENDORNAME column of DB2 type CHAR(30) NOT NULL.
The following is a description of this column:
Uniquely identifies the Vendor for this StoreEntity.
setVendorName
in interface VendorAccessBeanData
aVendorName
- java.lang.String
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |