Class PaymentCollection
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.PaymentCollection
-
- All Implemented Interfaces:
Serializable
public class PaymentCollection extends Object implements Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PaymentCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Authorization>getAuthorizations()An array of authorized payments for a purchase unit.List<Capture>getCaptures()An array of captured payments for a purchase unit.List<Refund>getRefunds()An array of refunds for a purchase unit.voidsetAuthorizations(List<Authorization> authorizations)An array of authorized payments for a purchase unit.voidsetCaptures(List<Capture> captures)An array of captured payments for a purchase unit.voidsetRefunds(List<Refund> refunds)An array of refunds for a purchase unit.
-
-
-
Method Detail
-
setAuthorizations
public void setAuthorizations(List<Authorization> authorizations)
An array of authorized payments for a purchase unit. A purchase unit can have zero or more authorized payments.
-
setCaptures
public void setCaptures(List<Capture> captures)
An array of captured payments for a purchase unit. A purchase unit can have zero or more captured payments.
-
setRefunds
public void setRefunds(List<Refund> refunds)
An array of refunds for a purchase unit. A purchase unit can have zero or more refunds.
-
getAuthorizations
public List<Authorization> getAuthorizations()
An array of authorized payments for a purchase unit. A purchase unit can have zero or more authorized payments.
-
getCaptures
public List<Capture> getCaptures()
An array of captured payments for a purchase unit. A purchase unit can have zero or more captured payments.
-
-