com.ibm.commerce.marketingcenter.events.objects
Class ProductExplorerStatisticsAccessBean

java.lang.Object
  |
  +--com.ibm.ivj.ejb.runtime.AbstractAccessBean
        |
        +--com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
              |
              +--com.ibm.commerce.marketingcenter.events.objects.ProductExplorerStatisticsAccessBean
All Implemented Interfaces:
ProductExplorerStatisticsAccessBeanData, java.io.Serializable

public class ProductExplorerStatisticsAccessBean
extends com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
implements ProductExplorerStatisticsAccessBeanData

This bean provides access to the PESTATS table.

The following is a description of this table:

This table captures statistics related to the Product Explorer Product Advisor metaphor.

See Also:
Serialized Form

Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef
 
Constructor Summary
ProductExplorerStatisticsAccessBean()
          Default constructor.
ProductExplorerStatisticsAccessBean(javax.ejb.EJBObject aDuctExplorerStatisticsAccessBean1)
          Creates an access bean for the specified EJB.
ProductExplorerStatisticsAccessBean(java.lang.Long aCategoryGroupId, java.lang.Integer aStoreId, java.lang.Integer aFeatureId)
          Maps to a corresponding ejbCreate method in the home interface of the EJB
ProductExplorerStatisticsAccessBean(java.lang.Long aCategoryGroupId, java.lang.Integer aStoreId, java.lang.Integer aFeatureId, java.lang.String aFeatureName, java.lang.Integer newCount)
          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).
 java.util.Enumeration findByCatGroupIdAndStoreId(java.lang.Long aCategoryGroupId, java.lang.Integer aStoreId)
          This method returns an Enumeration of ProductExplorerStatisticsAccessBean for the given category group identifier and store entity identifier.
 java.util.Enumeration findByFeatureIdAndStoreId(java.lang.Integer aFeatureId, java.lang.Integer aStoreId)
          This method returns an Enumeration of ProductExplorerStatisticsAccessBean for the given feature identifier and store entity identifier.
 java.util.Enumeration findByStoreId(java.lang.Integer aStoreId)
          This method returns an Enumeration of ProductExplorerStatisticsAccessBean for the given store entity identifier.
 java.lang.String getCatGroupId()
          This method provides access to the PESTATS.CATGROUP_ID column of DB2 type BIGINT NOT NULL and Oracle type NUMBER NOT NULL.
 java.lang.Long getCatGroupIdInEJBType()
          This method provides access to the PESTATS.CATGROUP_ID column of DB2 type BIGINT NOT NULL and Oracle type NUMBER NOT NULL.
 java.lang.String getFeatureId()
          This method provides access to the PESTATS.FEATURE_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.
 java.lang.Integer getFeatureIdInEJBType()
          This method provides access to the PESTATS.FEATURE_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.
 java.lang.String getPeCount()
          This method provides access to the PESTATS.COUNT column of DB2 type INTEGER NULL and Oracle type INTEGER NULL.
 java.lang.Integer getPeCountInEJBType()
          This method provides access to the PESTATS.COUNT column of DB2 type INTEGER NULL and Oracle type INTEGER NULL.
 java.lang.String getPeFeatureName()
          This method provides access to the PESTATS.FEATURENAME column of DB2 type VARCHAR(64) NULL and Oracle type VARCHAR2(64) NULL.
 java.lang.String getStoreId()
          This method provides access to the PESTATS.STOREENT_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.
 java.lang.Integer getStoreIdInEJBType()
          This method provides access to the PESTATS.STOREENT_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.
 void incrementCount()
          Method to increment the number of times that the feature was searched.
 void refreshCopyHelper()
          Load data from the EJBObject.
 void setCatGroupId(java.lang.Long aCatGroupId1)
          This method provides access to the PESTATS.CATGROUP_ID column of DB2 type BIGINT NOT NULL and Oracle type NUMBER NOT NULL.
 void setCatGroupId(java.lang.String aCatGroupId1)
          This method provides access to the PESTATS.CATGROUP_ID column of DB2 type BIGINT NOT NULL and Oracle type NUMBER NOT NULL.
 void setFeatureId(java.lang.Integer aFeatureId1)
          This method provides access to the PESTATS.FEATURE_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.
 void setFeatureId(java.lang.String aFeatureId1)
          This method provides access to the PESTATS.FEATURE_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.
 void setInitKey_catGroupId(java.lang.String aInitKey_catGroupId1)
          Set the primary key for this object
 void setInitKey_featureId(java.lang.String aInitKey_featureId1)
          Set the primary key for this object
 void setInitKey_storeId(java.lang.String aInitKey_storeId1)
          Set the primary key for this object
 void setPeCount(java.lang.Integer aPeCount1)
          This method provides access to the PESTATS.COUNT column of DB2 type INTEGER NULL and Oracle type INTEGER NULL.
 void setPeCount(java.lang.String aPeCount1)
          This method provides access to the PESTATS.COUNT column of DB2 type INTEGER NULL and Oracle type INTEGER NULL.
 void setPeFeatureName(java.lang.String aPeFeatureName1)
          This method provides access to the PESTATS.FEATURENAME column of DB2 type VARCHAR(64) NULL and Oracle type VARCHAR2(64) NULL.
 void setStoreId(java.lang.Integer aStoreId1)
          This method provides access to the PESTATS.STOREENT_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.
 void setStoreId(java.lang.String aStoreId1)
          This method provides access to the PESTATS.STOREENT_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT 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

