This is a Home interface for the Entity Bean
Method Summary | |
ProductAdvisorStatistics | create(java.lang.Integer arg1, java.lang.Integer arg2, java.lang.Long arg3) Maps to a corresponding ejbCreate method in the home interface of the EJB |
ProductAdvisorStatistics | create(java.lang.Integer aMetaphorTypeId, java.lang.Integer aStoreId, java.lang.Long aCatGroupId, java.lang.Integer aPACount) Maps to a corresponding ejbCreate method in the home interface of the EJB |
java.util.Enumeration | findByCatGroupIdAndStoreId(java.lang.Long cGID, java.lang.Integer sID) This method returns an Enumeration of ProductAdvisorStatisticsAccessBean for the given category group identifier and store entity identifier. |
java.util.Enumeration | findByMetaphorTypeIdAndStoreId(java.lang.Integer mTID, java.lang.Integer sID) This method returns an Enumeration of ProductAdvisorStatisticsAccessBean for the given metaphor type identifier and store entity identifier. |
ProductAdvisorStatistics | findByPrimaryKey(ProductAdvisorStatisticsKey key) findByPrimaryKey method comment |
java.util.Enumeration | findByStoreId(java.lang.Integer sID) This method returns an Enumeration of ProductAdvisorStatisticsAccessBean for the given store entity identifier. |
Method Detail |
public ProductAdvisorStatistics create(java.lang.Integer arg1, java.lang.Integer arg2, java.lang.Long arg3) throws javax.ejb.CreateException, java.rmi.RemoteException
Maps to a corresponding ejbCreate method in the home interface of the EJB
public ProductAdvisorStatistics create(java.lang.Integer aMetaphorTypeId, java.lang.Integer aStoreId, java.lang.Long aCatGroupId, java.lang.Integer aPACount) throws javax.ejb.CreateException, java.rmi.RemoteException
Maps to a corresponding ejbCreate method in the home interface of the EJB
public java.util.Enumeration findByCatGroupIdAndStoreId(java.lang.Long cGID, java.lang.Integer sID) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of ProductAdvisorStatisticsAccessBean for the given category group identifier and store entity identifier.
SQL:
SELECT * FROM PASTATS WHERE CATGROUP_ID = cGID AND STOREENT_ID =sID
public java.util.Enumeration findByMetaphorTypeIdAndStoreId(java.lang.Integer mTID, java.lang.Integer sID) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of ProductAdvisorStatisticsAccessBean for the given metaphor type identifier and store entity identifier.
SQL:
SELECT * FROM PASTATS WHERE METAPHORTYPE_ID = mTID AND STOREENT_ID =sID
public ProductAdvisorStatistics findByPrimaryKey(ProductAdvisorStatisticsKey key) throws java.rmi.RemoteException, javax.ejb.FinderException
public java.util.Enumeration findByStoreId(java.lang.Integer sID) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of ProductAdvisorStatisticsAccessBean for the given store entity identifier.
SQL:
SELECT * FROM PASTATS WHERE STOREENT_ID =sID GROUP BY CATGROUP_ID, METAPHORTYPE, STOREENT_ID, COUNT ORDER BY CATGROUP_ID, METAPHORTYPE
(C) Copyright IBM Corporation 1996, 2005. All Rights Reserved.