Class Ideal
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.Ideal
-
- All Implemented Interfaces:
Serializable
public class Ideal extends Object implements Serializable
Information used to pay using iDEAL.- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Ideal()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBic()
The bank identification code (BIC).String
getCountryCode()
The two-character ISO 3166-1 country code.String
getIbanLastChars()
The last characters of the IBAN used to pay.String
getName()
The name of the account holder associated with this payment method.void
setBic(String bic)
The bank identification code (BIC).void
setCountryCode(String countryCode)
The two-character ISO 3166-1 country code.void
setIbanLastChars(String ibanLastChars)
The last characters of the IBAN used to pay.void
setName(String name)
The name of the account holder associated with this payment method.
-
-
-
Method Detail
-
setBic
public void setBic(String bic)
The bank identification code (BIC).
-
setCountryCode
public void setCountryCode(String countryCode)
The two-character ISO 3166-1 country code.
-
setIbanLastChars
public void setIbanLastChars(String ibanLastChars)
The last characters of the IBAN used to pay.
-
setName
public void setName(String name)
The name of the account holder associated with this payment method.
-
getBic
public String getBic()
The bank identification code (BIC).
-
getCountryCode
public String getCountryCode()
The two-character ISO 3166-1 country code.
-
getIbanLastChars
public String getIbanLastChars()
The last characters of the IBAN used to pay.
-
getName
public String getName()
The name of the account holder associated with this payment method.
-
-