com.ibm.commerce.fulfillment.objects
Class OrderItemCalculationCodeAccessBean

java.lang.Object
  |
  +--com.ibm.ivj.ejb.runtime.AbstractAccessBean
        |
        +--com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
              |
              +--com.ibm.commerce.fulfillment.objects.OrderItemCalculationCodeAccessBean
All Implemented Interfaces:
OrderItemCalculationCodeAccessBeanData, java.io.Serializable

public class OrderItemCalculationCodeAccessBean
extends com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
implements OrderItemCalculationCodeAccessBeanData

This bean provides access to the ORDICALCD table.

The following is a description of this table:

Each row of this table indicates to the CalculationCodeCombineMethod that a CalculationCode is directly attached to an OrderItem. The attachment is not effective unless the directCalculationCodeAttachment flag in ORDERITEMS.PREPAREFLAGS is 1.

See Also:
Serialized Form

Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef
 
Constructor Summary
OrderItemCalculationCodeAccessBean()
          Default constructor.
OrderItemCalculationCodeAccessBean(javax.ejb.EJBObject aEJBObject)
          Creates an access bean for the specified EJB.
 
Method Summary
 void commitCopyHelper()
          Update(flush) data to the EJBObject (persistent storage).
 java.util.Enumeration findByOrderItemId(java.lang.Long aOrderItemId)
          Retrieves the OrderItemCalculationCodeAccessBeans that match the specified OrderItem.
 java.util.Enumeration findByOrderItems(java.lang.Long[] aOrderItemIds)
          Retrieves the OrderItemCalculationCodeAccessBeans that match the specified OrderItems.
 java.lang.String getCalculationCodeId()
          This method provides access to the ORDICALCD.CALCODE_ID column of DB2 type INTEGER NOT NULL.
 java.lang.Integer getCalculationCodeIdInEJBType()
          This method provides access to the ORDICALCD.CALCODE_ID column of DB2 type INTEGER NOT NULL.
 java.lang.String getCalculationFlags()
          This method provides access to the ORDICALCD.CALFLAGS column of DB2 type INTEGER NOT NULL.
 java.lang.Integer getCalculationFlagsInEJBType()
          This method provides access to the ORDICALCD.CALFLAGS column of DB2 type INTEGER NOT NULL.
 java.lang.String getCalculationParameterAmount()
          This method provides access to the ORDICALCD.CALPARMAMT column of DB2 type DECIMAL(20,5) NOT NULL.
 java.math.BigDecimal getCalculationParameterAmountInEJBType()
          This method provides access to the ORDICALCD.CALPARMAMT column of DB2 type DECIMAL(20,5) NOT NULL.
 java.lang.String getCalculationParameterType()
          This method provides access to the ORDICALCD.CALPARMTYPE column of DB2 type INTEGER NOT NULL.
 java.lang.Integer getCalculationParameterTypeInEJBType()
          This method provides access to the ORDICALCD.CALPARMTYPE column of DB2 type INTEGER NOT NULL.
 java.lang.String getOrderItemCalculationCodeId()
          This method provides access to the ORDICALCD.ORDICALCD_ID column of DB2 type BIGINT NOT NULL.
 java.lang.Long getOrderItemCalculationCodeIdInEJBType()
          This method provides access to the ORDICALCD.ORDICALCD_ID column of DB2 type BIGINT NOT NULL.
 java.lang.String getOrderItemId()
          This method provides access to the ORDICALCD.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.
 java.lang.Long getOrderItemIdInEJBType()
          This method provides access to the ORDICALCD.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.
 void refreshCopyHelper()
          Load data from the EJBObject.
 void setCalculationCodeId(java.lang.Integer aCalculationCodeId)
          This method provides access to the ORDICALCD.CALCODE_ID column of DB2 type INTEGER NOT NULL.
 void setCalculationCodeId(java.lang.String aCalculationCodeId)
          This method provides access to the ORDICALCD.CALCODE_ID column of DB2 type INTEGER NOT NULL.
 void setCalculationFlags(java.lang.Integer aCalculationFlags)
          This method provides access to the ORDICALCD.CALFLAGS column of DB2 type INTEGER NOT NULL.
 void setCalculationFlags(java.lang.String aCalculationFlags)
          This method provides access to the ORDICALCD.CALFLAGS column of DB2 type INTEGER NOT NULL.
 void setCalculationParameterAmount(java.math.BigDecimal aCalculationParameterAmount)
          This method provides access to the ORDICALCD.CALPARMAMT column of DB2 type DECIMAL(20,5) NOT NULL.
 void setCalculationParameterAmount(java.lang.String aCalculationParameterAmount)
          This method provides access to the ORDICALCD.CALPARMAMT column of DB2 type DECIMAL(20,5) NOT NULL.
 void setCalculationParameterType(java.lang.Integer aCalculationParameterType)
          This method provides access to the ORDICALCD.CALPARMTYPE column of DB2 type INTEGER NOT NULL.
 void setCalculationParameterType(java.lang.String aCalculationParameterType)
          This method provides access to the ORDICALCD.CALPARMTYPE column of DB2 type INTEGER NOT NULL.
 void setInitKey_orderItemCalculationCodeId(java.lang.String aInitKey_orderItemCalculationCodeId)
          Set the primary key for this object
 void setOrderItemCalculationCodeId(java.lang.Long aOrderItemCalculationCodeId)
          This method provides access to the ORDICALCD.ORDICALCD_ID column of DB2 type BIGINT NOT NULL.
 void setOrderItemCalculationCodeId(java.lang.String aOrderItemCalculationCodeId)
          This method provides access to the ORDICALCD.ORDICALCD_ID column of DB2 type BIGINT NOT NULL.
 void setOrderItemId(java.lang.Long aOrderItemId)
          This method provides access to the ORDICALCD.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.
 void setOrderItemId(java.lang.String aOrderItemId)
          This method provides access to the ORDICALCD.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.
 
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
__getCache, __getCache, __getKey, __setCache, __setCache, __setKey, commitCopyHelper, createAccessBeans, createAccessBeans, instantiateEJBByPrimaryKey, refreshCopyHelper, setEJBRef
 
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean
defaultJNDIName, defaultNameServiceType, defaultNameServiceURL, getEJBRef, getGlobalHome, getHome, getInit_GlobalNameServiceTypeName, getInit_GlobalNameServiceURLName, getInit_JNDIName, getInit_NameServiceTypeName, getInit_NameServiceURLName, getInitContext, getInitContext, instantiateEJB, resetEJBRef, resetHomeCache, setInit_GlobalNameServiceTypeName, setInit_GlobalNameServiceURLName, setInit_JNDIName, setInit_NameServiceTypeName, setInit_NameServiceURLName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OrderItemCalculationCodeAccessBean

