com.ibm.commerce.contract.objects
Class PolicyTCRelationAccessBean

java.lang.Object
  com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
      com.ibm.commerce.contract.objects.PolicyTCRelationAccessBean
All Implemented Interfaces:
PolicyTCRelationAccessBeanData

public class PolicyTCRelationAccessBean
extends com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
implements PolicyTCRelationAccessBeanData

This table stores information about which business policy is referenced by a specific term or condition. This access bean corresponds to the database table 'POLICYTC'.

See Also:
Serialized Form

Constructor Summary
PolicyTCRelationAccessBean()
Zero argument constructor used to initialize the access bean.
PolicyTCRelationAccessBean(javax.ejb.EJBObject o)
constructor
PolicyTCRelationAccessBean(java.lang.Long policyId, java.lang.Long tcId)
Constructs an PolicyTCRelation object with the specified business policy ID, and the term condition ID.
Method Summary
void commitCopyHelper()
Update(flush) data to the EJBObject (persistent storage).
protected java.lang.String defaultJNDIName()
java.util.Enumeration findByPolicy(java.lang.Long argPolicyReferenceNumber)
Retrieves an Enumeration of PolicyTCRelationAccessBeans representing all business policy and term conation relationships with the specified business policy ID.
java.util.Enumeration findByTC(java.lang.Long argTCReferenceNumber)
Retrieves all business policy and the Terms and Conditions relationships with the specified term condition ID.
java.util.Enumeration findByTCAndPolicyType(java.lang.Long argTCReferenceNumber, java.lang.String argPolicyType)
Retrieves an Enumeration of PolicyTCRelationAccessBeans representing all business policy and term condition relationships with the specified term condition ID, and the business policy type.
java.lang.String getPolicyReferenceNumber()
This method provides access to the POLICYTC.POLICY_ID column of DB2 type BIGINT NOT NULL.
java.lang.Long getPolicyReferenceNumberInEJBType()
This method provides access to the POLICYTC.POLICY_ID column of DB2 type BIGINT NOT NULL.
java.lang.String getTcReferenceNumber()
This method provides access to the POLICYTC.TERMCOND_ID column of DB2 type BIGINT NOT NULL.
java.lang.Long getTcReferenceNumberInEJBType()
This method provides access to the POLICYTC.TERMCOND_ID column of DB2 type BIGINT NOT NULL.
protected void instantiateEJB()
protected boolean instantiateEJBByPrimaryKey()
void refreshCopyHelper()
Load data from the EJBObject.
void setInitKey_policyReferenceNumber(java.lang.String newValue)
Set the primary key for this object
void setInitKey_tcReferenceNumber(java.lang.String newValue)
Set the primary key for this object
void setPolicyReferenceNumber(java.lang.Long newValue)
This method accesses a non-CMP field
void setPolicyReferenceNumber(java.lang.String newValue)
This method accesses a non-CMP field
void setTcReferenceNumber(java.lang.Long newValue)
This method accesses a non-CMP field
void setTcReferenceNumber(java.lang.String newValue)
This method accesses a non-CMP field
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Detail

PolicyTCRelationAccessBean

public PolicyTCRelationAccessBean()
Zero argument constructor used to initialize the access bean. This constructor corresponds to the following home interface method: public abstract com.ibm.commerce.contract.objects.PolicyTCRelation com.ibm.commerce.contract.objimpl.PolicyTCRelationHomeBase.findByPrimaryKey(com.ibm.commerce.contract.objects.PolicyTCRelationKey) throws java.rmi.RemoteException,javax.ejb.FinderException The home interface method properties need to be set by calling the following setter methods before calling any business methods: setInitKey_policyReferenceNumber( java.lang.Long ) setInitKey_tcReferenceNumber( java.lang.Long )

PolicyTCRelationAccessBean

public PolicyTCRelationAccessBean(javax.ejb.EJBObject o)
                           throws java.rmi.RemoteException
constructor
Parameters:
o - javax.ejb.EJBObject
Throws:
java.rmi.RemoteException

PolicyTCRelationAccessBean

public PolicyTCRelationAccessBean(java.lang.Long policyId,
                                  java.lang.Long tcId)
                           throws javax.ejb.CreateException,
                                  java.rmi.RemoteException,
                                  javax.naming.NamingException

Constructs an PolicyTCRelation object with the specified business policy ID, and the term condition ID.

Parameters:
policyId - java.lang.Long
tcId - The terms and conditions ID.
Throws:
javax.ejb.CreateException - The javax.ejb.CreateException exception
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.naming.NamingException
Method Detail

findByPolicy

public java.util.Enumeration findByPolicy(java.lang.Long argPolicyReferenceNumber)
                                   throws java.rmi.RemoteException,
                                          javax.ejb.FinderException,
                                          javax.naming.NamingException

Retrieves an Enumeration of PolicyTCRelationAccessBeans representing all business policy and term conation relationships with the specified business policy ID.

The SQL query used to fetch the required rows from the POLICYTC table is:

select * from policytc T1 where T1.policy_id = ?

Parameters:
argPolicyReferenceNumber - The business policy ID.
Returns:
An Enumeration of all the PolicyTCRelationAccessBeans representing rows that match the search criteria.
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException

findByTC

