java.lang.Objectcom.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
com.ibm.commerce.catalog.objects.CatalogEntryRelationAccessBean
This table holds containment relationships between CatalogEntries. Examples of these relationships are Product-Item, Bundle, and Package relationships. This table should not be used for peer-to-peer catalog relationships, such as cross-sells. This access bean corresponds to the database table 'CATENTREL'.
Constructor Summary | |
CatalogEntryRelationAccessBean() Zero argument constructor used to initialize the access bean. |
|
CatalogEntryRelationAccessBean(javax.ejb.EJBObject o) constructor |
|
CatalogEntryRelationAccessBean(java.lang.Long newCatalogEntryIdParent, java.lang.Long newCatalogEntryIdChild, java.lang.String newCatalogEntryType) 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 | findByCatalogEntryChildId(java.lang.Long childId) This method returns an Enumeration of CatalogEntryRelationAccessBean with the given child Catalog Entry reference number. |
java.util.Enumeration | findByCatalogEntryChildIdAndStore(java.lang.Long childId, java.lang.Integer anStoreId) Finds the record by child catalog entry id and store id. |
java.util.Enumeration | findByCatalogEntryParentId(java.lang.Long parentId) This method returns an Enumeration of CatalogEntryRelationAccessBean with the given parent Catalog Entry reference number. |
java.lang.String | getCatalogEntryIdChild() This method provides access to the CATENTREL.CATENTRY_ID_CHILD column of DB2 type BIGINT NOT NULL. |
java.lang.Long | getCatalogEntryIdChildInEJBType() This method provides access to the CATENTREL.CATENTRY_ID_CHILD column of DB2 type BIGINT NOT NULL. |
java.lang.String | getCatalogEntryIdParent() This method provides access to the CATENTREL.CATENTRY_ID_PARENT column of DB2 type BIGINT NOT NULL. |
java.lang.Long | getCatalogEntryIdParentInEJBType() This method provides access to the CATENTREL.CATENTRY_ID_PARENT column of DB2 type BIGINT NOT NULL. |
java.lang.String | getCatalogRelationTypeId() This method provides access to the CATENTREL.CATRELTYPE_ID column of DB2 type CHAR(32) NOT NULL. |
java.lang.String | getField1() This method provides access to the CATENTREL.FIELD1 column of DB2 type VARCHAR(254). |
java.lang.String | getField2() This method provides access to the CATENTREL.FIELD2 column of DB2 type INTEGER. |
java.lang.Integer | getField2InEJBType() This method provides access to the CATENTREL.FIELD2 column of DB2 type INTEGER. |
java.lang.String | getField3() This method provides access to the CATENTREL.FIELD3 column of DB2 type DECIMAL(20 5). |
java.math.BigDecimal | getField3InEJBType() This method provides access to the CATENTREL.FIELD3 column of DB2 type DECIMAL(20 5). |
java.lang.String | getGroupName() This method provides access to the CATENTREL.GROUPNAME column of DB2 type VARCHAR(254). |
java.lang.String | getOID() This method provides access to the CATENTREL.OID column of DB2 type VARCHAR(64). |
java.lang.String | getQuantity() This method provides access to the CATENTREL.QUANTITY column of DB2 type FLOAT. |
java.lang.Double | getQuantityInEJBType() This method provides access to the CATENTREL.QUANTITY column of DB2 type FLOAT. |
java.lang.String | getSequence() This method provides access to the CATENTREL.SEQUENCE column of DB2 type FLOAT NOT NULL DEFAULT 0. |
java.lang.Double | getSequenceInEJBType() This method provides access to the CATENTREL.SEQUENCE column of DB2 type FLOAT NOT NULL DEFAULT 0. |
protected void | instantiateEJB() |
protected boolean | instantiateEJBByPrimaryKey() |
void | refreshCopyHelper() Load data from the EJBObject. |
void | setCatalogEntryIdChild(java.lang.Long newValue) This method accesses a non-CMP field |
void | setCatalogEntryIdChild(java.lang.String newValue) This method accesses a non-CMP field |
void | setCatalogEntryIdParent(java.lang.Long newValue) This method accesses a non-CMP field |
void | setCatalogEntryIdParent(java.lang.String newValue) This method accesses a non-CMP field |
void | setCatalogRelationTypeId(java.lang.String newValue) This method accesses a non-CMP field |
void | setField1(java.lang.String newValue) This method accesses a non-CMP field |
void | setField2(java.lang.Integer newValue) This method accesses a non-CMP field |
void | setField2(java.lang.String newValue) This method accesses a non-CMP field |
void | setField3(java.math.BigDecimal newValue) This method accesses a non-CMP field |
void | setField3(java.lang.String newValue) This method accesses a non-CMP field |
void | setGroupName(java.lang.String newValue) This method accesses a non-CMP field |
void | setInitKey_catalogEntryIdChild(java.lang.String newValue) Set the primary key for this object |
void | setInitKey_catalogEntryIdParent(java.lang.String newValue) Set the primary key for this object |
void | setInitKey_catalogRelationTypeId(java.lang.String newValue) Set the primary key for this object |
void | setOID(java.lang.String newValue) This method accesses a non-CMP field |
void | setQuantity(java.lang.Double newValue) This method accesses a non-CMP field |
void | setQuantity(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 CatalogEntryRelationAccessBean()
public CatalogEntryRelationAccessBean(javax.ejb.EJBObject o) throws java.rmi.RemoteException
public CatalogEntryRelationAccessBean(java.lang.Long newCatalogEntryIdParent, java.lang.Long newCatalogEntryIdChild, java.lang.String newCatalogEntryType) 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
Method Detail |
public java.util.Enumeration findByCatalogEntryChildId(java.lang.Long childId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
This method returns an Enumeration of CatalogEntryRelationAccessBean with the given child Catalog Entry reference number.
SQL:
SELECT * FROM CATENTREL WHERE CATENTREL.CATENTRY_ID_CHILD = childId
public java.util.Enumeration findByCatalogEntryParentId(java.lang.Long parentId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
This method returns an Enumeration of CatalogEntryRelationAccessBean with the given parent Catalog Entry reference number.
SQL:
SELECT * FROM CATENTREL WHERE CATENTREL.CATENTRY_ID_PARENT = parentId
public void setInitKey_catalogEntryIdChild(java.lang.String newValue)
Set the primary key for this object
public void setInitKey_catalogEntryIdParent(java.lang.String newValue)
Set the primary key for this object
public void setInitKey_catalogRelationTypeId(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 getQuantity() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.QUANTITY column of DB2 type FLOAT.
The following is a description of this column:
A quantity that can be associated with the relationship.
public java.lang.Double getQuantityInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.QUANTITY column of DB2 type FLOAT.
The following is a description of this column:
A quantity that can be associated with the relationship.
public void setQuantity(java.lang.String newValue)
public void setQuantity(java.lang.Double newValue)
public java.lang.String getOID() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.OID column of DB2 type VARCHAR(64).
The following is a description of this column:
Reserved for IBM internal use.
public void setOID(java.lang.String newValue)
public java.lang.String getCatalogEntryIdParent() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.CATENTRY_ID_PARENT column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The reference number of the source CatalogEntry in this relationship.
public java.lang.Long getCatalogEntryIdParentInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.CATENTRY_ID_PARENT column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The reference number of the source CatalogEntry in this relationship.
public void setCatalogEntryIdParent(java.lang.String newValue)
public void setCatalogEntryIdParent(java.lang.Long newValue)
public java.lang.String getField3() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.FIELD3 column of DB2 type DECIMAL(20 5).
The following is a description of this column:
Customizable.
public java.math.BigDecimal getField3InEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.FIELD3 column of DB2 type DECIMAL(20 5).
The following is a description of this column:
Customizable.
public void setField3(java.lang.String newValue)
public void setField3(java.math.BigDecimal newValue)
public java.lang.String getField2() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.FIELD2 column of DB2 type INTEGER.
The following is a description of this column:
Customizable.
public java.lang.Integer getField2InEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.FIELD2 column of DB2 type INTEGER.
The following is a description of this column:
Customizable.
public void setField2(java.lang.String newValue)
public void setField2(java.lang.Integer newValue)
public java.lang.String getField1() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.FIELD1 column of DB2 type VARCHAR(254).
The following is a description of this column:
Customizable.
public void setField1(java.lang.String newValue)
public java.lang.String getGroupName() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.GROUPNAME column of DB2 type VARCHAR(254).
The following is a description of this column:
Reserved for IBM internal use.
public void setGroupName(java.lang.String newValue)
public java.lang.String getCatalogRelationTypeId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.CATRELTYPE_ID column of DB2 type CHAR(32) NOT NULL.
The following is a description of this column:
The type of relationship: PRODUCT_ITEM, PACKAGE_COMPONENT or BUNDLE_COMPONENT. Foreign key to the CATRELTYPE table.
public void setCatalogRelationTypeId(java.lang.String newValue)
public java.lang.String getCatalogEntryIdChild() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.CATENTRY_ID_CHILD column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The reference number of the target CatalogEntry in this relationship.
public java.lang.Long getCatalogEntryIdChildInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.CATENTRY_ID_CHILD column of DB2 type BIGINT NOT NULL.
The following is a description of this column:
The reference number of the target CatalogEntry in this relationship.
public void setCatalogEntryIdChild(java.lang.String newValue)
public void setCatalogEntryIdChild(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 CATENTREL.SEQUENCE column of DB2 type FLOAT NOT NULL DEFAULT 0.
The following is a description of this column:
The sequence number used to determine the display order.
public java.lang.Double getSequenceInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the CATENTREL.SEQUENCE column of DB2 type FLOAT NOT NULL DEFAULT 0.
The following is a description of this column:
The sequence number used to determine the display order.
public void setSequence(java.lang.String newValue)
public void setSequence(java.lang.Double newValue)
public java.util.Enumeration findByCatalogEntryChildIdAndStore(java.lang.Long childId, java.lang.Integer anStoreId) throws javax.naming.NamingException, javax.ejb.FinderException, java.rmi.RemoteException
(C) Copyright IBM Corporation 1996, 2005. All Rights Reserved.