public OrderItemCalculationCodeAccessBean()

Default constructor. Maps to findByPrimaryKey.


OrderItemCalculationCodeAccessBean

public OrderItemCalculationCodeAccessBean(javax.ejb.EJBObject aEJBObject)
                                   throws java.rmi.RemoteException

Creates an access bean for the specified EJB.

Parameters:
aEJBObject - The EJB Object used for the access bean construction.
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
Method Detail

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).

Overrides:
commitCopyHelper in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByOrderItemId

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

Retrieves the OrderItemCalculationCodeAccessBeans that match the specified OrderItem.

The SQL query used to fetch all the required rows from the ORDICALCD table is:
SELECT * FROM ORDICALCD T1 WHERE
T1.ORDERITEMS_ID = ?

Parameters:
aOrderItemId - the OrderItem ID
Returns:
An Enumeration of all the OrderItemCalculationCodeAccessBeans 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 - The javax.naming.NamingException exception

findByOrderItems

public java.util.Enumeration findByOrderItems(java.lang.Long[] aOrderItemIds)
                                       throws java.rmi.RemoteException,
                                              javax.ejb.FinderException,
                                              javax.naming.NamingException

Retrieves the OrderItemCalculationCodeAccessBeans that match the specified OrderItems.

The SQL query used to fetch all the required rows from the ORDICALCD table is:
SELECT * FROM ORDICALCD T1 WHERE
T1.ORDERITEMS_ID IN (?, ...)

Parameters:
aOrderItemIds - the OrderItem IDs
Returns:
An Enumeration of all the OrderItemCalculationCodeAccessBeans 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 - The javax.naming.NamingException exception

getCalculationCodeId

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

