Class Token
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.payments.Token
-
- All Implemented Interfaces:
Serializable
public class Token extends Object implements Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Token()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
The PayPal-generated ID for the token.String
getType()
The tokenization method that generated the ID.void
setId(String id)
The PayPal-generated ID for the token.void
setType(String type)
The tokenization method that generated the ID.
-
-
-
Method Detail
-
setId
public void setId(String id)
The PayPal-generated ID for the token.
-
setType
public void setType(String type)
The tokenization method that generated the ID. The possible values are:- "BILLING_AGREEMENT". The PayPal billing agreement ID. References an approved recurring payment for goods or services.
-
getId
public String getId()
The PayPal-generated ID for the token.
-
getType
public String getType()
The tokenization method that generated the ID. The possible values are:- "BILLING_AGREEMENT". The PayPal billing agreement ID. References an approved recurring payment for goods or services.
-
-