ProductExplorerStatisticsAccessBean

public ProductExplorerStatisticsAccessBean()

Default constructor. Maps to findByPrimaryKey.


ProductExplorerStatisticsAccessBean

public ProductExplorerStatisticsAccessBean(javax.ejb.EJBObject aDuctExplorerStatisticsAccessBean1)
                                    throws java.rmi.RemoteException

Creates an access bean for the specified EJB.

Parameters:
aEJB - A ProductExplorerStatistics EJBObject reference
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception

ProductExplorerStatisticsAccessBean

public ProductExplorerStatisticsAccessBean(java.lang.Long aCategoryGroupId,
                                           java.lang.Integer aStoreId,
                                           java.lang.Integer aFeatureId)
                                    throws javax.ejb.CreateException,
                                           java.rmi.RemoteException,
                                           javax.naming.NamingException

Maps to a corresponding ejbCreate method in the home interface of the EJB

Parameters:
aCategoryGroupId - A category group identifier
aStoreId - A store entity identifier
aFeatureId - A feature identifier
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

ProductExplorerStatisticsAccessBean

public ProductExplorerStatisticsAccessBean(java.lang.Long aCategoryGroupId,
                                           java.lang.Integer aStoreId,
                                           java.lang.Integer aFeatureId,
                                           java.lang.String aFeatureName,
                                           java.lang.Integer newCount)
                                    throws javax.ejb.CreateException,
                                           java.rmi.RemoteException,
                                           javax.naming.NamingException

Maps to a corresponding ejbCreate method in the home interface of the EJB

Parameters:
aCategoryGroupId - A category group identifier
aStoreId - A store entity identifier
aFeatureId - A feature identifier
aFeatureName - A feature name
newCount - The total number of times this a feature was searched for in Product Explorer
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
Method Detail

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).

Overrides:
commitCopyHelper in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByCatGroupIdAndStoreId

public java.util.Enumeration findByCatGroupIdAndStoreId(java.lang.Long aCategoryGroupId,
                                                        java.lang.Integer aStoreId)
                                                 throws java.rmi.RemoteException,
                                                        javax.ejb.FinderException,
                                                        javax.naming.NamingException

This method returns an Enumeration of ProductExplorerStatisticsAccessBean for the given category group identifier and store entity identifier.

SQL:
SELECT * FROM PESTATS WHERE CATGROUP_ID = aCategoryGroupId AND STOREENT_ID =aStoreId

Parameters:
aCategoryGroupId - A category group identifier
aStoreId - A store entity identifier
Returns:
java.util.Enumeration
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByFeatureIdAndStoreId

public java.util.Enumeration findByFeatureIdAndStoreId(java.lang.Integer aFeatureId,
                                                       java.lang.Integer aStoreId)
                                                throws java.rmi.RemoteException,
                                                       javax.ejb.FinderException,
                                                       javax.naming.NamingException