This method provides access to the ORDICALCD.CALCODE_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The CalculationCode.

Specified by:
getCalculationCodeId in interface OrderItemCalculationCodeAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getCalculationCodeIdInEJBType

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

This method provides access to the ORDICALCD.CALCODE_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The CalculationCode.

Returns:
java.lang.Integer
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getCalculationFlags

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

This method provides access to the ORDICALCD.CALFLAGS column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Contains the following bit flag:
1 = overrideIndirectAttachments - CalculationCodes indirectly attached to the OrderItem are not effective.
(CalculationCodes can be indirectly attached in the CATENCALCD and CATGPCALCD tables.)

Specified by:
getCalculationFlags in interface OrderItemCalculationCodeAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getCalculationFlagsInEJBType

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

This method provides access to the ORDICALCD.CALFLAGS column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Contains the following bit flag:
1 = overrideIndirectAttachments - CalculationCodes indirectly attached to the OrderItem are not effective.
(CalculationCodes can be indirectly attached in the CATENCALCD and CATGPCALCD tables.)

Returns:
java.lang.Integer
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getCalculationParameterAmount

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

This method provides access to the ORDICALCD.CALPARMAMT column of DB2 type DECIMAL(20,5) NOT NULL.

The following is a description of this column:

The amount of a fixed or percentage adjustment that can be applied to adjust or replace the results of the CalculationScales associated with the attached CalculationCode.

Specified by:
getCalculationParameterAmount in interface OrderItemCalculationCodeAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getCalculationParameterAmountInEJBType

public java.math.BigDecimal getCalculationParameterAmountInEJBType()
                                                            throws java.rmi.RemoteException,
                                                                   javax.ejb.CreateException,
                                                                   javax.ejb.FinderException,
                                                                   javax.naming.NamingException

This method provides access to the ORDICALCD.CALPARMAMT column of DB2 type DECIMAL(20,5) NOT NULL.

The following is a description of this column:

The amount of a fixed or percentage adjustment that can be applied to adjust or replace the results of the CalculationScales associated with the attached CalculationCode.

Returns:
java.math.BigDecimal
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getCalculationParameterType

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

This method provides access to the ORDICALCD.CALPARMTYPE column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Indicates how CALPARMAMT is used.
0 = not used.
1 = fixed adjustment.
2 = percentage adjustment.
3 = fixed replacement.

Specified by:
getCalculationParameterType in interface OrderItemCalculationCodeAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getCalculationParameterTypeInEJBType

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

This method provides access to the ORDICALCD.CALPARMTYPE column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Indicates how CALPARMAMT is used.
0 = not used.
1 = fixed adjustment.
2 = percentage adjustment.
3 = fixed replacement.

Returns:
java.lang.Integer
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getOrderItemCalculationCodeId

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

This method provides access to the ORDICALCD.ORDICALCD_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Generated unique key.

Specified by:
getOrderItemCalculationCodeId in interface OrderItemCalculationCodeAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getOrderItemCalculationCodeIdInEJBType

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

This method provides access to the ORDICALCD.ORDICALCD_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Generated unique key.

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

getOrderItemId

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

This method provides access to the ORDICALCD.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The OrderItem.

Specified by:
getOrderItemId in interface OrderItemCalculationCodeAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getOrderItemIdInEJBType

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

This method provides access to the ORDICALCD.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The OrderItem.

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

refreshCopyHelper

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

Load data from the EJBObject.

Overrides:
refreshCopyHelper in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

setCalculationCodeId

public void setCalculationCodeId(java.lang.Integer aCalculationCodeId)

This method provides access to the ORDICALCD.CALCODE_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The CalculationCode.

Parameters:
aCalculationCodeId - java.lang.Integer
Returns:
void

setCalculationCodeId

public void setCalculationCodeId(java.lang.String aCalculationCodeId)

This method provides access to the ORDICALCD.CALCODE_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The CalculationCode.

Specified by:
setCalculationCodeId in interface OrderItemCalculationCodeAccessBeanData
Parameters:
aCalculationCodeId - java.lang.String
Returns:
void

setCalculationFlags

public void setCalculationFlags(java.lang.Integer aCalculationFlags)

