com.ibm.commerce.catalog.objects
Class ListPriceBean

com.ibm.commerce.catalog.objects.ListPriceBean
All Implemented Interfaces:
java.io.Serializable

public class ListPriceBean
implements java.io.Serializable

This bean provides access to the LISTPRICE table.

The following is a description of this table:

Each row of this table represents a ListPrice in a particular currency for a CatalogEntry. This table is deprecated and is provided for backward compatibility only.

See Also:
Serialized Form

Constructor Summary
ListPriceBean()
           
 
Method Summary
 java.lang.String getCurrency()
          This method provides access to the LISTPRICE.CURRENCY column of DB2 type CHAR(3) NOT NULL.
 java.math.BigDecimal getListPrice()
          This method provides access to the LISTPRICE.LISTPRICE column of DB2 type DECIMAL(20,5) NOT NULL.
 java.lang.String getOid()
          This method provides access to the LISTPRICE.OID column of DB2 type VARCHAR(64) NULL.
 void setListPrice(java.math.BigDecimal aListPrice)
          This method provides access to the LISTPRICE.LISTPRICE column of DB2 type DECIMAL(20,5) NOT NULL.
 void setOid(java.lang.String aOid)
          This method provides access to the LISTPRICE.OID column of DB2 type VARCHAR(64) NULL.
 

Constructor Detail

ListPriceBean

public ListPriceBean()
Method Detail

getCurrency

public java.lang.String getCurrency()

This method provides access to the LISTPRICE.CURRENCY column of DB2 type CHAR(3) NOT NULL.

The following is a description of this column:

The Currency of the ListPrice. This is a currency code as per ISO 4217 standards.

Returns:
java.lang.String

getListPrice

public java.math.BigDecimal getListPrice()

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

The following is a description of this column:

The amount of the ListPrice.

Returns:
java.math.BigDecimal

getOid

public java.lang.String getOid()

This method provides access to the LISTPRICE.OID column of DB2 type VARCHAR(64) NULL.

The following is a description of this column:

Reserved for IBM internal use.

Returns:
java.lang.String

setListPrice

public void setListPrice(java.math.BigDecimal aListPrice)

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

The following is a description of this column:

The amount of the ListPrice.

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

setOid

public void setOid(java.lang.String aOid)

This method provides access to the LISTPRICE.OID column of DB2 type VARCHAR(64) NULL.

The following is a description of this column:

Reserved for IBM internal use.

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