This method returns an Enumeration of ProductExplorerStatisticsAccessBean for the given feature identifier and store entity identifier.

SQL:
SELECT * FROM PESTATS WHERE FEATURE_ID = aFeatureId AND STOREENT_ID =aStoreId

Parameters:
aFeatureId - A feature identifier
aStoreId - A store entity identifier
Returns:
java.util.Enumeration
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByStoreId

public java.util.Enumeration findByStoreId(java.lang.Integer aStoreId)
                                    throws java.rmi.RemoteException,
                                           javax.ejb.FinderException,
                                           javax.naming.NamingException

This method returns an Enumeration of ProductExplorerStatisticsAccessBean for the given store entity identifier.

SQL:
SELECT * FROM PESTATS WHERE STOREENT_ID =aStoreId GROUP BY CATGROUP_ID, FEATURENAME, FEATURE_ID, STOREENT_ID, COUNT ORDER BY CATGROUP_ID, FEATURENAME

Parameters:
aStoreId - A store entity identifier
Returns:
java.util.Enumeration
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getCatGroupId

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

This method provides access to the PESTATS.CATGROUP_ID column of DB2 type BIGINT NOT NULL and Oracle type NUMBER NOT NULL.

The following is a description of this column:

The category group identifier as described in the CATGROUP_ID column of the CATGROUP table.

Specified by:
getCatGroupId in interface ProductExplorerStatisticsAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getCatGroupIdInEJBType

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

This method provides access to the PESTATS.CATGROUP_ID column of DB2 type BIGINT NOT NULL and Oracle type NUMBER NOT NULL.

The following is a description of this column:

The category group identifier as described in the CATGROUP_ID column of the CATGROUP table.

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

getFeatureId

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

This method provides access to the PESTATS.FEATURE_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.

The following is a description of this column:

This is the feature identifier as described in the FEATUREID column of the ICEXPLFEAT table.

Specified by:
getFeatureId in interface ProductExplorerStatisticsAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getFeatureIdInEJBType

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

This method provides access to the PESTATS.FEATURE_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.

The following is a description of this column:

This is the feature identifier as described in the FEATUREID column of the ICEXPLFEAT table.

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

getPeCount

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

This method provides access to the PESTATS.COUNT column of DB2 type INTEGER NULL and Oracle type INTEGER NULL.

The following is a description of this column:

The total number of times this a feature was searched for in Product Explorer.

Specified by:
getPeCount in interface ProductExplorerStatisticsAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getPeCountInEJBType

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

This method provides access to the PESTATS.COUNT column of DB2 type INTEGER NULL and Oracle type INTEGER NULL.

The following is a description of this column:

The total number of times this a feature was searched for in Product Explorer.

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

getPeFeatureName

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

This method provides access to the PESTATS.FEATURENAME column of DB2 type VARCHAR(64) NULL and Oracle type VARCHAR2(64) NULL.

The following is a description of this column:

This is the feature name as described in the NAME column of the ICEXPLDESC table.

Specified by:
getPeFeatureName in interface ProductExplorerStatisticsAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getStoreId

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

This method provides access to the PESTATS.STOREENT_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.

The following is a description of this column:

The store entity identifier as described in the STOREENT_ID column of the STOREENT table.

Specified by:
getStoreId in interface ProductExplorerStatisticsAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getStoreIdInEJBType

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

This method provides access to the PESTATS.STOREENT_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.

The following is a description of this column:

The store entity identifier as described in the STOREENT_ID column of the STOREENT table.

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

incrementCount

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

Method to increment the number of times that the feature was searched.

Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

refreshCopyHelper

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

Load data from the EJBObject.

Overrides:
refreshCopyHelper in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

setCatGroupId

public void setCatGroupId(java.lang.Long aCatGroupId1)

This method provides access to the PESTATS.CATGROUP_ID column of DB2 type BIGINT NOT NULL and Oracle type NUMBER NOT NULL.

The following is a description of this column:

The category group identifier as described in the CATGROUP_ID column of the CATGROUP table.

