public class CollateralAccessBean
extends com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
implements com.ibm.commerce.marketingcenter.campaign.objects.CollateralAccessBeanData
Constructor and Description |
---|
CollateralAccessBean()
Zero argument constructor used to initialize the access bean.
|
CollateralAccessBean(javax.ejb.EJBObject o) |
CollateralAccessBean(EntityBeanCreationData collateralEntityCreationData)
Maps to a corresponding ejbCreate method in the home interface of the EJB.
|
CollateralAccessBean(java.lang.Integer arg1, java.lang.String arg2, java.lang.Integer arg3, java.lang.Integer arg4)
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 | findByStore(java.lang.Integer storeId)
This finder returns all the collateral in an enumeration with the given store reference number.
|
CollateralAccessBean | findByStoreAndName(java.lang.Integer storeId, java.lang.String name)
This finder returns the collateral in a bean with the given store reference number and the collateral name.
|
java.util.Enumeration | findByStoreAndType(java.lang.Integer storeId, java.lang.Integer type)
This finder returns all the collateral in an enumeration with the given store and collateral type reference number.
|
java.util.Enumeration | findByStoreAndTypeWithOrder(java.lang.Integer storeId, java.lang.Integer typeId, java.lang.String orderCol, java.lang.Integer languageId)
This finder returns all the collateral in an enumeration with the given store and collateral type reference number, sorted by the given column.
|
java.util.Enumeration | findByStoreSortedByName(java.lang.Integer storeId)
This finder returns all the collateral in an enumeration with the given store reference number, sorted by name.
|
java.util.Enumeration | findByStoreSortedByType(java.lang.Integer storeId)
This finder returns all the collateral in an enumeration with the given store reference number, sorted by the collateral type.
|
java.util.Enumeration | findByStoreWithOrder(java.lang.Integer storeId, java.lang.String orderCol, java.lang.Integer languageId)
This finder returns all the collateral in an enumeration with the given store reference number, sorted by the given column.
|
boolean | fulfills(java.lang.Long arg0, java.lang.String arg1) |
java.lang.String | getCollateralId() |
java.lang.Integer | getCollateralIdInEJBType() |
java.lang.String | getCustomerField1() |
java.lang.String | getCustomerField2() |
java.lang.String | getName() |
java.lang.Long | getOwner() |
java.lang.String | getStoreId() |
java.lang.Integer | getStoreIdInEJBType() |
java.lang.String | getType() |
java.lang.Integer | getTypeInEJBType() |
java.lang.String | getUrlLink() |
protected void | instantiateEJB() |
protected boolean | instantiateEJBByPrimaryKey() |
void | refreshCopyHelper() |
void | setCollateralId(java.lang.Integer newValue) |
void | setCollateralId(java.lang.String newValue) |
void | setCustomerField1(java.lang.String newValue) |
void | setCustomerField2(java.lang.String newValue) |
void | setInitKey_collateralId(java.lang.String newValue) |
void | setName(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) |
void | setUrlLink(java.lang.String newValue) |
public CollateralAccessBean()
public CollateralAccessBean(javax.ejb.EJBObject o) throws java.rmi.RemoteException
public CollateralAccessBean(java.lang.Integer arg1, java.lang.String arg2, java.lang.Integer arg3, java.lang.Integer arg4) throws javax.ejb.CreateException, java.rmi.RemoteException, javax.naming.NamingException
public CollateralAccessBean(EntityBeanCreationData collateralEntityCreationData) throws javax.naming.NamingException, javax.ejb.FinderException, javax.ejb.CreateException, java.rmi.RemoteException
public CollateralAccessBean findByStoreAndName(java.lang.Integer storeId, java.lang.String name) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1 WHERE (T1.STOREENT_ID = storeId AND T1.NAME = name)
public java.util.Enumeration findByStore(java.lang.Integer storeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1 WHERE (T1.STOREENT_ID = storeId)
public java.util.Enumeration findByStoreAndType(java.lang.Integer storeId, java.lang.Integer type) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1 WHERE (T1.STOREENT_ID = storeId AND T1.TYPE = type)
public java.util.Enumeration findByStoreAndTypeWithOrder(java.lang.Integer storeId, java.lang.Integer typeId, java.lang.String orderCol, java.lang.Integer languageId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1, COLLDESC T2 WHERE T1.STOREENT_ID = storeId AND T1.COLLTYPE_ID = typeId AND T2.LANGUAGE_ID = languageId AND T2.COLLATERAL_ID = T1.COLLATERAL_ID ORDER BY orderCol
public java.util.Enumeration findByStoreSortedByName(java.lang.Integer storeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1 WHERE (T1.STOREENT_ID = storeId) order by T1.NAME
public java.util.Enumeration findByStoreSortedByType(java.lang.Integer storeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1 WHERE (T1.STOREENT_ID = storeId) order by T1.COLLTYPE_ID
public java.util.Enumeration findByStoreWithOrder(java.lang.Integer storeId, java.lang.String orderCol, java.lang.Integer languageId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1, COLLDESC T2 WHERE T1.STOREENT_ID = storeId AND T2.LANGUAGE_ID = languageId AND T2.COLLATERAL_ID = T1.COLLATERAL_ID ORDER BY orderCol
public void setInitKey_collateralId(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 getCollateralId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public java.lang.Integer getCollateralIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setCollateralId(java.lang.String newValue)
public void setCollateralId(java.lang.Integer newValue)
public java.lang.String getUrlLink() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setUrlLink(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 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 java.lang.String getCustomerField2() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setCustomerField2(java.lang.String newValue)
public java.lang.String getCustomerField1() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
public void setCustomerField1(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