com.ibm.commerce.fulfillment.objects
Class CalculationRangeLookupResultBean

com.ibm.commerce.fulfillment.objects.CalculationRangeLookupResultBean
All Implemented Interfaces:
java.io.Serializable

public class CalculationRangeLookupResultBean
implements java.io.Serializable

This bean provides access to the CALRLOOKUP table.

The following is a description of this table:

Each row in this table represents a CalculationRangeLookupResult, which is part of a CalculationRange.

See Also:
Serialized Form

Constructor Summary
CalculationRangeLookupResultBean()
           
 
Method Summary
 java.lang.Integer getCalculationRangeId()
          This method provides access to the CALRLOOKUP.CALRANGE_ID column of DB2 type INTEGER NOT NULL.
 java.lang.Integer getCalculationRangeLookupResultId()
          This method provides access to the CALRLOOKUP.CALRLOOKUP_ID column of DB2 type INTEGER NOT NULL.
 java.lang.String getCurrency()
          This method provides access to the CALRLOOKUP.SETCCURR column of DB2 type CHAR(3) NULL.
 java.math.BigDecimal getValue()
          This method provides access to the CALRLOOKUP.VALUE column of DB2 type DECIMAL(20,5) NOT NULL.
 void setCalculationRangeId(java.lang.Integer aCalculationRangeId)
          This method provides access to the CALRLOOKUP.CALRANGE_ID column of DB2 type INTEGER NOT NULL.
 void setCurrency(java.lang.String aCurrency)
          This method provides access to the CALRLOOKUP.SETCCURR column of DB2 type CHAR(3) NULL.
 void setValue(java.math.BigDecimal aValue)
          This method provides access to the CALRLOOKUP.VALUE column of DB2 type DECIMAL(20,5) NOT NULL.
 

Constructor Detail

CalculationRangeLookupResultBean

public CalculationRangeLookupResultBean()
Method Detail

getCalculationRangeId

public java.lang.Integer getCalculationRangeId()

This method provides access to the CALRLOOKUP.CALRANGE_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The CalculationRange of which this CalculationRangeLookupResult is a part.

Returns:
java.lang.Integer

getCalculationRangeLookupResultId

public java.lang.Integer getCalculationRangeLookupResultId()

This method provides access to the CALRLOOKUP.CALRLOOKUP_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Generated unique identifier.

Returns:
java.lang.Integer

getCurrency

public java.lang.String getCurrency()

This method provides access to the CALRLOOKUP.SETCCURR column of DB2 type CHAR(3) NULL.

The following is a description of this column:

If specified, this is the currency of the monetary amount in the VALUE column. This is a currency code as per ISO 4217 standards.

Returns:
java.lang.String

getValue

public java.math.BigDecimal getValue()

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

The following is a description of this column:

The value of the CalculationRangeLookupResult, used by the CalculationRangeMethod of the CalculationRange to determine a monetary result.

Returns:
java.math.BigDecimal

setCalculationRangeId

public void setCalculationRangeId(java.lang.Integer aCalculationRangeId)

This method provides access to the CALRLOOKUP.CALRANGE_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The CalculationRange of which this CalculationRangeLookupResult is a part.

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

setCurrency

public void setCurrency(java.lang.String aCurrency)

This method provides access to the CALRLOOKUP.SETCCURR column of DB2 type CHAR(3) NULL.

The following is a description of this column:

If specified, this is the currency of the monetary amount in the VALUE column. This is a currency code as per ISO 4217 standards.

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

setValue

public void setValue(java.math.BigDecimal aValue)

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

The following is a description of this column:

The value of the CalculationRangeLookupResult, used by the CalculationRangeMethod of the CalculationRange to determine a monetary result.

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