java.lang.Object | +--com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean | +--com.ibm.commerce.marketingcenter.campaign.objects.CollateralAccessBean
Reserved for IBM internal use.
Constructor Summary | |
---|---|
CollateralAccessBean() constructor | |
CollateralAccessBean(java.lang.Integer arg0, java.lang.String arg1,
java.lang.Integer arg2, java.lang.Integer arg3) constructor | |
CollateralAccessBean(javax.ejb.EJBObject o) constructor |
Method Summary | |
---|---|
void |
commitCopyHelper() Update(flush) data to the EJBObject (persistent storage). |
protected
java.lang.String |
defaultJNDIName() |
java.util.Enumeration |
findByStore(java.lang.Integer arg0) This finder returns all the collateral in an enumeration with the given store reference number. |
CollateralAccessBean |
findByStoreAndName(java.lang.Integer arg0,
java.lang.String arg1) 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 arg0,
java.lang.Integer arg1) 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 arg0,
java.lang.Integer arg1, java.lang.String arg2,
java.lang.Integer arg3) 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 arg0) 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 arg0) 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 arg0, java.lang.String arg1,
java.lang.Integer arg2) 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() This method provides access to the COLLATERAL.COLLATERAL_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getCollateralIdInEJBType() This method provides access to the COLLATERAL.COLLATERAL_ID column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getCustomerField1() This method provides access to the COLLATERAL.FIELD1 column of DB2 type VARCHAR(254). |
java.lang.String |
getCustomerField2() This method provides access to the COLLATERAL.FIELD2 column of DB2 type VARCHAR(254). |
java.lang.String |
getName() This method provides access to the COLLATERAL.NAME column of DB2 type VARCHAR(30). |
java.lang.Long |
getOwner() This method accesses a non-CMP field |
java.lang.String |
getStoreId() This method provides access to the COLLATERAL.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getStoreIdInEJBType() This method provides access to the COLLATERAL.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getType() This method provides access to the COLLATERAL.COLLTYPE_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getTypeInEJBType() This method provides access to the COLLATERAL.COLLTYPE_ID column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getUrlLink() This method provides access to the COLLATERAL.URL column of DB2 type VARCHAR(254). |
protected
void |
instantiateEJB() |
protected
boolean |
instantiateEJBByPrimaryKey() |
void |
refreshCopyHelper() Load data from the EJBObject. |
void |
setCollateralId(java.lang.Integer newValue) This method provides access to the COLLATERAL.COLLATERAL_ID column of DB2 type INTEGER NOT NULL. |
void |
setCollateralId(java.lang.String newValue) This method provides access to the COLLATERAL.COLLATERAL_ID column of DB2 type INTEGER NOT NULL. |
void |
setCustomerField1(java.lang.String newValue) This method provides access to the COLLATERAL.FIELD1 column of DB2 type VARCHAR(254). |
void |
setCustomerField2(java.lang.String newValue) This method provides access to the COLLATERAL.FIELD2 column of DB2 type VARCHAR(254). |
void |
setInitKey_collateralId(java.lang.String newValue) Set the primary key for this object |
void |
setName(java.lang.String newValue) This method provides access to the COLLATERAL.NAME column of DB2 type VARCHAR(30). |
void |
setStoreId(java.lang.Integer newValue) This method provides access to the COLLATERAL.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
void |
setStoreId(java.lang.String newValue) This method provides access to the COLLATERAL.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
void |
setType(java.lang.Integer newValue) This method provides access to the COLLATERAL.COLLTYPE_ID column of DB2 type INTEGER NOT NULL. |
void |
setType(java.lang.String newValue) This method provides access to the COLLATERAL.COLLTYPE_ID column of DB2 type INTEGER NOT NULL. |
void |
setUrlLink(java.lang.String newValue) This method provides access to the COLLATERAL.URL column of DB2 type VARCHAR(254). |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll,
toString, wait, wait, wait |
Constructor Detail |
---|
public CollateralAccessBean()
public CollateralAccessBean(javax.ejb.EJBObject o) throws java.rmi.RemoteException
o
- javax.ejb.EJBObjectjava.rmi.RemoteException
public CollateralAccessBean(java.lang.Integer arg0, java.lang.String arg1, java.lang.Integer arg2, java.lang.Integer arg3) throws javax.ejb.CreateException, java.rmi.RemoteException, javax.naming.NamingException
arg0
- java.lang.Integerarg1
- java.lang.Stringarg2
- java.lang.Integerarg3
- java.lang.Integerjavax.ejb.CreateException
java.rmi.RemoteException
javax.naming.NamingException
Method Detail |
---|
public CollateralAccessBean findByStoreAndName(java.lang.Integer arg0, java.lang.String arg1) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1 WHERE (T1.STOREENT_ID = storeId AND T1.NAME = name)
java.rmi.RemoteException
- - Thrown when the ejbCreate method
is failed to invoke.javax.ejb.FinderException
- - Thrown when the finding of the
requested EJB object failed.javax.naming.NamingException
public java.util.Enumeration findByStore(java.lang.Integer arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1 WHERE (T1.STOREENT_ID = storeId)
java.rmi.RemoteException
- - Thrown when the ejbCreate method
is failed to invoke.javax.ejb.FinderException
- - Thrown when the finding of the
requested EJB object failed.javax.naming.NamingException
public java.util.Enumeration findByStoreAndType(java.lang.Integer arg0, java.lang.Integer arg1) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1 WHERE (T1.STOREENT_ID = storeId AND T1.TYPE = type)
java.rmi.RemoteException
- - Thrown when the ejbCreate method
is failed to invoke.javax.ejb.FinderException
- - Thrown when the finding of the
requested EJB object failed.javax.naming.NamingException
public java.util.Enumeration findByStoreAndTypeWithOrder(java.lang.Integer arg0, java.lang.Integer arg1, java.lang.String arg2, java.lang.Integer arg3) 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
java.rmi.RemoteException
- - Thrown when the ejbCreate method
is failed to invoke.javax.ejb.FinderException
- - Thrown when the finding of the
requested EJB object failed.javax.naming.NamingException
public java.util.Enumeration findByStoreSortedByName(java.lang.Integer arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
SQL:
SELECT * FROM COLLATERAL T1 WHERE (T1.STOREENT_ID = storeId) order by T1.NAME
java.rmi.RemoteException
- - Thrown when the ejbCreate method
is failed to invoke.javax.ejb.FinderException
- - Thrown when the finding of the
requested EJB object failed.javax.naming.NamingException
public java.util.Enumeration findByStoreSortedByType(java.lang.Integer arg0) 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
java.rmi.RemoteException
- - Thrown when the ejbCreate method
is failed to invoke.javax.ejb.FinderException
- - Thrown when the finding of the
requested EJB object failed.javax.naming.NamingException
public java.util.Enumeration findByStoreWithOrder(java.lang.Integer arg0, java.lang.String arg1, java.lang.Integer arg2) 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
java.rmi.RemoteException
- - Thrown when the ejbCreate method
is failed to invoke.javax.ejb.FinderException
- - Thrown when the finding of the
requested EJB object failed.javax.naming.NamingException
public void setInitKey_collateralId(java.lang.String newValue)
Set the primary key for this object
newValue
- java.lang.Stringprotected java.lang.String defaultJNDIName()
protected void instantiateEJB() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
java.rmi.RemoteException
javax.ejb.FinderException
javax.naming.NamingException
protected boolean instantiateEJBByPrimaryKey() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.naming.NamingException
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
Update(flush) data to the EJBObject (persistent storage).
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
Load data from the EJBObject.
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
This method provides access to the COLLATERAL.COLLATERAL_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
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
This method provides access to the COLLATERAL.COLLATERAL_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setCollateralId(java.lang.String newValue)
This method provides access to the COLLATERAL.COLLATERAL_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
newValue
- Stringpublic void setCollateralId(java.lang.Integer newValue)
This method provides access to the COLLATERAL.COLLATERAL_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
newValue
- java.lang.Integerpublic java.lang.String getUrlLink() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the COLLATERAL.URL column of DB2 type VARCHAR(254).
The following is a description of this column:
Reserved for IBM internal use.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setUrlLink(java.lang.String newValue)
This method provides access to the COLLATERAL.URL column of DB2 type VARCHAR(254).
The following is a description of this column:
Reserved for IBM internal use.
newValue
- java.lang.Stringpublic java.lang.String getStoreId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the COLLATERAL.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
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
This method provides access to the COLLATERAL.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setStoreId(java.lang.String newValue)
This method provides access to the COLLATERAL.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
newValue
- Stringpublic void setStoreId(java.lang.Integer newValue)
This method provides access to the COLLATERAL.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
newValue
- java.lang.Integerpublic java.lang.String getType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the COLLATERAL.COLLTYPE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
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
This method provides access to the COLLATERAL.COLLTYPE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setType(java.lang.String newValue)
This method provides access to the COLLATERAL.COLLTYPE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
newValue
- Stringpublic void setType(java.lang.Integer newValue)
This method provides access to the COLLATERAL.COLLTYPE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
newValue
- java.lang.Integerpublic java.lang.String getName() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the COLLATERAL.NAME column of DB2 type VARCHAR(30).
The following is a description of this column:
Reserved for IBM internal use.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setName(java.lang.String newValue)
This method provides access to the COLLATERAL.NAME column of DB2 type VARCHAR(30).
The following is a description of this column:
Reserved for IBM internal use.
newValue
- java.lang.Stringpublic java.lang.String getCustomerField2() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the COLLATERAL.FIELD2 column of DB2 type VARCHAR(254).
The following is a description of this column:
Reserved for IBM internal use.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setCustomerField2(java.lang.String newValue)
This method provides access to the COLLATERAL.FIELD2 column of DB2 type VARCHAR(254).
The following is a description of this column:
Reserved for IBM internal use.
newValue
- java.lang.Stringpublic java.lang.String getCustomerField1() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the COLLATERAL.FIELD1 column of DB2 type VARCHAR(254).
The following is a description of this column:
Reserved for IBM internal use.
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException
public void setCustomerField1(java.lang.String newValue)
This method provides access to the COLLATERAL.FIELD1 column of DB2 type VARCHAR(254).
The following is a description of this column:
Reserved for IBM internal use.
newValue
- java.lang.Stringpublic boolean fulfills(java.lang.Long arg0, java.lang.String arg1) throws java.rmi.RemoteException, java.lang.Exception, javax.ejb.FinderException, javax.naming.NamingException
arg0
- java.lang.Longarg1
- java.lang.Stringjava.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
java.lang.Exception
java.rmi.RemoteException
javax.ejb.FinderException
javax.naming.NamingException