This method provides access to the ORDICALCD.CALFLAGS column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Contains the following bit flag:
1 = overrideIndirectAttachments - CalculationCodes indirectly attached to the OrderItem are not effective.
(CalculationCodes can be indirectly attached in the CATENCALCD and CATGPCALCD tables.)

Parameters:
aCalculationFlags - java.lang.Integer
Returns:
void

setCalculationFlags

public void setCalculationFlags(java.lang.String aCalculationFlags)

This method provides access to the ORDICALCD.CALFLAGS column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Contains the following bit flag:
1 = overrideIndirectAttachments - CalculationCodes indirectly attached to the OrderItem are not effective.
(CalculationCodes can be indirectly attached in the CATENCALCD and CATGPCALCD tables.)

Specified by:
setCalculationFlags in interface OrderItemCalculationCodeAccessBeanData
Parameters:
aCalculationFlags - java.lang.String
Returns:
void

setCalculationParameterAmount

public void setCalculationParameterAmount(java.math.BigDecimal aCalculationParameterAmount)

This method provides access to the ORDICALCD.CALPARMAMT column of DB2 type DECIMAL(20,5) NOT NULL.

The following is a description of this column:

The amount of a fixed or percentage adjustment that can be applied to adjust or replace the results of the CalculationScales associated with the attached CalculationCode.

Parameters:
aCalculationParameterAmount - java.math.BigDecimal
Returns:
void

setCalculationParameterAmount

public void setCalculationParameterAmount(java.lang.String aCalculationParameterAmount)

This method provides access to the ORDICALCD.CALPARMAMT column of DB2 type DECIMAL(20,5) NOT NULL.

The following is a description of this column:

The amount of a fixed or percentage adjustment that can be applied to adjust or replace the results of the CalculationScales associated with the attached CalculationCode.

Specified by:
setCalculationParameterAmount in interface OrderItemCalculationCodeAccessBeanData
Parameters:
aCalculationParameterAmount - java.lang.String
Returns:
void

setCalculationParameterType

public void setCalculationParameterType(java.lang.Integer aCalculationParameterType)

This method provides access to the ORDICALCD.CALPARMTYPE column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Indicates how CALPARMAMT is used.
0 = not used.
1 = fixed adjustment.
2 = percentage adjustment.
3 = fixed replacement.

Parameters:
aCalculationParameterType - java.lang.Integer
Returns:
void

setCalculationParameterType

public void setCalculationParameterType(java.lang.String aCalculationParameterType)

This method provides access to the ORDICALCD.CALPARMTYPE column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Indicates how CALPARMAMT is used.
0 = not used.
1 = fixed adjustment.
2 = percentage adjustment.
3 = fixed replacement.

Specified by:
setCalculationParameterType in interface OrderItemCalculationCodeAccessBeanData
Parameters:
aCalculationParameterType - java.lang.String
Returns:
void

setInitKey_orderItemCalculationCodeId

public void setInitKey_orderItemCalculationCodeId(java.lang.String aInitKey_orderItemCalculationCodeId)

Set the primary key for this object

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

setOrderItemCalculationCodeId

public void setOrderItemCalculationCodeId(java.lang.Long aOrderItemCalculationCodeId)

This method provides access to the ORDICALCD.ORDICALCD_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Generated unique key.

Parameters:
aOrderItemCalculationCodeId - java.lang.Long
Returns:
void

setOrderItemCalculationCodeId

public void setOrderItemCalculationCodeId(java.lang.String aOrderItemCalculationCodeId)

This method provides access to the ORDICALCD.ORDICALCD_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Generated unique key.

Specified by:
setOrderItemCalculationCodeId in interface OrderItemCalculationCodeAccessBeanData
Parameters:
aOrderItemCalculationCodeId - java.lang.String
Returns:
void

setOrderItemId

public void setOrderItemId(java.lang.Long aOrderItemId)

This method provides access to the ORDICALCD.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The OrderItem.

Parameters:
aOrderItemId - java.lang.Long
Returns:
void

setOrderItemId

public void setOrderItemId(java.lang.String aOrderItemId)

This method provides access to the ORDICALCD.ORDERITEMS_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The OrderItem.

Specified by:
setOrderItemId in interface OrderItemCalculationCodeAccessBeanData
Parameters:
aOrderItemId - java.lang.String
Returns:
void