com.ibm.commerce.taxation.objects
Class CountryCodeBean

com.ibm.commerce.taxation.objects.CountryCodeBean
All Implemented Interfaces:
java.io.Serializable

public class CountryCodeBean
implements java.io.Serializable

This bean provides access to the COUNTCODE table.

The following is a description of this table:

Each row of this table maps the country or region abbreviation code representing a country or region to a numeric code. The mapping is dictated by the third-party product or vendor identified by the string in the PRODUCTVENDOR column.

See Also:
Serialized Form

Constructor Summary
CountryCodeBean()
           
 
Method Summary
 java.lang.String getCountryAbbr()
          This method provides access to the COUNTCODE.COUNTRYABBR column of DB2 type CHAR(5) NOT NULL.
 java.lang.String getCountryCode()
          This method provides access to the COUNTCODE.COUNTRYCODE column of DB2 type CHAR(5) NULL.
 java.lang.String getProductVendor()
          This method provides access to the COUNTCODE.PRODUCTVENDOR column of DB2 type VARCHAR(64) NOT NULL.
 void setCountryAbbr(java.lang.String aCountryAbbr)
          This method provides access to the COUNTCODE.COUNTRYABBR column of DB2 type CHAR(5) NOT NULL.
 void setCountryCode(java.lang.String aCountryCode)
          This method provides access to the COUNTCODE.COUNTRYCODE column of DB2 type CHAR(5) NULL.
 void setProductVendor(java.lang.String aProductVendor)
          This method provides access to the COUNTCODE.PRODUCTVENDOR column of DB2 type VARCHAR(64) NOT NULL.
 

Constructor Detail

CountryCodeBean

public CountryCodeBean()
Method Detail

getCountryAbbr

public java.lang.String getCountryAbbr()

This method provides access to the COUNTCODE.COUNTRYABBR column of DB2 type CHAR(5) NOT NULL.

The following is a description of this column:

Country or region abbreviation code for the country or region. The name of the country or region are stored in the COUNTRY table.

Returns:
java.lang.String

getCountryCode

public java.lang.String getCountryCode()

This method provides access to the COUNTCODE.COUNTRYCODE column of DB2 type CHAR(5) NULL.

The following is a description of this column:

The internal country or region code for the specified country or region assigned by the third party product or vendor.

Returns:
java.lang.String

getProductVendor

public java.lang.String getProductVendor()

This method provides access to the COUNTCODE.PRODUCTVENDOR column of DB2 type VARCHAR(64) NOT NULL.

The following is a description of this column:

String that identifies the third-party product or vendor using this country code for the country or region identified by this country or region abbreviation code.

Returns:
java.lang.String

setCountryAbbr

public void setCountryAbbr(java.lang.String aCountryAbbr)

This method provides access to the COUNTCODE.COUNTRYABBR column of DB2 type CHAR(5) NOT NULL.

The following is a description of this column:

Country or region abbreviation code for the country or region. The name of the country or region are stored in the COUNTRY table.

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

setCountryCode

public void setCountryCode(java.lang.String aCountryCode)

This method provides access to the COUNTCODE.COUNTRYCODE column of DB2 type CHAR(5) NULL.

The following is a description of this column:

The internal country or region code for the specified country or region assigned by the third party product or vendor.

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

setProductVendor

public void setProductVendor(java.lang.String aProductVendor)

This method provides access to the COUNTCODE.PRODUCTVENDOR column of DB2 type VARCHAR(64) NOT NULL.

The following is a description of this column:

String that identifies the third-party product or vendor using this country code for the country or region identified by this country or region abbreviation code.

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