public class InitiativeAccessBean
extends com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
implements com.ibm.commerce.marketingcenter.objects.InitiativeAccessBeanData
Constructor and Description |
---|
InitiativeAccessBean()
Zero argument constructor used to initialize the access bean.
|
InitiativeAccessBean(javax.ejb.EJBObject o) |
InitiativeAccessBean(EntityBeanCreationData ecd)
Maps to a corresponding ejbCreate method in the home interface of the EJB.
|
InitiativeAccessBean(java.lang.Integer initiativeId, java.lang.Integer storeId, java.lang.String name, java.sql.Timestamp lastUpdateDate, java.lang.String lastUpdatedBy)
Maps to a corresponding ejbCreate method in the home interface of the EJB.
|
InitiativeAccessBean(java.lang.Integer storeId, java.lang.String name, java.sql.Timestamp lastUpdateDate, java.lang.String lastUpdatedBy)
Maps to a corresponding ejbCreate method in the home interface of the EJB.
|
Modifier and Type | Method and Description |
---|---|
void | commitCopyHelper() |
protected java.lang.String | defaultJNDIName() |
java.util.Enumeration | findAllByStoreIdSortedBy(java.lang.Integer storeId, java.lang.String orderBy)
This finder returns all the initiatives in an enumeration with the given store reference number, sorted by the given column.
|
java.util.Enumeration | findAllByStoreIdSortedByDescription(java.lang.Integer storeId)
This finder returns all the initiatives in an enumeration with the given store reference number, sorted by description.
|
java.util.Enumeration | findAllByStoreIdSortedByLastUpdate(java.lang.Integer storeId)
This finder returns all the initiatives in an enumeration with the given store reference number, sorted by the last updated date.
|
java.util.Enumeration | findAllByStoreIdSortedByLastUpdatedBy(java.lang.Integer storeId)
This finder returns all the initiatives in an enumeration with the given store reference number, sorted by the logon of the individual who last updated the initiative.
|
java.util.Enumeration | findAllByStoreIdSortedByName(java.lang.Integer storeId)
This finder returns all the initiatives in an enumeration with the given store reference number, sorted by name.
|
java.util.Enumeration | findByCampaignId(java.lang.Integer campaignId)
This finder returns the initiative in a bean with the given campaign ID.
|
InitiativeAccessBean | findByStoreIdAndName(java.lang.Integer storeId, java.lang.String name)
This finder returns the initiative in a bean with the given store reference number and initiative name.
|
boolean | fulfills(java.lang.Long arg0, java.lang.String arg1) |
java.lang.String | getCampaignId() |
java.lang.Integer | getCampaignIdInEJBType() |
java.lang.String | getDescription() |
java.lang.String | getField1() |
java.lang.String | getInitiativeId() |
java.lang.Integer | getInitiativeIdInEJBType() |
java.lang.String | getLastUpdateDate() |
java.sql.Timestamp | getLastUpdateDateInEJBType() |
java.lang.String | getLastUpdatedBy() |
java.lang.String | getName() |
java.lang.Long | getOwner() |
java.lang.String | getResultType() |
java.lang.String | getRule() |
java.lang.String | getSellType() |
java.lang.Integer | getSellTypeInEJBType() |
java.lang.String | getStatus() |
java.lang.String | getStoreId() |
java.lang.Integer | getStoreIdInEJBType() |
java.lang.String | getType() |
java.lang.Integer | getTypeInEJBType() |
protected void | instantiateEJB() |
protected boolean | instantiateEJBByPrimaryKey() |
void | refreshCopyHelper() |
void | setCampaignId(java.lang.Integer newValue) |
void | setCampaignId(java.lang.String newValue) |
void | setDescription(java.lang.String newValue) |
void | setField1(java.lang.String newValue) |
void | setInitiativeId(java.lang.Integer newValue) |
void | setInitiativeId(java.lang.String newValue) |
void | setInitKey_initiativeId(java.lang.String newValue) |
void | setLastUpdateDate(java.lang.String newValue) |
void | setLastUpdateDate(java.sql.Timestamp newValue) |
void | setLastUpdatedBy(java.lang.String newValue) |
void | setName(java.lang.String newValue) |
void | setResultType(java.lang.String newValue) |
void | setRule(java.lang.String newValue) |
void | setSellType(java.lang.Integer newValue) |
void | setSellType(java.lang.String newValue) |
void | setStatus(java.lang.String newValue) |
void | setStoreId(java.lang.Integer newValue) |
void | setStoreId(java.lang.String newValue) |
void | setType(java.lang.Integer newValue) |
void | setType(java.lang.String newValue) |
public InitiativeAccessBean()
public InitiativeAccessBean(javax.ejb.EJBObject o) throws java.rmi.RemoteException
public InitiativeAccessBean(java.lang.Integer initiativeId, java.lang.Integer storeId, java.lang.String name, java.sql.Timestamp lastUpdateDate, java.lang.String lastUpdatedBy) throws javax.ejb.CreateException, java.rmi.RemoteException, javax.naming.NamingException
public InitiativeAccessBean(java.lang.Integer storeId, java.lang.String name, java.sql.Timestamp lastUpdateDate, java.lang.String lastUpdatedBy) throws javax.naming.NamingException, javax.ejb.CreateException, java.rmi.RemoteException, javax.ejb.FinderException
public InitiativeAccessBean(EntityBeanCreationData ecd) throws javax.naming.NamingException, javax.ejb.FinderException, javax.ejb.CreateException, java.rmi.RemoteException
public InitiativeAccessBean findByStoreIdAndName(java.lang.Integer storeId, java.lang.String name) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM INITIATIVE T1 WHERE (T1.storeent_id = storeId and T1.name = name)
public java.util.Enumeration findAllByStoreIdSortedBy(java.lang.Integer storeId, java.lang.String orderBy) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM INITIATIVE T1 WHERE (T1.storeent_id = storeId) order by T1.orderBy
public java.util.Enumeration findAllByStoreIdSortedByDescription(java.lang.Integer storeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM INITIATIVE T1 WHERE (T1.storeent_id = storeId) order by T1.description
public java.util.Enumeration findAllByStoreIdSortedByLastUpdate(java.lang.Integer storeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM INITIATIVE T1 WHERE (T1.storeent_id = storeId) order by T1.lastupdate
public java.util.Enumeration findAllByStoreIdSortedByLastUpdatedBy(java.lang.Integer storeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM INITIATIVE T1 WHERE (T1.storeent_id = storeId) order by T1.lastupdatedby
public java.util.Enumeration findAllByStoreIdSortedByName(java.lang.Integer storeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM INITIATIVE T1 WHERE (T1.storeent_id = storeId) order by T1.name
public void setInitKey_initiativeId(java.lang.String newValue)
protected java.lang.String defaultJNDIName()
protected void instantiateEJB() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
protected boolean instantiateEJBByPrimaryKey() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.naming.NamingException
public void commitCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void refreshCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public java.lang.String getDescription() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setDescription(java.lang.String newValue)
public java.lang.String getResultType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setResultType(java.lang.String newValue)
public java.lang.String getLastUpdatedBy() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setLastUpdatedBy(java.lang.String newValue)
public java.lang.String getRule() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setRule(java.lang.String newValue)
public java.lang.String getSellType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public java.lang.Integer getSellTypeInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setSellType(java.lang.String newValue)
public void setSellType(java.lang.Integer newValue)
public java.lang.String getLastUpdateDate() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public java.sql.Timestamp getLastUpdateDateInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setLastUpdateDate(java.lang.String newValue)
public void setLastUpdateDate(java.sql.Timestamp newValue)
public java.lang.String getInitiativeId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public java.lang.Integer getInitiativeIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setInitiativeId(java.lang.String newValue)
public void setInitiativeId(java.lang.Integer newValue)
public java.lang.String getField1() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setField1(java.lang.String newValue)
public java.lang.String getStoreId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public java.lang.Integer getStoreIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setStoreId(java.lang.String newValue)
public void setStoreId(java.lang.Integer newValue)
public java.lang.String getCampaignId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public java.lang.Integer getCampaignIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setCampaignId(java.lang.String newValue)
public void setCampaignId(java.lang.Integer newValue)
public java.lang.String getStatus() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setStatus(java.lang.String newValue)
public java.lang.String getType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public java.lang.Integer getTypeInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setType(java.lang.String newValue)
public void setType(java.lang.Integer newValue)
public java.lang.String getName() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setName(java.lang.String newValue)
public boolean fulfills(java.lang.Long arg0, java.lang.String arg1) throws java.rmi.RemoteException, java.lang.Exception, javax.ejb.FinderException, javax.naming.NamingException
public java.lang.Long getOwner() throws java.lang.Exception, java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
public java.util.Enumeration findByCampaignId(java.lang.Integer campaignId) throws javax.naming.NamingException, javax.ejb.FinderException, java.rmi.RemoteException
SQL:
SELECT * FROM INITIATIVE T1 WHERE (T1.CAMPAIGN_ID = campaignId)