This is a Home interface for the Entity Bean
Method Summary | |
---|---|
CampaignStatistics |
create(java.lang.Integer arg1, java.lang.Integer arg2,
java.lang.Integer arg3) Maps to a corresponding ejbCreate method in the home interface of the EJB |
CampaignStatistics |
create(java.lang.Integer aMpeId, java.lang.Integer anInitiativeId,
java.lang.Integer aStoreId, java.lang.Integer aMpeTypeId,
java.lang.String aMpeName, java.lang.String anInitiativeName,
java.lang.String aMpeTypeName, java.lang.Integer newClicks,
java.lang.Integer newViews) Maps to a corresponding ejbCreate method in the home interface of the EJB |
java.util.Enumeration |
findAll() This method returns an Enumeration of CampaignStatisticsAccessBean. |
java.util.Enumeration |
findAllOrderByClickCount() This method returns an Enumeration of CampaignStatisticsAccessBean ordered by click count. |
java.util.Enumeration |
findAllOrderByMpeName() This method returns an Enumeration of CampaignStatisticsAccessBean ordered by e-Marketing Spot name. |
java.util.Enumeration |
findAllOrderByViewCount() This method returns an Enumeration of CampaignStatisticsAccessBean ordered by the views count. |
java.util.Enumeration |
findByInitiativeId(java.lang.Integer initiativeId) This method returns an Enumeration of CampaignStatisticsAccessBean for the given initiative identifier. |
java.util.Enumeration |
findByInitiativeIdOrderByClickCount(java.lang.Integer initiativeId) This method returns an Enumeration of CampaignStatisticsAccessBean for the given initiative identifier ordered by the clicks count. |
java.util.Enumeration |
findByInitiativeIdOrderByMpeName(java.lang.Integer initiativeId) This method returns an Enumeration of CampaignStatisticsAccessBean for the given initiative identifier ordered by e-Marketing Spot name. |
java.util.Enumeration |
findByInitiativeIdOrderByViewCount(java.lang.Integer initiativeId) This method returns an Enumeration of CampaignStatisticsAccessBean for the given initiative identifier ordered by the view count. |
java.util.Enumeration |
findByMpeId(java.lang.Integer mpeId) This method returns an Enumeration of CampaignStatisticsAccessBean for the given e-Marketing Spot identifier. |
java.util.Enumeration |
findByMpeIdOrderByClickCount(java.lang.Integer mpeId) This method returns an Enumeration of CampaignStatisticsAccessBean for the given e-Marketing Spot identifier ordered by the clicks count. |
java.util.Enumeration |
findByMpeIdOrderByMpeName(java.lang.Integer mpeId) This method returns an Enumeration of CampaignStatisticsAccessBean for the given e-Marketing Spot identifier ordered by e-Marketing Spot name. |
java.util.Enumeration |
findByMpeIdOrderByViewCount(java.lang.Integer mpeId) This method returns an Enumeration of CampaignStatisticsAccessBean for the given e-Marketing Spot identifier ordered by the view count. |
CampaignStatistics |
findByPrimaryKey(
CampaignStatisticsKey key)
findByPrimaryKey method comment |
Method Detail |
---|
public CampaignStatistics create(java.lang.Integer arg1, java.lang.Integer arg2, java.lang.Integer arg3) throws javax.ejb.CreateException, java.rmi.RemoteException
Maps to a corresponding ejbCreate method in the home interface of the EJB
arg1
- A e-Marketing Spot identifierarg2
- A initiative identifierarg3
- A store entity identifierjavax.ejb.CreateException
- The javax.ejb.CreateException
exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionpublic CampaignStatistics create(java.lang.Integer aMpeId, java.lang.Integer anInitiativeId, java.lang.Integer aStoreId, java.lang.Integer aMpeTypeId, java.lang.String aMpeName, java.lang.String anInitiativeName, java.lang.String aMpeTypeName, java.lang.Integer newClicks, java.lang.Integer newViews) throws javax.ejb.CreateException, java.rmi.RemoteException
Maps to a corresponding ejbCreate method in the home interface of the EJB
aMpeId
- A e-Marketing Spot identifieraStoreId
- A store entity identifieraMpeTypeId
- A e-Marketing Spot type identifieraMpeName
- A e-Marketing Spot nameaMpeTypeName
- A e-Marketing Spot namenewClicks
- The number of times the e-Marketing Spot
recommendation was clicked by customersnewViews
- The number of times (impressions) an e-Marketing
Spot recommendation was shown to customersjavax.ejb.CreateException
- The javax.ejb.CreateException
exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionpublic java.util.Enumeration findAll() throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean.
SQL: SELECT * FROM CPGNSTATS WHERE 1=1
java.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findAllOrderByClickCount() throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean ordered by click count.
SQL: SELECT * FROM CPGNSTATS WHERE 1=1 ORDER BY CLICKS
java.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findAllOrderByMpeName() throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean ordered by e-Marketing Spot name.
SQL: SELECT * FROM CPGNSTATS WHERE 1=1 ORDER BY MPENAME
java.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findAllOrderByViewCount() throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean ordered by the views count.
SQL: SELECT * FROM CPGNSTATS WHERE 1=1 ORDER BY VIEWS
java.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findByInitiativeId(java.lang.Integer initiativeId) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean for the given initiative identifier.
SQL:
SELECT * FROM CPGNSTATS WHERE INITIATIVE_ID = initiativeId
initiativeId
- A initiative identifierjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findByInitiativeIdOrderByClickCount(java.lang.Integer initiativeId) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean for the given initiative identifier ordered by the clicks count.
SQL:
SELECT * FROM CPGNSTATS WHERE INITIATIVE_ID = initiativeId ORDER BY
CLICKS
initiativeId
- A initiative identifierjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findByInitiativeIdOrderByMpeName(java.lang.Integer initiativeId) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean for the given initiative identifier ordered by e-Marketing Spot name.
SQL:
SELECT * FROM CPGNSTATS WHERE INITIATIVE_ID = initiativeId ORDER BY
MPENAME
initiativeId
- A initiative identifierjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findByInitiativeIdOrderByViewCount(java.lang.Integer initiativeId) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean for the given initiative identifier ordered by the view count.
SQL:
SELECT * FROM CPGNSTATS WHERE INITIATIVE_ID = initiativeId ORDER BY
VIEWS
initiativeId
- java.lang.Integerjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findByMpeId(java.lang.Integer mpeId) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean for the given e-Marketing Spot identifier.
SQL:
SELECT * FROM CPGNSTATS WHERE MPE_ID = mpeId
mpeId
- A e-Marketing Spot identifierjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findByMpeIdOrderByClickCount(java.lang.Integer mpeId) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean for the given e-Marketing Spot identifier ordered by the clicks count.
SQL:
SELECT * FROM CPGNSTATS WHERE MPE_ID = mpeId ORDER BY CLICKS
mpeId
- A e-Marketing Spot identifierjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findByMpeIdOrderByMpeName(java.lang.Integer mpeId) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean for the given e-Marketing Spot identifier ordered by e-Marketing Spot name.
SQL:
SELECT * FROM CPGNSTATS WHERE MPE_ID = mpeId ORDER BY MPENAME
mpeId
- A e-Marketing Spot identifierjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic java.util.Enumeration findByMpeIdOrderByViewCount(java.lang.Integer mpeId) throws java.rmi.RemoteException, javax.ejb.FinderException
This method returns an Enumeration of CampaignStatisticsAccessBean for the given e-Marketing Spot identifier ordered by the view count.
SQL:
SELECT * FROM CPGNSTATS WHERE MPE_ID = mpeId ORDER BY VIEWS
mpeId
- A e-Marketing Spot identifierjava.rmi.RemoteException
- The java.rmi.RemoteException
exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException
exceptionpublic CampaignStatistics findByPrimaryKey(CampaignStatisticsKey key) throws java.rmi.RemoteException, javax.ejb.FinderException
key
-
com.ibm.commerce.marketingcenter.events.objects.CampaignStatisticsKeyjava.rmi.RemoteException
- The exception description.javax.ejb.FinderException
- The exception
description.