Package org.cxml
Class PaymentProviderInformation
- java.lang.Object
-
- org.cxml.PaymentProviderInformation
-
public class PaymentProviderInformation extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Descriptiondescriptionprotected java.util.List<Extrinsic>extrinsicprotected java.util.List<PaymentMethod>paymentMethodprotected java.lang.StringpaymentProviderID
-
Constructor Summary
Constructors Constructor Description PaymentProviderInformation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescriptiongetDescription()Gets the value of the description property.java.util.List<Extrinsic>getExtrinsic()Gets the value of the extrinsic property.java.util.List<PaymentMethod>getPaymentMethod()Gets the value of the paymentMethod property.java.lang.StringgetPaymentProviderID()Gets the value of the paymentProviderID property.voidsetDescription(Description value)Sets the value of the description property.voidsetPaymentProviderID(java.lang.String value)Sets the value of the paymentProviderID property.
-
-
-
Field Detail
-
paymentProviderID
protected java.lang.String paymentProviderID
-
description
protected Description description
-
paymentMethod
protected java.util.List<PaymentMethod> paymentMethod
-
extrinsic
protected java.util.List<Extrinsic> extrinsic
-
-
Method Detail
-
getPaymentProviderID
public java.lang.String getPaymentProviderID()
Gets the value of the paymentProviderID property.- Returns:
- possible object is
String
-
setPaymentProviderID
public void setPaymentProviderID(java.lang.String value)
Sets the value of the paymentProviderID property.- Parameters:
value- allowed object isString
-
getDescription
public Description getDescription()
Gets the value of the description property.- Returns:
- possible object is
Description
-
setDescription
public void setDescription(Description value)
Sets the value of the description property.- Parameters:
value- allowed object isDescription
-
getPaymentMethod
public java.util.List<PaymentMethod> getPaymentMethod()
Gets the value of the paymentMethod property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the paymentMethod property.For example, to add a new item, do as follows:
getPaymentMethod().add(newItem);Objects of the following type(s) are allowed in the list
PaymentMethod
-
getExtrinsic
public java.util.List<Extrinsic> getExtrinsic()
Gets the value of the extrinsic property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the extrinsic property.For example, to add a new item, do as follows:
getExtrinsic().add(newItem);Objects of the following type(s) are allowed in the list
Extrinsic
-
-