|
||||||||
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.utf.objects.PAttrProdAccessBean
This bean provides access to the PATTRPROD table.
The following is a description of this table:
The relationship table between the PATTRIBUTE and CATENTRY tables.
Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef |
Constructor Summary | |
PAttrProdAccessBean()
Default constructor. |
|
PAttrProdAccessBean(javax.ejb.EJBObject aEJBObject)
Creates an access bean for the specified EJB. |
|
PAttrProdAccessBean(java.lang.Long aPAttributeId,
java.lang.Long aCatalogEntryId)
Creates an access bean with the specified attributes. |
Method Summary | |
void |
commitCopyHelper()
Update(flush) data to the EJBObject (persistent storage). |
java.util.Enumeration |
findByAttributeId(java.lang.Long aPAttributeId)
Retrieves the PAttrProdAccessBeans that match the specified Language. |
java.util.Enumeration |
findByCatentryId(java.lang.Long aCatalogEntryId)
Retrieves the PAttrProdAccessBeans that match the specified Language. |
java.lang.String |
getAttributeId()
This method provides access to the PATTRPROD.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getAttributeIdInEJBType()
This method provides access to the PATTRPROD.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String |
getCatentryId()
This method provides access to the PATTRPROD.CATENTRY_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getCatentryIdInEJBType()
This method provides access to the PATTRPROD.CATENTRY_ID column of DB2 type BIGINT NOT NULL. |
void |
refreshCopyHelper()
Load data from the EJBObject. |
void |
setAttributeId(java.lang.Long aAttributeId)
This method provides access to the PATTRPROD.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL. |
void |
setAttributeId(java.lang.String aAttributeId)
This method provides access to the PATTRPROD.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL. |
void |
setCatentryId(java.lang.Long aCatentryId)
This method provides access to the PATTRPROD.CATENTRY_ID column of DB2 type BIGINT NOT NULL. |
void |
setCatentryId(java.lang.String aCatentryId)
This method provides access to the PATTRPROD.CATENTRY_ID column of DB2 type BIGINT NOT NULL. |
void |
setInitKey_attributeId(java.lang.Long aInitKey_attributeId)
Set the primary key for this object |
void |
setInitKey_catentryId(java.lang.Long aInitKey_catentryId)
Set the primary key for this object |
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 PAttrProdAccessBean()
Default constructor. Maps to findByPrimaryKey.
public PAttrProdAccessBean(javax.ejb.EJBObject aEJBObject) throws java.rmi.RemoteException
Creates an access bean for the specified EJB.
aEJBObject
- The EJB Object used for the access bean construction.java.rmi.RemoteException
- The java.rmi.RemoteException exceptionpublic PAttrProdAccessBean(java.lang.Long aPAttributeId, java.lang.Long aCatalogEntryId) throws javax.ejb.CreateException, java.rmi.RemoteException, javax.naming.NamingException
Creates an access bean with the specified attributes.
aPAttributeId
- the PAttribute IDaCatalogEntryId
- the CatalogEntry 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 findByAttributeId(java.lang.Long aPAttributeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the PAttrProdAccessBeans that match the specified Language.
The SQL query used to fetch all the required row from the
PATTRPROD table is:
SELECT * FROM PATTRPROD T1 WHERE
T1.PATTRIBUTE_ID = ?
aPAttributeId
- the PAttribute IDjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByCatentryId(java.lang.Long aCatalogEntryId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the PAttrProdAccessBeans that match the specified Language.
The SQL query used to fetch all the required row from the
PATTRPROD table is:
SELECT * FROM PATTRPROD T1 WHERE
T1.CATENTRY_ID = ?
aCatalogEntryId
- the CatalogEntry 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 getAttributeId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the PATTRPROD.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The internal reference number of the P Attribute.
getAttributeId
in interface PAttrProdAccessBeanData
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 getAttributeIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the PATTRPROD.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The internal reference number of the P Attribute.
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 getCatentryId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the PATTRPROD.CATENTRY_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The internal reference number of the CatalogEntry.
getCatentryId
in interface PAttrProdAccessBeanData
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 getCatentryIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the PATTRPROD.CATENTRY_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The internal reference number of the CatalogEntry.
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 setAttributeId(java.lang.Long aAttributeId)
This method provides access to the PATTRPROD.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The internal reference number of the P Attribute.
aAttributeId
- java.lang.Longpublic void setAttributeId(java.lang.String aAttributeId)
This method provides access to the PATTRPROD.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The internal reference number of the P Attribute.
setAttributeId
in interface PAttrProdAccessBeanData
aAttributeId
- java.lang.Stringpublic void setCatentryId(java.lang.Long aCatentryId)
This method provides access to the PATTRPROD.CATENTRY_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The internal reference number of the CatalogEntry.
aCatentryId
- java.lang.Longpublic void setCatentryId(java.lang.String aCatentryId)
This method provides access to the PATTRPROD.CATENTRY_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The internal reference number of the CatalogEntry.
setCatentryId
in interface PAttrProdAccessBeanData
aCatentryId
- java.lang.Stringpublic void setInitKey_attributeId(java.lang.Long aInitKey_attributeId)
Set the primary key for this object
aInitKey_attributeId
- java.lang.Longpublic void setInitKey_catentryId(java.lang.Long aInitKey_catentryId)
Set the primary key for this object
aInitKey_catentryId
- java.lang.Long
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |