com.ibm.commerce.catalog.objects
Class CatalogGroupPageRelationAccessBean

java.lang.Object
  com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
      com.ibm.commerce.catalog.objects.CatalogGroupPageRelationAccessBean
All Implemented Interfaces:
CatalogGroupPageRelationAccessBeanData

public class CatalogGroupPageRelationAccessBean
extends com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
implements CatalogGroupPageRelationAccessBeanData

This table holds the page names used to display CatalogGroups. The selection is based on Store, MemberGroup, DeviceType, CatalogGroup, Language, or any combination of the above. If many pages satisfy the criteria, the page that best fits will be chosen. This access bean corresponds to the database table 'DISPCGPREL'.

See Also:
Serialized Form

Constructor Summary
CatalogGroupPageRelationAccessBean()
Zero argument constructor used to initialize the access bean.
CatalogGroupPageRelationAccessBean(javax.ejb.EJBObject o)
constructor
CatalogGroupPageRelationAccessBean(java.lang.Long arg1, java.lang.Long arg2, java.lang.Integer arg3)
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()
CatalogGroupPageRelationAccessBean findByStoreCategoryMember(java.lang.Integer storeId, java.lang.Long categroyId, java.lang.Long memberGrpId, java.lang.String devicetype_id)
This finder method returns the CatalogGroupPageRelation Access Bean with the given Store ID, Category ID, Member Group ID, and Device Type ID.
CatalogGroupPageRelationAccessBean findByStoreCategoryMemberGroups(java.lang.Integer storeId, java.lang.Long categoryId, java.lang.String devicetype_id, java.lang.Long[] memberGrpId)
This method returns the Catalog Group Page Relation with the specified Store, Catalog Group, Device Type and Member Groups.
CatalogGroupPageRelationAccessBean findByStoreCategoryMemberGroupsLanguageId(java.lang.Integer storeId, java.lang.Long categoryId, java.lang.String devicetype_id, java.lang.Long[] memberGrpId, java.lang.Integer languageId)
This finder method returns the CatalogGroupPageRelation Access Bean with the given Store ID, Category ID, list of Member Group IDs, Device Type ID and Language ID.
CatalogGroupPageRelationAccessBean findByStoreCategoryMemberLanguageId(java.lang.Integer storeId, java.lang.Long categroyId, java.lang.Long memberGrpId, java.lang.String devicetype_id, java.lang.Integer languageId)
This method returns the Catalog Group Page Relation with the specified Store, Catalog Group, Member, and Language.
java.lang.String getDescription()
This method provides access to the DISPCGPREL.DESCRIPTION column of DB2 type VARCHAR(254).
java.lang.String getDevicetype_id()
This method provides access to the DISPCGPREL.DEVICEFMT_ID column of DB2 type INTEGER NOT NULL.
java.lang.String getField1()
This method provides access to the DISPCGPREL.FIELD1 column of DB2 type VARCHAR(254).
java.lang.String getField2()
This method provides access to the DISPCGPREL.FIELD2 column of DB2 type VARCHAR(254).
java.lang.String getLanguageId()
This method provides access to the DISPCGPREL.LANGUAGE_ID column of DB2 type INTEGER.
java.lang.Integer getLanguageIdInEJBType()
This method provides access to the DISPCGPREL.LANGUAGE_ID column of DB2 type INTEGER.
java.lang.String getMemberGroupId()
This method provides access to the DISPCGPREL.MBRGRP_ID column of DB2 type BIGINT NOT NULL.
java.lang.Long getMemberGroupIdInEJBType()
This method provides access to the DISPCGPREL.MBRGRP_ID column of DB2 type BIGINT NOT NULL.
java.lang.String getOid()
This method provides access to the DISPCGPREL.OID column of DB2 type VARCHAR(64).
java.lang.String getPageName()
This method provides access to the DISPCGPREL.PAGENAME column of DB2 type VARCHAR(254) NOT NULL.
java.lang.String getRank()
This method provides access to the DISPCGPREL.RANK column of DB2 type FLOAT.
java.lang.Double getRankInEJBType()
This method provides access to the DISPCGPREL.RANK column of DB2 type FLOAT.
java.lang.String getStoreent_id()
This method provides access to the DISPCGPREL.STOREENT_ID column of DB2 type INTEGER NOT NULL.
java.lang.Integer getStoreent_idInEJBType()
This method provides access to the DISPCGPREL.STOREENT_ID column of DB2 type INTEGER NOT NULL.
protected void instantiateEJB()
protected boolean instantiateEJBByPrimaryKey()
void refreshCopyHelper()
Load data from the EJBObject.
void setDescription(java.lang.String newValue)
This method accesses a non-CMP field
void setDevicetype_id(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.String newValue)
This method accesses a non-CMP field
void setInitKey_displayReferenceNumber(java.lang.String newValue)
Set the primary key for this object
void setLanguageId(java.lang.Integer newValue)
This method accesses a non-CMP field
void setLanguageId(java.lang.String newValue)
This method accesses a non-CMP field
void setMemberGroupId(java.lang.Long newValue)
This method accesses a non-CMP field
void setMemberGroupId(java.lang.String newValue)
This method accesses a non-CMP field
void setOid(java.lang.String newValue)
This method accesses a non-CMP field
void setPageName(java.lang.String newValue)
This method accesses a non-CMP field
void setRank(java.lang.Double newValue)
This method accesses a non-CMP field
void setRank(java.lang.String newValue)
This method accesses a non-CMP field
void setStoreent_id(java.lang.Integer newValue)
This method accesses a non-CMP field
void setStoreent_id(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

CatalogGroupPageRelationAccessBean

public CatalogGroupPageRelationAccessBean()
Zero argument constructor used to initialize the access bean. This constructor corresponds to the following home interface method: public abstract com.ibm.commerce.catalog.objects.CatalogGroupPageRelation com.ibm.commerce.catalog.objimpl.CatalogGroupPageRelationHomeBase.findByPrimaryKey(com.ibm.commerce.catalog.objects.CatalogGroupPageRelationKey) throws java.rmi.RemoteException,javax.ejb.FinderException The home interface method properties need to be set by calling the following setter methods before calling any business methods: setInitKey_displayReferenceNumber( java.lang.Long )

CatalogGroupPageRelationAccessBean

public CatalogGroupPageRelationAccessBean(javax.ejb.EJBObject o)
                                   throws java.rmi.RemoteException
constructor
Parameters:
o - javax.ejb.EJBObject
Throws:
java.rmi.RemoteException

CatalogGroupPageRelationAccessBean

public CatalogGroupPageRelationAccessBean(java.lang.Long arg1,
                                          java.lang.Long arg2,
                                          java.lang.Integer arg3)
                                   throws javax.ejb.CreateException,
                                          java.rmi.RemoteException,
                                          javax.ejb.FinderException,
                                          javax.naming.NamingException

Maps to a corresponding ejbCreate method in the home interface of the EJB. This method creates a new CatalogGroupPageRelation Access Bean using the Catalog Group ID, the Member Group ID, and the Store ID.

Parameters:
arg1 - The Catalog Group ID java.lang.Long
arg2 - The Member Group ID java.lang.Long
arg3 - The Store ID java.lang.Integer
Throws:
javax.ejb.CreateException - The javax.ejb.CreateException exception
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.naming.NamingException - The javax.naming.NamingException exception
javax.ejb.FinderException
Method Detail

findByStoreCategoryMember

public CatalogGroupPageRelationAccessBean findByStoreCategoryMember(java.lang.Integer storeId,
                                                                    java.lang.Long categroyId,
                                                                    java.lang.Long memberGrpId,
                                                                    java.lang.String devicetype_id)
                                                             throws java.rmi.RemoteException,
                                                                    javax.ejb.FinderException,
                                                                    javax.naming.NamingException

This finder method returns the CatalogGroupPageRelation Access Bean with the given Store ID, Category ID, Member Group ID, and Device Type ID.

SQL:
SELECT * FROM DISPCGPREL WHERE ((DISPCGPREL.STOREENT_ID = storeId or DISPCGPREL.STOREENT_ID= 0 ) and (DISPCGPREL.CATGROUP_id = categroyId or DISPCGPREL.CATGROUP_id= 0 ) and (DISPCGPREL.mbrgrp_id = memberGrpId or DISPCGPREL.mbrgrp_id = 0 ) and (DISPCGPREL.devicefmt_id = devicetype_id or DISPCGPREL.devicefmt_id= 0 ) order by DISPCGPREL.mbrgrp_id desc, DISPCGPREL.CATGROUP_id desc, DISPCGPREL.STOREENT_ID desc

Parameters:
storeId - The Store ID java.lang.Integer
categroyId - The Category ID java.lang.Long
memberGrpId - The Member Group ID java.lang.Long
devicetype_id - The Device Type ID java.lang.String
Returns:
com.ibm.commerce.catalog.objects.CatalogGroupPageRelationAccessBean
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException

findByStoreCategoryMemberGroups

public CatalogGroupPageRelationAccessBean findByStoreCategoryMemberGroups(java.lang.Integer storeId,
                                                                          java.lang.Long categoryId,
                                                                          java.lang.String devicetype_id,
                                                                          java.lang.Long[] memberGrpId)
                                                                   throws java.rmi.RemoteException,
                                                                          javax.ejb.FinderException,
                                                                          javax.naming.NamingException

This method returns the Catalog Group Page Relation with the specified Store, Catalog Group, Device Type and Member Groups.

SQL:
SELECT * FROM DISPCGPREL WHERE ((DISPCGPREL.STOREENT_ID = storeId or DISPCGPREL.STOREENT_ID= 0 ) AND (DISPCGPREL.CATGROUP_ID = categoryId OR DISPCGPREL.CATGROUP_ID = 0) AND (DISPCGPREL.MBRGRP_ID IN (memberGrpId) AND (DISPCGPREL.DEVICEFMT_ID = devicetype_id OR DISPCGPREL.DEVICEFMYT_ID = -1) ORDER BY DISPCGPREL.MBRGRP_ID DESC, DISPCGPREL.CATGROUP_ID DESC, DISPCGPREL.STOREENT_ID DESC

Parameters:
storeId - The Store reference number. java.lang.Integer
categoryId - The Catalog Group ID. java.lang.Long
devicetype_id - The Device Type ID. java.lang.String
memberGrpId - The List of member groups. java.lang.Long[]
Returns:
com.ibm.commerce.catalog.objects.CatalogGroupPageRelationAccessBean
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException

findByStoreCategoryMemberGroupsLanguageId

public CatalogGroupPageRelationAccessBean findByStoreCategoryMemberGroupsLanguageId(java.lang.Integer storeId,
                                                                                    java.lang.Long categoryId,
                                                                                    java.lang.String devicetype_id,
                                                                                    java.lang.Long[] memberGrpId,
                                                                                    java.lang.Integer languageId)
                                                                             throws java.rmi.RemoteException,
                                                                                    javax.ejb.FinderException,
                                                                                    javax.naming.NamingException

This finder method returns the CatalogGroupPageRelation Access Bean with the given Store ID, Category ID, list of Member Group IDs, Device Type ID and Language ID.

SQL:
SELECT * FROM DISPCGPREL WHERE ((DISPCGPREL.STOREENT_ID = storeId or DISPCGPREL.STOREENT_ID= 0 ) AND (DISPCGPREL.CATGROUP_ID = categoryId OR DISPCGPREL.CATGROUP_ID = 0) AND (DISPCGPREL.DEVICEFMT_ID = devicetype_id OR DISPCGPREL.DEVICEFMYT_ID = -1) AND (DISPCGPREL.MBRGRP_ID IN (memberGrpId)) AND (DISPCGPREL.LANGUAGE_ID = languageId OR DISPCGPREL.LANGUAGE_ID IS NULL) ORDER BY DISPCGPREL.MBRGRP_ID DESC, DISPCGPREL.CATGROUP_ID DESC, DISPCGPREL.STOREENT_ID DESC, DISPCGPREL.LANGUAGE_ID ASC

Parameters:
storeId - The Store reference number. java.lang.Integer
categoryId - The Catalog Group reference number. java.lang.Long
devicetype_id - The Device Type ID. java.lang.String
memberGrpId - The list of Member Groups. java.lang.Long[]
languageId - The Language reference number. java.lang.Integer
Returns:
com.ibm.commerce.catalog.objects.CatalogGroupPageRelationAccessBean
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException

findByStoreCategoryMemberLanguageId

public CatalogGroupPageRelationAccessBean findByStoreCategoryMemberLanguageId(java.lang.Integer storeId,
                                                                              java.lang.Long categroyId,
                                                                              java.lang.Long memberGrpId,
                                                                              java.lang.String devicetype_id,
                                                                              java.lang.Integer languageId)
                                                                       throws java.rmi.RemoteException,
                                                                              javax.ejb.FinderException,
                                                                              javax.naming.NamingException

This method returns the Catalog Group Page Relation with the specified Store, Catalog Group, Member, and Language.

SQL:
SELECT * FROM DISPCGPREL WHERE ((DISPCGPREL.STOREENT_ID = storeId or DISPCGPREL.STOREENT_ID= 0 ) AND (DISPCGPREL.CATGROUP_ID = categroyId OR DISPCGPREL.CATGROUP_ID = 0) AND (DISPCGPREL.MBRGRP_ID = memberGrpId OR DISPCGPREL.MBRGRP_ID = 0) AND (DISPCGPREL.DEVICEFMT_ID = devicetype_id OR DISPCGPREL.DEVICEFMYT_ID = -1) AND (DISPCGPREL.LANGUAGE_ID = languageId OR DISPCGPREL.LANGUAGE_ID IS NULL) ORDER BY DISPCGPREL.MBRGRP_ID DESC, DISPCGPREL.CATGROUP_ID DESC, DISPCGPREL.STOREENT_ID DESC, DISPCGPREL.LANGUAGE_ID ASC

Parameters:
storeId - The Store reference number. java.lang.Integer
categroyId - The Catalog Group reference number. java.lang.Long
memberGrpId - The member group reference number. java.lang.Long
devicetype_id - The Device Type ID. java.lang.String
languageId - The Language reference number. java.lang.Integer
Returns:
com.ibm.commerce.catalog.objects.CatalogGroupPageRelationAccessBean
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException

setInitKey_displayReferenceNumber

public void setInitKey_displayReferenceNumber(java.lang.String newValue)

Set the primary key for this object

Parameters:
newValue - java.lang.String
Returns:
void

defaultJNDIName

protected java.lang.String defaultJNDIName()
Returns:
String

instantiateEJB

protected void instantiateEJB()
                       throws java.rmi.RemoteException,
                              javax.ejb.FinderException,
                              javax.naming.NamingException
Returns:
void
Throws:
java.rmi.RemoteException
javax.ejb.FinderException
javax.naming.NamingException

instantiateEJBByPrimaryKey

protected boolean instantiateEJBByPrimaryKey()
                                      throws java.rmi.RemoteException,
                                             javax.ejb.CreateException,
                                             javax.naming.NamingException
Returns:
boolean
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.naming.NamingException

commitCopyHelper

public void commitCopyHelper()
                      throws java.rmi.RemoteException,
                             javax.ejb.CreateException,
                             javax.ejb.FinderException,
                             javax.naming.NamingException

Update(flush) data to the EJBObject (persistent storage).

Returns:
void
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

refreshCopyHelper

public void refreshCopyHelper()
                       throws java.rmi.RemoteException,
                              javax.ejb.CreateException,
                              javax.ejb.FinderException,
                              javax.naming.NamingException

Load data from the EJBObject.

Returns:
void
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

getDevicetype_id

public java.lang.String getDevicetype_id()
                                  throws java.rmi.RemoteException,
                                         javax.ejb.CreateException,
                                         javax.ejb.FinderException,
                                         javax.naming.NamingException

This method provides access to the DISPCGPREL.DEVICEFMT_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The reference number of the device type that the page will be displayed on. Foreign key to the DEVICEFMT table.

Specified by:
getDevicetype_id in interface CatalogGroupPageRelationAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setDevicetype_id

public void setDevicetype_id(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setDevicetype_id in interface CatalogGroupPageRelationAccessBeanData

getDescription

public java.lang.String getDescription()
                                throws java.rmi.RemoteException,
                                       javax.ejb.CreateException,
                                       javax.ejb.FinderException,
                                       javax.naming.NamingException

This method provides access to the DISPCGPREL.DESCRIPTION column of DB2 type VARCHAR(254).

The following is a description of this column:

A descriptive comment of this entry.

Specified by:
getDescription in interface CatalogGroupPageRelationAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setDescription

public void setDescription(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setDescription in interface CatalogGroupPageRelationAccessBeanData

getLanguageId

public java.lang.String getLanguageId()
                               throws java.rmi.RemoteException,
                                      javax.ejb.CreateException,
                                      javax.ejb.FinderException,
                                      javax.naming.NamingException

This method provides access to the DISPCGPREL.LANGUAGE_ID column of DB2 type INTEGER.

The following is a description of this column:

The language in which this page displays. For a list of language components, see the LANGUAGE table.

Specified by:
getLanguageId in interface CatalogGroupPageRelationAccessBeanData
Returns:
String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

getLanguageIdInEJBType

public java.lang.Integer getLanguageIdInEJBType()
                                         throws java.rmi.RemoteException,
                                                javax.ejb.CreateException,
                                                javax.ejb.FinderException,
                                                javax.naming.NamingException

This method provides access to the DISPCGPREL.LANGUAGE_ID column of DB2 type INTEGER.

The following is a description of this column:

The language in which this page displays. For a list of language components, see the LANGUAGE table.

Returns:
java.lang.Integer
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setLanguageId

public void setLanguageId(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setLanguageId in interface CatalogGroupPageRelationAccessBeanData

setLanguageId

public void setLanguageId(java.lang.Integer newValue)
This method accesses a non-CMP field

getPageName

public java.lang.String getPageName()
                             throws java.rmi.RemoteException,
                                    javax.ejb.CreateException,
                                    javax.ejb.FinderException,
                                    javax.naming.NamingException

This method provides access to the DISPCGPREL.PAGENAME column of DB2 type VARCHAR(254) NOT NULL.

The following is a description of this column:

The name and path of the display page template. The path is relative to the application document root.

Specified by:
getPageName in interface CatalogGroupPageRelationAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setPageName

public void setPageName(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setPageName in interface CatalogGroupPageRelationAccessBeanData

getStoreent_id

public java.lang.String getStoreent_id()
                                throws java.rmi.RemoteException,
                                       javax.ejb.CreateException,
                                       javax.ejb.FinderException,
                                       javax.naming.NamingException

This method provides access to the DISPCGPREL.STOREENT_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The reference number of the Store for which this page will be displayed.

Specified by:
getStoreent_id in interface CatalogGroupPageRelationAccessBeanData
Returns:
String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

getStoreent_idInEJBType

public java.lang.Integer getStoreent_idInEJBType()
                                          throws java.rmi.RemoteException,
                                                 javax.ejb.CreateException,
                                                 javax.ejb.FinderException,
                                                 javax.naming.NamingException

This method provides access to the DISPCGPREL.STOREENT_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The reference number of the Store for which this page will be displayed.

Returns:
java.lang.Integer
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setStoreent_id

public void setStoreent_id(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setStoreent_id in interface CatalogGroupPageRelationAccessBeanData

setStoreent_id

public void setStoreent_id(java.lang.Integer newValue)
This method accesses a non-CMP field

getMemberGroupId

public java.lang.String getMemberGroupId()
                                  throws java.rmi.RemoteException,
                                         javax.ejb.CreateException,
                                         javax.ejb.FinderException,
                                         javax.naming.NamingException

This method provides access to the DISPCGPREL.MBRGRP_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The reference number of the MemberGroup for which this template page will display. A value of 0 indicates that this template page will be used for for all MemberGroups.

Specified by:
getMemberGroupId in interface CatalogGroupPageRelationAccessBeanData
Returns:
String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

getMemberGroupIdInEJBType

public java.lang.Long getMemberGroupIdInEJBType()
                                         throws java.rmi.RemoteException,
                                                javax.ejb.CreateException,
                                                javax.ejb.FinderException,
                                                javax.naming.NamingException

This method provides access to the DISPCGPREL.MBRGRP_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The reference number of the MemberGroup for which this template page will display. A value of 0 indicates that this template page will be used for for all MemberGroups.

Returns:
java.lang.Long
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setMemberGroupId

public void setMemberGroupId(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setMemberGroupId in interface CatalogGroupPageRelationAccessBeanData

setMemberGroupId

public void setMemberGroupId(java.lang.Long newValue)
This method accesses a non-CMP field

getField2

public java.lang.String getField2()
                           throws java.rmi.RemoteException,
                                  javax.ejb.CreateException,
                                  javax.ejb.FinderException,
                                  javax.naming.NamingException

This method provides access to the DISPCGPREL.FIELD2 column of DB2 type VARCHAR(254).

The following is a description of this column:

Customizable.

Specified by:
getField2 in interface CatalogGroupPageRelationAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setField2

public void setField2(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setField2 in interface CatalogGroupPageRelationAccessBeanData

getField1

public java.lang.String getField1()
                           throws java.rmi.RemoteException,
                                  javax.ejb.CreateException,
                                  javax.ejb.FinderException,
                                  javax.naming.NamingException

This method provides access to the DISPCGPREL.FIELD1 column of DB2 type VARCHAR(254).

The following is a description of this column:

Customizable.

Specified by:
getField1 in interface CatalogGroupPageRelationAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setField1

public void setField1(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setField1 in interface CatalogGroupPageRelationAccessBeanData

getOid

public java.lang.String getOid()
                        throws java.rmi.RemoteException,
                               javax.ejb.CreateException,
                               javax.ejb.FinderException,
                               javax.naming.NamingException

This method provides access to the DISPCGPREL.OID column of DB2 type VARCHAR(64).

The following is a description of this column:

Reserved for IBM internal use.

Specified by:
getOid in interface CatalogGroupPageRelationAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setOid

public void setOid(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setOid in interface CatalogGroupPageRelationAccessBeanData

getRank

public java.lang.String getRank()
                         throws java.rmi.RemoteException,
                                javax.ejb.CreateException,
                                javax.ejb.FinderException,
                                javax.naming.NamingException

This method provides access to the DISPCGPREL.RANK column of DB2 type FLOAT.

The following is a description of this column:

A sequence number used to break ties when more than one page satisfies the selection criteria. The larger the rank, the lower the precedence of the page.

Specified by:
getRank in interface CatalogGroupPageRelationAccessBeanData
Returns:
String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

getRankInEJBType

public java.lang.Double getRankInEJBType()
                                  throws java.rmi.RemoteException,
                                         javax.ejb.CreateException,
                                         javax.ejb.FinderException,
                                         javax.naming.NamingException

This method provides access to the DISPCGPREL.RANK column of DB2 type FLOAT.

The following is a description of this column:

A sequence number used to break ties when more than one page satisfies the selection criteria. The larger the rank, the lower the precedence of the page.

Returns:
java.lang.Double
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setRank

public void setRank(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setRank in interface CatalogGroupPageRelationAccessBeanData

setRank

public void setRank(java.lang.Double newValue)
This method accesses a non-CMP field

Feedback