java.lang.Object | +--com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean | +--com.ibm.commerce.catalog.objects.CompositeCatalogEntryAccessBean
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.
Constructor Summary | |
---|---|
CompositeCatalogEntryAccessBean() constructor | |
CompositeCatalogEntryAccessBean(javax.ejb.EJBObject o) constructor |
Method Summary | |
---|---|
void |
commitCopyHelper() Update(flush) data to the EJBObject (persistent storage). |
protected
java.lang.String |
defaultJNDIName() |
java.util.Enumeration |
findBundleComponents(java.lang.Long arg0) Finds the composite catalog entry with the parent catalog entry ID. |
java.util.Enumeration |
findPackageComponents(java.lang.Long arg0) Finds the composite catalog entry with the catalog entry ID. |
CatalogEntryAccessBean |
getCompositeCatalogEntry() This method provides access to the CATENTREL.SEQUENCE column of DB2 type FLOAT 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 |
getFromCatalogEntryReferenceNumber() This method provides access to the CATENTREL.CATENTRY_ID_PARENT column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getFromCatalogEntryReferenceNumberInEJBType() This method provides access to the CATENTREL.CATENTRY_ID_PARENT column of DB2 type BIGINT NOT NULL. |
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 |
getToCatalogEntryReferenceNumber() This method provides access to the CATENTREL.CATENTRY_ID_CHILD column of DB2 type BIGINT NOT NULL. |
java.lang.Long |
getToCatalogEntryReferenceNumberInEJBType() This method provides access to the CATENTREL.CATENTRY_ID_CHILD column of DB2 type BIGINT NOT NULL. |
protected
void |
instantiateEJB() |
protected
boolean |
instantiateEJBByPrimaryKey() |
void |
refreshCopyHelper() Load data from the EJBObject. |
void |
setField1(java.lang.String newValue) This method provides access to the CATENTREL.FIELD1 column of DB2 type VARCHAR(254). |
void |
setField2(java.lang.Integer newValue) This method provides access to the CATENTREL.FIELD2 column of DB2 type INTEGER. |
void |
setField2(java.lang.String newValue) This method provides access to the CATENTREL.FIELD2 column of DB2 type INTEGER. |
void |
setField3(java.math.BigDecimal newValue) This method provides access to the CATENTREL.FIELD3 column of DB2 type DECIMAL(20 5). |
void |
setField3(java.lang.String newValue) This method provides access to the CATENTREL.FIELD3 column of DB2 type DECIMAL(20 5). |
void |
setFromCatalogEntryReferenceNumber(java.lang.Long newValue) This method provides access to the CATENTREL.CATENTRY_ID_PARENT column of DB2 type BIGINT NOT NULL. |
void |
setFromCatalogEntryReferenceNumber(java.lang.String newValue) This method provides access to the CATENTREL.CATENTRY_ID_PARENT column of DB2 type BIGINT NOT NULL. |
void |
setGroupName(java.lang.String newValue) This method provides access to the CATENTREL.GROUPNAME column of DB2 type VARCHAR(254). |
void |
setInitKey_fromCatalogEntryReferenceNumber(java.lang.String newValue) Set the primary key for this object |
void |
setInitKey_relationship_type(java.lang.String newValue) Set the primary key for this object |
void |
setInitKey_toCatalogEntryReferenceNumber(java.lang.String newValue) Set the primary key for this object |
void |
setOid(java.lang.String newValue) This method provides access to the CATENTREL.OID column of DB2 type VARCHAR(64). |
void |
setQuantity(java.lang.Double newValue) This method provides access to the CATENTREL.QUANTITY column of DB2 type FLOAT. |
void |
setQuantity(java.lang.String newValue) This method provides access to the CATENTREL.QUANTITY column of DB2 type FLOAT. |
void |
setToCatalogEntryReferenceNumber(java.lang.Long newValue) This method provides access to the CATENTREL.CATENTRY_ID_CHILD column of DB2 type BIGINT NOT NULL. |
void |
setToCatalogEntryReferenceNumber(java.lang.String newValue) This method provides access to the CATENTREL.CATENTRY_ID_CHILD column of DB2 type BIGINT NOT NULL. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll,
toString, wait, wait, wait |
Constructor Detail |
---|
public CompositeCatalogEntryAccessBean()
public CompositeCatalogEntryAccessBean(javax.ejb.EJBObject o) throws java.rmi.RemoteException
o
- javax.ejb.EJBObjectjava.rmi.RemoteException
Method Detail |
---|
public java.util.Enumeration findBundleComponents(java.lang.Long arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Finds the composite catalog entry with the parent catalog entry ID.
SQL:
SELECT CATENTREL.CATENTRY_ID_CHILD, CATENTREL.SEQUENCE, CATENTREL.QUANTITY,
CATENTREL.CATENTRY_ID_PARENT, CATENTREL.CATRELTYPE_ID, CATENTREL.FIELD1,
CATENTREL.FIELD2, CATENTREL.FIELD3, CATENTREL.GROUPNAME, CATENTREL.OID FROM
CATENTREL, CATENTRY WHERE CATENTRY.MARKFORDELETE = 0 AND
CATENTREL.CATENTRY_ID_PARENT = catalogEntryReferenceNumber AND
CATENTREL.CATRELTYPE_ID = 'BUNDLE_COMPONENT' AND CATENTRY.CATENTRY_ID =
CATENTREL.CATENTRY_ID_CHILD ORDER BY CATENTREL.SEQUENCE
java.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionjavax.naming.NamingException
public java.util.Enumeration findPackageComponents(java.lang.Long arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Finds the composite catalog entry with the catalog entry ID.
SQL:
SELECT CATENTREL.CATENTRY_ID_CHILD, CATENTREL.SEQUENCE, CATENTREL.QUANTITY,
CATENTREL.CATENTRY_ID_PARENT, CATENTREL.CATRELTYPE_ID, CATENTREL.FIELD1,
CATENTREL.FIELD2, CATENTREL.FIELD3, CATENTREL.GROUPNAME, CATENTREL.OID FROM
CATENTREL, CATENTRY WHERE CATENTRY.MARKFORDELETE = 0 AND
CATENTREL.CATENTRY_ID_PARENT = catalogEntryReferenceNumber AND
CATENTREL.CATRELTYPE_ID = 'PACKAGE_COMPONENT' AND CATENTRY.CATENTRY_ID
= CATENTREL.CATENTRY_ID_CHILD ORDER BY T1.SEQUENCE
java.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionjavax.naming.NamingException
public void setInitKey_fromCatalogEntryReferenceNumber(java.lang.String newValue)
Set the primary key for this object
newValue
- java.lang.Stringpublic void setInitKey_relationship_type(java.lang.String newValue)
Set the primary key for this object
newValue
- java.lang.Stringpublic void setInitKey_toCatalogEntryReferenceNumber(java.lang.String newValue)
Set the primary key for this object
newValue
- java.lang.Stringprotected java.lang.String defaultJNDIName()
protected void instantiateEJB() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
java.rmi.RemoteException
javax.ejb.FinderException
javax.naming.NamingException
protected boolean instantiateEJBByPrimaryKey() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.naming.NamingException
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).
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void refreshCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Load data from the EJBObject.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
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.
getQuantity
in interface
CompositeCatalogEntryAccessBeanData
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
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.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setQuantity(java.lang.String newValue)
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.
setQuantity
in interface
CompositeCatalogEntryAccessBeanData
newValue
- Stringpublic void setQuantity(java.lang.Double newValue)
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.
newValue
- java.lang.Doublepublic 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.
getField3
in interface
CompositeCatalogEntryAccessBeanData
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
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.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setField3(java.lang.String newValue)
This method provides access to the CATENTREL.FIELD3 column of DB2 type DECIMAL(20 5).
The following is a description of this column:
Customizable.
setField3
in interface
CompositeCatalogEntryAccessBeanData
newValue
- Stringpublic void setField3(java.math.BigDecimal newValue)
This method provides access to the CATENTREL.FIELD3 column of DB2 type DECIMAL(20 5).
The following is a description of this column:
Customizable.
newValue
- java.math.BigDecimalpublic 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.
getField2
in interface
CompositeCatalogEntryAccessBeanData
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
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.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setField2(java.lang.String newValue)
This method provides access to the CATENTREL.FIELD2 column of DB2 type INTEGER.
The following is a description of this column:
Customizable.
setField2
in interface
CompositeCatalogEntryAccessBeanData
newValue
- Stringpublic void setField2(java.lang.Integer newValue)
This method provides access to the CATENTREL.FIELD2 column of DB2 type INTEGER.
The following is a description of this column:
Customizable.
newValue
- java.lang.Integerpublic 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.
getField1
in interface
CompositeCatalogEntryAccessBeanData
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setField1(java.lang.String newValue)
This method provides access to the CATENTREL.FIELD1 column of DB2 type VARCHAR(254).
The following is a description of this column:
Customizable.
setField1
in interface
CompositeCatalogEntryAccessBeanData
newValue
- java.lang.Stringpublic java.lang.String getFromCatalogEntryReferenceNumber() 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.
getFromCatalogEntryReferenceNumber
in interface
CompositeCatalogEntryAccessBeanData
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public java.lang.Long getFromCatalogEntryReferenceNumberInEJBType() 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.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setFromCatalogEntryReferenceNumber(java.lang.String newValue)
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.
setFromCatalogEntryReferenceNumber
in interface
CompositeCatalogEntryAccessBeanData
newValue
- Stringpublic void setFromCatalogEntryReferenceNumber(java.lang.Long newValue)
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.
newValue
- java.lang.Longpublic 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.
getGroupName
in interface
CompositeCatalogEntryAccessBeanData
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setGroupName(java.lang.String newValue)
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.
setGroupName
in interface
CompositeCatalogEntryAccessBeanData
newValue
- java.lang.Stringpublic 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.
getOid
in interface
CompositeCatalogEntryAccessBeanData
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setOid(java.lang.String newValue)
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.
setOid
in interface
CompositeCatalogEntryAccessBeanData
newValue
- java.lang.Stringpublic java.lang.String getToCatalogEntryReferenceNumber() 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.
getToCatalogEntryReferenceNumber
in interface
CompositeCatalogEntryAccessBeanData
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public java.lang.Long getToCatalogEntryReferenceNumberInEJBType() 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.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setToCatalogEntryReferenceNumber(java.lang.String newValue)
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.
setToCatalogEntryReferenceNumber
in interface
CompositeCatalogEntryAccessBeanData
newValue
- Stringpublic void setToCatalogEntryReferenceNumber(java.lang.Long newValue)
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.
newValue
- java.lang.Longpublic CatalogEntryAccessBean getCompositeCatalogEntry() throws javax.naming.NamingException, javax.ejb.CreateException, javax.ejb.FinderException, java.rmi.RemoteException
This method provides access to the CATENTREL.SEQUENCE column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
The sequence number used to determine the display order.
javax.naming.NamingException
- The
javax.naming.NamingException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException
exception