com.ibm.commerce.payment.objects
Class PaymentMethodBean

com.ibm.commerce.payment.objects.PaymentMethodBean
All Implemented Interfaces:
java.io.Serializable

public class PaymentMethodBean
implements java.io.Serializable

This bean provides access to the PAYMTHD table.

The following is a description of this table:

This table is a site-wide table that lists all the Cashier profiles used in the store group. Each profile has a unique integer ID and a name. This table is deprecated and is provided for backward compatibility only.

See Also:
Serialized Form

Constructor Summary
PaymentMethodBean()
           
 
Method Summary
 java.lang.Integer getPaymentMethodId()
          This method provides access to the PAYMTHD.PAYMTHD_ID column of DB2 type INTEGER NOT NULL.
 java.lang.String getProfileName()
          This method provides access to the PAYMTHD.PROFILENAME column of DB2 type VARCHAR(64) NOT NULL.
 void setProfileName(java.lang.String aProfileName)
          This method provides access to the PAYMTHD.PROFILENAME column of DB2 type VARCHAR(64) NOT NULL.
 

Constructor Detail

PaymentMethodBean

public PaymentMethodBean()
Method Detail

getPaymentMethodId

public java.lang.Integer getPaymentMethodId()

This method provides access to the PAYMTHD.PAYMTHD_ID column of DB2 type INTEGER NOT NULL.

The following is a description of this column:

The unique integer ID of the profile.

Returns:
java.lang.Integer

getProfileName

public java.lang.String getProfileName()

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

The following is a description of this column:

The name of the profile. It must be the same as the simple filename, without the suffix .profile, of the XML file that contains the cashier profile. (Note that the name is case-sensitive and must include the name of the Cassette as a substring.)

Returns:
java.lang.String

setProfileName

public void setProfileName(java.lang.String aProfileName)

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

The following is a description of this column:

The name of the profile. It must be the same as the simple filename, without the suffix .profile, of the XML file that contains the cashier profile. (Note that the name is case-sensitive and must include the name of the Cassette as a substring.)

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