|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
com.ibm.commerce.taxation.objects.TaxCategoryBean
This bean provides access to the TAXCGRY table.
The following is a description of this table:
Each row in this table represents a TaxCategory.
Constructor Summary | |
TaxCategoryBean()
|
Method Summary | |
java.lang.Double |
getCalculationSequence()
This method provides access to the TAXCGRY.CALCULATIONSEQ column of DB2 type FLOAT NOT NULL. |
java.lang.Integer |
getCategoryId()
This method provides access to the TAXCGRY.TAXCGRY_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Double |
getDisplaySequence()
This method provides access to the TAXCGRY.DISPLAYSEQ column of DB2 type FLOAT NOT NULL. |
java.lang.Integer |
getDisplayUsage()
This method provides access to the TAXCGRY.DISPLAYUSAGE column of DB2 type INTEGER NOT NULL. |
java.math.BigDecimal |
getField1()
This method provides access to the TAXCGRY.FIELD1 column of DB2 type DECIMAL(20,5) NULL. |
java.math.BigDecimal |
getField2()
This method provides access to the TAXCGRY.FIELD2 column of DB2 type DECIMAL(20,5) NULL. |
java.lang.String |
getField3()
This method provides access to the TAXCGRY.FIELD3 column of DB2 type VARCHAR(254) NULL. |
java.lang.Integer |
getMarkForDelete()
This method provides access to the TAXCGRY.MARKFORDELETE column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getName()
This method provides access to the TAXCGRY.NAME column of DB2 type CHAR(15) NULL. |
java.lang.Integer |
getStoreEntityId()
This method provides access to the TAXCGRY.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getTypeId()
This method provides access to the TAXCGRY.TAXTYPE_ID column of DB2 type INTEGER NOT NULL. |
void |
setCalculationSequence(java.lang.Double aCalculationSequence)
This method provides access to the TAXCGRY.CALCULATIONSEQ column of DB2 type FLOAT NOT NULL. |
void |
setCategoryId(java.lang.Integer aCategoryId)
This method provides access to the TAXCGRY.TAXCGRY_ID column of DB2 type INTEGER NOT NULL. |
void |
setDisplaySequence(java.lang.Double aDisplaySequence)
This method provides access to the TAXCGRY.DISPLAYSEQ column of DB2 type FLOAT NOT NULL. |
void |
setDisplayUsage(java.lang.Integer aDisplayUsage)
This method provides access to the TAXCGRY.DISPLAYUSAGE column of DB2 type INTEGER NOT NULL. |
void |
setField1(java.math.BigDecimal aField1)
This method provides access to the TAXCGRY.FIELD1 column of DB2 type DECIMAL(20,5) NULL. |
void |
setField2(java.math.BigDecimal aField2)
This method provides access to the TAXCGRY.FIELD2 column of DB2 type DECIMAL(20,5) NULL. |
void |
setField3(java.lang.String aField3)
This method provides access to the TAXCGRY.FIELD3 column of DB2 type VARCHAR(254) NULL. |
void |
setMarkForDelete(java.lang.Integer aMarkForDelete)
This method provides access to the TAXCGRY.MARKFORDELETE column of DB2 type INTEGER NOT NULL. |
void |
setName(java.lang.String aName)
This method provides access to the TAXCGRY.NAME column of DB2 type CHAR(15) NULL. |
void |
setStoreEntityId(java.lang.Integer aStoreEntityId)
This method provides access to the TAXCGRY.STOREENT_ID column of DB2 type INTEGER NOT NULL. |
void |
setTypeId(java.lang.Integer aTypeId)
This method provides access to the TAXCGRY.TAXTYPE_ID column of DB2 type INTEGER NOT NULL. |
Constructor Detail |
public TaxCategoryBean()
Method Detail |
public java.lang.Double getCalculationSequence()
This method provides access to the TAXCGRY.CALCULATIONSEQ column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
Tax amounts are calculated in ascending order of CALCULATIONSEQ.
public java.lang.Integer getCategoryId()
This method provides access to the TAXCGRY.TAXCGRY_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Generated primary key.
public java.lang.Double getDisplaySequence()
This method provides access to the TAXCGRY.DISPLAYSEQ column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
A user interface can use this field to control the sequence of tax amounts displayed for an Order.
public java.lang.Integer getDisplayUsage()
This method provides access to the TAXCGRY.DISPLAYUSAGE column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Specifies that this tax category in relation to the PriceDataBean as follows:
0 = is not calculated
1 = is calculated
The PriceDataBean can be used to obtain tax amounts that should be shown along with the product price.
public java.math.BigDecimal getField1()
This method provides access to the TAXCGRY.FIELD1 column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
Customizable.
public java.math.BigDecimal getField2()
This method provides access to the TAXCGRY.FIELD2 column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
Customizable.
public java.lang.String getField3()
This method provides access to the TAXCGRY.FIELD3 column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
Customizable.
public java.lang.Integer getMarkForDelete()
This method provides access to the TAXCGRY.MARKFORDELETE column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
public java.lang.String getName()
This method provides access to the TAXCGRY.NAME column of DB2 type CHAR(15) NULL.
The following is a description of this column:
A name that, along with the StoreEntity, uniquely identifies this TaxCategory.
public java.lang.Integer getStoreEntityId()
This method provides access to the TAXCGRY.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The StoreEntity of which this TaxCategory is a part.
public java.lang.Integer getTypeId()
This method provides access to the TAXCGRY.TAXTYPE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The TaxType of this Tax category.
public void setCalculationSequence(java.lang.Double aCalculationSequence)
This method provides access to the TAXCGRY.CALCULATIONSEQ column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
Tax amounts are calculated in ascending order of CALCULATIONSEQ.
aCalculationSequence
- java.lang.Doublepublic void setCategoryId(java.lang.Integer aCategoryId)
This method provides access to the TAXCGRY.TAXCGRY_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Generated primary key.
aCategoryId
- java.lang.Integerpublic void setDisplaySequence(java.lang.Double aDisplaySequence)
This method provides access to the TAXCGRY.DISPLAYSEQ column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
A user interface can use this field to control the sequence of tax amounts displayed for an Order.
aDisplaySequence
- java.lang.Doublepublic void setDisplayUsage(java.lang.Integer aDisplayUsage)
This method provides access to the TAXCGRY.DISPLAYUSAGE column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Specifies that this tax category in relation to the PriceDataBean as follows:
0 = is not calculated
1 = is calculated
The PriceDataBean can be used to obtain tax amounts that should be shown along with the product price.
aDisplayUsage
- java.lang.Integerpublic void setField1(java.math.BigDecimal aField1)
This method provides access to the TAXCGRY.FIELD1 column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
Customizable.
aField1
- java.math.BigDecimalpublic void setField2(java.math.BigDecimal aField2)
This method provides access to the TAXCGRY.FIELD2 column of DB2 type DECIMAL(20,5) NULL.
The following is a description of this column:
Customizable.
aField2
- java.math.BigDecimalpublic void setField3(java.lang.String aField3)
This method provides access to the TAXCGRY.FIELD3 column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
Customizable.
aField3
- java.lang.Stringpublic void setMarkForDelete(java.lang.Integer aMarkForDelete)
This method provides access to the TAXCGRY.MARKFORDELETE column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Reserved for IBM internal use.
aMarkForDelete
- java.lang.Integerpublic void setName(java.lang.String aName)
This method provides access to the TAXCGRY.NAME column of DB2 type CHAR(15) NULL.
The following is a description of this column:
A name that, along with the StoreEntity, uniquely identifies this TaxCategory.
aName
- java.lang.Stringpublic void setStoreEntityId(java.lang.Integer aStoreEntityId)
This method provides access to the TAXCGRY.STOREENT_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The StoreEntity of which this TaxCategory is a part.
aStoreEntityId
- java.lang.Integerpublic void setTypeId(java.lang.Integer aTypeId)
This method provides access to the TAXCGRY.TAXTYPE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The TaxType of this Tax category.
aTypeId
- java.lang.Integer
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |