java.lang.Objectcom.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
com.ibm.commerce.catalog.objects.CatalogGroupCatalogEntryRelationAccessBean
This table relates CatalogGroups (or Categories) to the CatalogEntries that are inside them. You can also use this table to dictate the navigational flow from CatalogGroups to CatalogEntries. Each relationship is also qualified by a Catalog ID. This access bean corresponds to the database table 'CATGPENREL'.
Constructor Summary | |
CatalogGroupCatalogEntryRelationAccessBean() Default constructor. |
|
CatalogGroupCatalogEntryRelationAccessBean(javax.ejb.EJBObject o) constructor |
|
CatalogGroupCatalogEntryRelationAccessBean(java.lang.Long argCatalogId, java.lang.Long argCatalogGroupId, java.lang.Long argCatalogEntryId) 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). |
protected java.lang.String | defaultJNDIName() |
java.util.Enumeration | findByCatalogEntryId(java.lang.Long aCatalogEntryId) Finds the catalog group - catalog entry relations with the catalog entry ID. |
java.util.Enumeration | findByCatalogEntryIdAndStore(java.lang.Long anCatEntId, java.lang.Integer anStoreId) Finds the record by catalog entry id and store id. |
java.util.Enumeration | findByCatalogGroupId(java.lang.Long aCatalogGroupId) Finds the catalog group - catalog entry with catalog group ID. |
java.lang.String | getCatalogEntryId() This method provides access to the CATGPENREL.CATENTRY_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long | getCatalogEntryIdInEJBType() This method provides access to the CATGPENREL.CATENTRY_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String | getCatalogGroupId() This method provides access to the CATGPENREL.CATGROUP_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long | getCatalogGroupIdInEJBType() This method provides access to the CATGPENREL.CATGROUP_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String | getCatalogId() This method provides access to the CATGPENREL.CATALOG_ID column of DB2 type BIGINT NOT NULL. |
java.lang.Long | getCatalogIdInEJBType() This method provides access to the CATGPENREL.CATALOG_ID column of DB2 type BIGINT NOT NULL. |
java.lang.String | getLastUpdate() This method provides access to the CATGPENREL.LASTUPDATE column of DB2 type TIMESTAMP. |
java.sql.Timestamp | getLastUpdateInEJBType() This method provides access to the CATGPENREL.LASTUPDATE column of DB2 type TIMESTAMP. |
java.lang.String | getRule() This method provides access to the CATGPENREL.RULE column of DB2 type VARCHAR(254). |
java.lang.String | getSequence() This method provides access to the CATGPENREL.SEQUENCE column of DB2 type FLOAT NOT NULL DEFAULT 0. |
java.lang.Double | getSequenceInEJBType() This method provides access to the CATGPENREL.SEQUENCE column of DB2 type FLOAT NOT NULL DEFAULT 0. |
protected void | instantiateEJB() |
protected boolean | instantiateEJBByPrimaryKey() |
void | refreshCopyHelper() Load data from the EJBObject. |
void | setCatalogEntryId(java.lang.Long newValue) This method accesses a non-CMP field |
void | setCatalogEntryId(java.lang.String newValue) This method accesses a non-CMP field |
void | setCatalogGroupId(java.lang.Long newValue) This method accesses a non-CMP field |
void | setCatalogGroupId(java.lang.String newValue) This method accesses a non-CMP field |
void | setCatalogId(java.lang.Long newValue) This method accesses a non-CMP field |
void | setCatalogId(java.lang.String newValue) This method accesses a non-CMP field |
void | setInitKey_catalogEntryId(java.lang.String newValue) Set the primary key for this object |
void | setInitKey_catalogGroupId(java.lang.String newValue) Set the primary key for this object |
void | setInitKey_catalogId(java.lang.String newValue) Set the primary key for this object |
void | setLastUpdate(java.lang.String newValue) This method accesses a non-CMP field |
void | setLastUpdate(java.sql.Timestamp newValue) This method accesses a non-CMP field |
void | setRule(java.lang.String newValue) This method accesses a non-CMP field |
void | setSequence(java.lang.Double newValue) This method accesses a non-CMP field |
void | setSequence(java.lang.String newValue) This method accesses a non-CMP field |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public CatalogGroupCatalogEntryRelationAccessBean()
Default constructor. Maps to findByPrimaryKey.
public CatalogGroupCatalogEntryRelationAccessBean(javax.ejb.EJBObject o) throws java.rmi.RemoteException
public CatalogGroupCatalogEntryRelationAccessBean(java.lang.Long argCatalogId, java.lang.Long argCatalogGroupId, java.lang.Long argCatalogEntryId) 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. Creates an access to the catalog group - catalog entry relation according to the catalog ID, catalog group ID, and catalog entry ID.
Method Detail |
public java.util.Enumeration findByCatalogEntryId(java.lang.Long aCatalogEntryId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Finds the catalog group - catalog entry relations with the catalog entry ID.
SQL:
SELECT CATGROUP_ID, CATALOG_ID, RULE, SEQUENCE, CATENTRY_ID, LASTUPDATE FROM CATGPENREL WHERE CATENTRY_ID = aCatalogEntryId ORDER BY SEQUENCE
public java.util.Enumeration findByCatalogGroupId(java.lang.Long aCatalogGroupId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Finds the catalog group - catalog entry with catalog group ID.
SQL:
SELECT CATGROUP_ID, CATALOG_ID, RULE, SEQUENCE, CATENTRY_ID, LASTUPDATE FROM CATGPENREL WHERE CATGROUP_ID = aCatalogGroupId ORDER BY SEQUENCE
public void setInitKey_catalogEntryId(java.lang.String newValue)
Set the primary key for this object
public void setInitKey_catalogGroupId(java.lang.String newValue)
Set the primary key for this object
public void setInitKey_catalogId(java.lang.String newValue)
Set the primary key for this object
protected java.lang.String defaultJNDIName()
protected void instantiateEJB() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
protected boolean instantiateEJBByPrimaryKey() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.naming.NamingException
public void commitCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Update(flush) data to the EJBObject (persistent storage).
public void refreshCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Load data from the EJBObject.
public java.lang.String getCatalogGroupId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.CATGROUP_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The source CatalogGroup of this relationship.
public java.lang.Long getCatalogGroupIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.CATGROUP_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The source CatalogGroup of this relationship.
public void setCatalogGroupId(java.lang.String newValue)
public void setCatalogGroupId(java.lang.Long newValue)
public java.lang.String getRule() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.RULE column of DB2 type VARCHAR(254).
The following is a description of this column:
Reserved for IBM internal use.
public void setRule(java.lang.String newValue)
public java.lang.String getLastUpdate() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.LASTUPDATE column of DB2 type TIMESTAMP.
The following is a description of this column:
Indicates the last time that this relationship was updated.
public java.sql.Timestamp getLastUpdateInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.LASTUPDATE column of DB2 type TIMESTAMP.
The following is a description of this column:
Indicates the last time that this relationship was updated.
public void setLastUpdate(java.lang.String newValue)
public void setLastUpdate(java.sql.Timestamp newValue)
public java.lang.String getCatalogEntryId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.CATENTRY_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The target CatalogEntry of this relationship.
public java.lang.Long getCatalogEntryIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.CATENTRY_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The target CatalogEntry of this relationship.
public void setCatalogEntryId(java.lang.String newValue)
public void setCatalogEntryId(java.lang.Long newValue)
public java.lang.String getCatalogId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.CATALOG_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The Catalog inside of which this relationship is found.
public java.lang.Long getCatalogIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.CATALOG_ID column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The Catalog inside of which this relationship is found.
public void setCatalogId(java.lang.String newValue)
public void setCatalogId(java.lang.Long newValue)
public java.lang.String getSequence() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.SEQUENCE column of DB2 type FLOAT NOT NULL DEFAULT 0.
The following is a description of this column:
The sequence number that determines the display order of the contents of the CatalogGroup.
public java.lang.Double getSequenceInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATGPENREL.SEQUENCE column of DB2 type FLOAT NOT NULL DEFAULT 0.
The following is a description of this column:
The sequence number that determines the display order of the contents of the CatalogGroup.
public void setSequence(java.lang.String newValue)
public void setSequence(java.lang.Double newValue)
public java.util.Enumeration findByCatalogEntryIdAndStore(java.lang.Long anCatEntId, java.lang.Integer anStoreId) throws javax.naming.NamingException, javax.ejb.FinderException, java.rmi.RemoteException
(C) Copyright IBM Corporation 1996, 2005. All Rights Reserved.