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 StringgetBic()The bank identification code (BIC).StringgetCountryCode()The two-character ISO 3166-1 country code.StringgetIbanLastChars()The last characters of the IBAN used to pay.StringgetName()The name of the account holder associated with this payment method.voidsetBic(String bic)The bank identification code (BIC).voidsetCountryCode(String countryCode)The two-character ISO 3166-1 country code.voidsetIbanLastChars(String ibanLastChars)The last characters of the IBAN used to pay.voidsetName(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. 
 - 
 
 -