com.ibm.commerce.common.objects
Class CurrencyDescriptionBean

com.ibm.commerce.common.objects.CurrencyDescriptionBean
All Implemented Interfaces:
java.io.Serializable

public class CurrencyDescriptionBean
implements java.io.Serializable

This bean provides access to the SETCURRDSC table.

The following is a description of this table:

This table stores the text descriptions for each of the currency in the SETCURR table in each of the supported language.

See Also:
Serialized Form

Constructor Summary
CurrencyDescriptionBean()
           
 
Method Summary
 java.lang.String getCurrencyCode()
          This method provides access to the SETCURRDSC.SETCCURR column of DB2 type CHAR(3) NOT NULL.
 java.lang.String getDescription()
          This method provides access to the SETCURRDSC.DESCRIPTION column of DB2 type VARCHAR(254) NULL.
 java.lang.Integer getLanguageId()
          This method provides access to the SETCURRDSC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL.
 void setCurrencyCode(java.lang.String aCurrencyCode)
          This method provides access to the SETCURRDSC.SETCCURR column of DB2 type CHAR(3) NOT NULL.
 void setDescription(java.lang.String aDescription)
          This method provides access to the SETCURRDSC.DESCRIPTION column of DB2 type VARCHAR(254) NULL.
 void setLanguageId(java.lang.Integer aLanguageId)
          This method provides access to the SETCURRDSC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL.
 

Constructor Detail

CurrencyDescriptionBean

public CurrencyDescriptionBean()
Method Detail

getCurrencyCode

public java.lang.String getCurrencyCode()

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

The following is a description of this column:

This is a currency code as per ISO 4217 standards. Foreign key that references column SETCCURR in the SETCURR table.

Returns:
java.lang.String

getDescription

public java.lang.String getDescription()

This method provides access to the SETCURRDSC.DESCRIPTION column of DB2 type VARCHAR(254) NULL.

The following is a description of this column:

The text description of the currency in the language identified by LANGUAGE_ID.

Returns:
java.lang.String

getLanguageId

public java.lang.Integer getLanguageId()

This method provides access to the SETCURRDSC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Language ID of the Language. Foreign key that references the LANGUAGE_ID column in the Language table. For a list of language components, see the LANGUAGE table.

Returns:
java.lang.Integer

setCurrencyCode

public void setCurrencyCode(java.lang.String aCurrencyCode)

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

The following is a description of this column:

This is a currency code as per ISO 4217 standards. Foreign key that references column SETCCURR in the SETCURR table.

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

setDescription

public void setDescription(java.lang.String aDescription)

This method provides access to the SETCURRDSC.DESCRIPTION column of DB2 type VARCHAR(254) NULL.

The following is a description of this column:

The text description of the currency in the language identified by LANGUAGE_ID.

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

setLanguageId

public void setLanguageId(java.lang.Integer aLanguageId)

This method provides access to the SETCURRDSC.LANGUAGE_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

Language ID of the Language. Foreign key that references the LANGUAGE_ID column in the Language table. For a list of language components, see the LANGUAGE table.

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