Parameters:
aCatGroupId1 - A category group identifier
Returns:
void

setCatGroupId

public void setCatGroupId(java.lang.String aCatGroupId1)

This method provides access to the PESTATS.CATGROUP_ID column of DB2 type BIGINT NOT NULL and Oracle type NUMBER NOT NULL.

The following is a description of this column:

The category group identifier as described in the CATGROUP_ID column of the CATGROUP table.

Specified by:
setCatGroupId in interface ProductExplorerStatisticsAccessBeanData
Parameters:
aCatGroupId1 - A category group identifier
Returns:
void

setFeatureId

public void setFeatureId(java.lang.Integer aFeatureId1)

This method provides access to the PESTATS.FEATURE_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.

The following is a description of this column:

This is the feature identifier as described in the FEATUREID column of the ICEXPLFEAT table.

Parameters:
aFeatureId1 - A feature identifier
Returns:
void

setFeatureId

public void setFeatureId(java.lang.String aFeatureId1)

This method provides access to the PESTATS.FEATURE_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.

The following is a description of this column:

This is the feature identifier as described in the FEATUREID column of the ICEXPLFEAT table.

Specified by:
setFeatureId in interface ProductExplorerStatisticsAccessBeanData
Parameters:
aFeatureId1 - A feature identifier
Returns:
void

setInitKey_catGroupId

public void setInitKey_catGroupId(java.lang.String aInitKey_catGroupId1)

Set the primary key for this object

Parameters:
aInitKey_catGroupId1 - A category group identifier
Returns:
void

setInitKey_featureId

public void setInitKey_featureId(java.lang.String aInitKey_featureId1)

Set the primary key for this object

Parameters:
aInitKey_featureId1 - A feature identifier
Returns:
void

setInitKey_storeId

public void setInitKey_storeId(java.lang.String aInitKey_storeId1)

Set the primary key for this object

Parameters:
aInitKey_storeId1 - A store entity identifier
Returns:
void

setPeCount

public void setPeCount(java.lang.Integer aPeCount1)

This method provides access to the PESTATS.COUNT column of DB2 type INTEGER NULL and Oracle type INTEGER NULL.

The following is a description of this column:

The total number of times this a feature was searched for in Product Explorer.

Parameters:
aPeCount1 - The total number of times this a feature was searched for in Product Explorer
Returns:
void

setPeCount

public void setPeCount(java.lang.String aPeCount1)

This method provides access to the PESTATS.COUNT column of DB2 type INTEGER NULL and Oracle type INTEGER NULL.

The following is a description of this column:

The total number of times this a feature was searched for in Product Explorer.

Specified by:
setPeCount in interface ProductExplorerStatisticsAccessBeanData
Parameters:
aPeCount1 - The total number of times this a feature was searched for in Product Explorer
Returns:
void

setPeFeatureName

public void setPeFeatureName(java.lang.String aPeFeatureName1)

This method provides access to the PESTATS.FEATURENAME column of DB2 type VARCHAR(64) NULL and Oracle type VARCHAR2(64) NULL.

The following is a description of this column:

This is the feature name as described in the NAME column of the ICEXPLDESC table.

Specified by:
setPeFeatureName in interface ProductExplorerStatisticsAccessBeanData
Parameters:
aPeFeatureName1 - A feature name
Returns:
void

setStoreId

public void setStoreId(java.lang.Integer aStoreId1)

This method provides access to the PESTATS.STOREENT_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.

The following is a description of this column:

The store entity identifier as described in the STOREENT_ID column of the STOREENT table.

Parameters:
aStoreId1 - A store entity identifier
Returns:
void

setStoreId

public void setStoreId(java.lang.String aStoreId1)

This method provides access to the PESTATS.STOREENT_ID column of DB2 type INTEGER NOT NULL and Oracle type INTEGER NOT NULL.

The following is a description of this column:

The store entity identifier as described in the STOREENT_ID column of the STOREENT table.

Specified by:
setStoreId in interface ProductExplorerStatisticsAccessBeanData
Parameters:
aStoreId1 - A store entity identifier
Returns:
void