Class PaymentSource
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.PaymentSource
-
- All Implemented Interfaces:
Serializable
public class PaymentSource extends Object implements Serializable
The payment source definition.- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PaymentSource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Bancontact
getBancontact()
Information used to pay Bancontact.Blik
getBlik()
Information used to pay using BLIK.Card
getCard()
The payment card to use to fund a payment.Eps
getEps()
Information used to pay using eps.GiroPay
getGiropay()
Information needed to pay using giropay.Ideal
getIdeal()
Information used to pay using iDEAL.MyBank
getMybank()
Information used to pay using MyBank.P24
getP24()
Information used to pay using P24(Przelewy24).Paypal
getPaypal()
The PayPal Wallet response.Sofort
getSofort()
Information used to pay using Sofort.Trustly
getTrustly()
Information needed to pay using Trustly.void
setBancontact(Bancontact bancontact)
Information used to pay Bancontact.void
setBlik(Blik blik)
Information used to pay using BLIK.void
setCard(Card card)
The payment card to use to fund a payment.void
setEps(Eps eps)
Information used to pay using eps.void
setGiropay(GiroPay giropay)
Information needed to pay using giropay.void
setIdeal(Ideal ideal)
Information used to pay using iDEAL.void
setMybank(MyBank mybank)
Information used to pay using MyBank.void
setP24(P24 p24)
Information used to pay using P24(Przelewy24).void
setPaypal(Paypal paypal)
The PayPal Wallet response.void
setSofort(Sofort sofort)
Information used to pay using Sofort.void
setTrustly(Trustly trustly)
Information needed to pay using Trustly.
-
-
-
Method Detail
-
setBancontact
public void setBancontact(Bancontact bancontact)
Information used to pay Bancontact.
-
setBlik
public void setBlik(Blik blik)
Information used to pay using BLIK.
-
setCard
public void setCard(Card card)
The payment card to use to fund a payment. Card can be a credit or debit card.
-
setEps
public void setEps(Eps eps)
Information used to pay using eps.
-
setGiropay
public void setGiropay(GiroPay giropay)
Information needed to pay using giropay.
-
setIdeal
public void setIdeal(Ideal ideal)
Information used to pay using iDEAL.
-
setMybank
public void setMybank(MyBank mybank)
Information used to pay using MyBank.
-
setP24
public void setP24(P24 p24)
Information used to pay using P24(Przelewy24).
-
setPaypal
public void setPaypal(Paypal paypal)
The PayPal Wallet response.
-
setSofort
public void setSofort(Sofort sofort)
Information used to pay using Sofort.
-
setTrustly
public void setTrustly(Trustly trustly)
Information needed to pay using Trustly.
-
getBancontact
public Bancontact getBancontact()
Information used to pay Bancontact.
-
getBlik
public Blik getBlik()
Information used to pay using BLIK.
-
getCard
public Card getCard()
The payment card to use to fund a payment. Card can be a credit or debit card.
-
getEps
public Eps getEps()
Information used to pay using eps.
-
getGiropay
public GiroPay getGiropay()
Information needed to pay using giropay.
-
getIdeal
public Ideal getIdeal()
Information used to pay using iDEAL.
-
getMybank
public MyBank getMybank()
Information used to pay using MyBank.
-
getP24
public P24 getP24()
Information used to pay using P24(Przelewy24).
-
getPaypal
public Paypal getPaypal()
The PayPal Wallet response.
-
getSofort
public Sofort getSofort()
Information used to pay using Sofort.
-
getTrustly
public Trustly getTrustly()
Information needed to pay using Trustly.
-
-