com.ibm.commerce.ordermanagement.objects
Class RMATaxBean

com.ibm.commerce.ordermanagement.objects.RMATaxBean
All Implemented Interfaces:
java.io.Serializable

public class RMATaxBean
implements java.io.Serializable

This bean provides access to the RMATAX table.

The following is a description of this table:

This table stores return merchandise authorization (RMA) tax credits.

See Also:
Serialized Form

Constructor Summary
RMATaxBean()
           
 
Method Summary
 java.sql.Timestamp getLastUpdate()
          This method provides access to the RMATAX.LASTUPDATE column of DB2 type TIMESTAMP NOT NULL.
 java.lang.Long getRmaId()
          This method provides access to the RMATAX.RMA_ID column of DB2 type BIGINT NOT NULL.
 java.math.BigDecimal getTaxAmount()
          This method provides access to the RMATAX.TAXAMOUNT column of DB2 type DECIMAL(20,5) NOT NULL.
 java.lang.Integer getTaxCategoryId()
          This method provides access to the RMATAX.TAXCGRY_ID column of DB2 type INTEGER NOT NULL.
 void setLastUpdate(java.sql.Timestamp aLastUpdate)
          This method provides access to the RMATAX.LASTUPDATE column of DB2 type TIMESTAMP NOT NULL.
 void setRmaId(java.lang.Long aRmaId)
          This method provides access to the RMATAX.RMA_ID column of DB2 type BIGINT NOT NULL.
 void setTaxAmount(java.math.BigDecimal aTaxAmount)
          This method provides access to the RMATAX.TAXAMOUNT column of DB2 type DECIMAL(20,5) NOT NULL.
 void setTaxCategoryId(java.lang.Integer aTaxCategoryId)
          This method provides access to the RMATAX.TAXCGRY_ID column of DB2 type INTEGER NOT NULL.
 

Constructor Detail

RMATaxBean

public RMATaxBean()
Method Detail

getLastUpdate

public java.sql.Timestamp getLastUpdate()

This method provides access to the RMATAX.LASTUPDATE column of DB2 type TIMESTAMP NOT NULL.

The following is a description of this column:

Timestamp of the last update.

Returns:
java.sql.Timestamp

getRmaId

public java.lang.Long getRmaId()

This method provides access to the RMATAX.RMA_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The ID of the RMA for which this tax amount applies.

Returns:
java.lang.Long

getTaxAmount

public java.math.BigDecimal getTaxAmount()

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

The following is a description of this column:

Tax amount in the currency of the RMA.

Returns:
java.math.BigDecimal

getTaxCategoryId

public java.lang.Integer getTaxCategoryId()

This method provides access to the RMATAX.TAXCGRY_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The TaxCategory.

Returns:
java.lang.Integer

setLastUpdate

public void setLastUpdate(java.sql.Timestamp aLastUpdate)

This method provides access to the RMATAX.LASTUPDATE column of DB2 type TIMESTAMP NOT NULL.

The following is a description of this column:

Timestamp of the last update.

Parameters:
aLastUpdate - java.sql.Timestamp
Returns:
void

setRmaId

public void setRmaId(java.lang.Long aRmaId)

This method provides access to the RMATAX.RMA_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The ID of the RMA for which this tax amount applies.

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

setTaxAmount

public void setTaxAmount(java.math.BigDecimal aTaxAmount)

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

The following is a description of this column:

Tax amount in the currency of the RMA.

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

setTaxCategoryId

public void setTaxCategoryId(java.lang.Integer aTaxCategoryId)

This method provides access to the RMATAX.TAXCGRY_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The TaxCategory.

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