public java.util.Enumeration findByTC(java.lang.Long argTCReferenceNumber)
                               throws java.rmi.RemoteException,
                                      javax.ejb.FinderException,
                                      javax.naming.NamingException

Retrieves all business policy and the Terms and Conditions relationships with the specified term condition ID.

The SQL query used to fetch the required rows from the POLICYTC table is:

select * from policytc T1 where T1.termcond_id = ?

Parameters:
argTCReferenceNumber - The terms and conditions ID.
Returns:
An Enumeration of all the PolicyTCRelationAccessBeans representing rows that match the search criteria.
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException

findByTCAndPolicyType

public java.util.Enumeration findByTCAndPolicyType(java.lang.Long argTCReferenceNumber,
                                                   java.lang.String argPolicyType)
                                            throws java.rmi.RemoteException,
                                                   javax.ejb.FinderException,
                                                   javax.naming.NamingException

Retrieves an Enumeration of PolicyTCRelationAccessBeans representing all business policy and term condition relationships with the specified term condition ID, and the business policy type.

The SQL query used to fetch the required rows from the POLICYTC table is:

select * from policytc T1 where T1.termcond_id = ? and policy_id in (select policy_id from policy where policytype_id = ?)

Parameters:
argTCReferenceNumber - The terms and conditions ID.
argPolicyType - The business policy type.
Returns:
An Enumeration of all the PolicyTCRelationAccessBeans representing rows that match the search criteria.
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException

setInitKey_policyReferenceNumber

public void setInitKey_policyReferenceNumber(java.lang.String newValue)

Set the primary key for this object

Parameters:
newValue - java.lang.String
Returns:
void

setInitKey_tcReferenceNumber

public void setInitKey_tcReferenceNumber(java.lang.String newValue)

Set the primary key for this object

Parameters:
newValue - java.lang.String
Returns:
void

defaultJNDIName

protected java.lang.String defaultJNDIName()
Returns:
String

instantiateEJB

protected void instantiateEJB()
                       throws java.rmi.RemoteException,
                              javax.ejb.FinderException,
                              javax.naming.NamingException
Returns:
void
Throws:
java.rmi.RemoteException
javax.ejb.FinderException
javax.naming.NamingException

instantiateEJBByPrimaryKey

protected boolean instantiateEJBByPrimaryKey()
                                      throws java.rmi.RemoteException,
                                             javax.ejb.CreateException,
                                             javax.naming.NamingException
Returns:
boolean
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.naming.NamingException

commitCopyHelper

public void commitCopyHelper()
                      throws java.rmi.RemoteException,
                             javax.ejb.CreateException,
                             javax.ejb.FinderException,
                             javax.naming.NamingException

Update(flush) data to the EJBObject (persistent storage).

Returns:
void
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

refreshCopyHelper

public void refreshCopyHelper()
                       throws java.rmi.RemoteException,
                              javax.ejb.CreateException,
                              javax.ejb.FinderException,
                              javax.naming.NamingException

Load data from the EJBObject.

Returns:
void
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

getPolicyReferenceNumber

public java.lang.String getPolicyReferenceNumber()
                                          throws java.rmi.RemoteException,
                                                 javax.ejb.CreateException,
                                                 javax.ejb.FinderException,
                                                 javax.naming.NamingException

This method provides access to the POLICYTC.POLICY_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The policy ID.

Specified by:
getPolicyReferenceNumber in interface PolicyTCRelationAccessBeanData
Returns:
String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

getPolicyReferenceNumberInEJBType

public java.lang.Long getPolicyReferenceNumberInEJBType()
                                                 throws java.rmi.RemoteException,
                                                        javax.ejb.CreateException,
                                                        javax.ejb.FinderException,
                                                        javax.naming.NamingException

This method provides access to the POLICYTC.POLICY_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The policy ID.

Returns:
java.lang.Long
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setPolicyReferenceNumber

public void setPolicyReferenceNumber(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setPolicyReferenceNumber in interface PolicyTCRelationAccessBeanData

setPolicyReferenceNumber

public void setPolicyReferenceNumber(java.lang.Long newValue)
This method accesses a non-CMP field

getTcReferenceNumber

public java.lang.String getTcReferenceNumber()
                                      throws java.rmi.RemoteException,
                                             javax.ejb.CreateException,
                                             javax.ejb.FinderException,
                                             javax.naming.NamingException

This method provides access to the POLICYTC.TERMCOND_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The terms and conditions ID.

Specified by:
getTcReferenceNumber in interface PolicyTCRelationAccessBeanData
Returns:
String
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

getTcReferenceNumberInEJBType

public java.lang.Long getTcReferenceNumberInEJBType()
                                             throws java.rmi.RemoteException,
                                                    javax.ejb.CreateException,
                                                    javax.ejb.FinderException,
                                                    javax.naming.NamingException

This method provides access to the POLICYTC.TERMCOND_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The terms and conditions ID.

Returns:
java.lang.Long
Throws:
java.rmi.RemoteException
javax.ejb.CreateException
javax.ejb.FinderException
javax.naming.NamingException

setTcReferenceNumber

public void setTcReferenceNumber(java.lang.String newValue)
This method accesses a non-CMP field
Specified by:
setTcReferenceNumber in interface PolicyTCRelationAccessBeanData

setTcReferenceNumber

public void setTcReferenceNumber(java.lang.Long newValue)
This method accesses a non-CMP field

Feedback