|
||||||||
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.PAttributeDescAccessBean
This bean provides access to the PATTRDESC table.
The following is a description of this table:
This table contains personalization Attribute descriptions.
Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef |
Constructor Summary | |
PAttributeDescAccessBean()
Default constructor. |
|
PAttributeDescAccessBean(javax.ejb.EJBObject aEJBObject)
Creates an access bean for the specified EJB. |
|
PAttributeDescAccessBean(java.lang.Long aPAttributeId,
java.lang.Integer aLanguageId)
Creates an access bean with the specified attributes. |
Method Summary | |
void |
commitCopyHelper()
Update(flush) data to the EJBObject (persistent storage). |
java.util.Enumeration |
findByAttributeAndLang(java.lang.Long aPAttributeId,
java.lang.Integer aLanguageId)
Retrieves the PAttributeDescAccessBeans that match the specified PAttribute and Language. |
java.util.Enumeration |
findByLang(java.lang.Integer aLanguageId)
Retrieves the PAttributeDescAccessBeans that match the specified Language. |
java.lang.String |
getLangId()
This method provides access to the PATTRDESC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getLangIdInEJBType()
This method provides access to the PATTRDESC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getPattributeId()
This method provides access to the PATTRDESC.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getPattributeIdInEJBType()
This method provides access to the PATTRDESC.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String |
getShortDesc()
This method provides access to the PATTRDESC.DESCRIPTION column of DB2 type VARCHAR(1024) NULL. |
void |
refreshCopyHelper()
Load data from the EJBObject. |
void |
setInitKey_langId(java.lang.String aInitKey_langId)
Set the primary key for this object |
void |
setInitKey_pattributeId(java.lang.String aInitKey_pattributeId)
Set the primary key for this object |
void |
setLangId(java.lang.Integer aLangId)
This method provides access to the PATTRDESC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL. |
void |
setLangId(java.lang.String aLangId)
This method provides access to the PATTRDESC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL. |
void |
setPattributeId(java.lang.Long aPattributeId)
This method provides access to the PATTRDESC.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL. |
void |
setPattributeId(java.lang.String aPattributeId)
This method provides access to the PATTRDESC.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL. |
void |
setShortDesc(java.lang.String aShortDesc)
This method provides access to the PATTRDESC.DESCRIPTION column of DB2 type VARCHAR(1024) 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 PAttributeDescAccessBean()
Default constructor. Maps to findByPrimaryKey.
public PAttributeDescAccessBean(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 PAttributeDescAccessBean(java.lang.Long aPAttributeId, java.lang.Integer aLanguageId) throws javax.ejb.CreateException, java.rmi.RemoteException, javax.naming.NamingException
Creates an access bean with the specified attributes.
aPAttributeId
- the PAttribute IDaLanguageId
- the Language 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 findByAttributeAndLang(java.lang.Long aPAttributeId, java.lang.Integer aLanguageId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the PAttributeDescAccessBeans that match the specified PAttribute and Language.
The SQL query used to fetch all the required row from the
PATTRDESC table is:
SELECT * FROM PATTRDESC T1 WHERE
T1.PATTRIBUTE_ID = ? AND T1.LANGUAGE_ID = ?
aPAttributeId
- the PAttribute IDaLanguageId
- the Language 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 findByLang(java.lang.Integer aLanguageId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the PAttributeDescAccessBeans that match the specified Language.
The SQL query used to fetch all the required row from the
PATTRDESC table is:
SELECT * FROM PATTRDESC T1 WHERE
T1.LANGUAGE_ID = ?
aLanguageId
- the Language 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 getLangId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the PATTRDESC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Language this description pertains to. For a list of language components, see the LANGUAGE table.
getLangId
in interface PAttributeDescAccessBeanData
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 getLangIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the PATTRDESC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Language this description pertains to. For a list of language components, see the LANGUAGE table.
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 getPattributeId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the PATTRDESC.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The Identifier of the personalization Attribute.
getPattributeId
in interface PAttributeDescAccessBeanData
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 getPattributeIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the PATTRDESC.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The Identifier of the personalization 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 getShortDesc() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the PATTRDESC.DESCRIPTION column of DB2 type VARCHAR(1024) NULL.
The following is a description of this column:
A brief description of the personalization Attribute.
getShortDesc
in interface PAttributeDescAccessBeanData
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_langId(java.lang.String aInitKey_langId)
Set the primary key for this object
aInitKey_langId
- java.lang.Stringpublic void setInitKey_pattributeId(java.lang.String aInitKey_pattributeId)
Set the primary key for this object
aInitKey_pattributeId
- java.lang.Stringpublic void setLangId(java.lang.Integer aLangId)
This method provides access to the PATTRDESC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Language this description pertains to. For a list of language components, see the LANGUAGE table.
aLangId
- java.lang.Integerpublic void setLangId(java.lang.String aLangId)
This method provides access to the PATTRDESC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Language this description pertains to. For a list of language components, see the LANGUAGE table.
setLangId
in interface PAttributeDescAccessBeanData
aLangId
- java.lang.Stringpublic void setPattributeId(java.lang.Long aPattributeId)
This method provides access to the PATTRDESC.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The Identifier of the personalization Attribute.
aPattributeId
- java.lang.Longpublic void setPattributeId(java.lang.String aPattributeId)
This method provides access to the PATTRDESC.PATTRIBUTE_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The Identifier of the personalization Attribute.
setPattributeId
in interface PAttributeDescAccessBeanData
aPattributeId
- java.lang.Stringpublic void setShortDesc(java.lang.String aShortDesc)
This method provides access to the PATTRDESC.DESCRIPTION column of DB2 type VARCHAR(1024) NULL.
The following is a description of this column:
A brief description of the personalization Attribute.
setShortDesc
in interface PAttributeDescAccessBeanData
aShortDesc
- java.lang.String
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |