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
public 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
public 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
public 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
public 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
public 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
public 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
public 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
public 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
public 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
public 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
public 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
public 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
public 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
public CampaignStatistics findByPrimaryKey(CampaignStatisticsKey key) throws java.rmi.RemoteException, javax.ejb.FinderException
(C) Copyright IBM Corporation 1996, 2005. All Rights Reserved.