Class ProfileResponse
- java.lang.Object
-
- org.cxml.ProfileResponse
-
public class ProfileResponse extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<java.lang.String>aDtypeprotected java.lang.StringeffectiveDateprotected java.lang.StringlastRefreshprotected java.util.List<Option>optionprotected java.util.List<Transaction>transaction
-
Constructor Summary
Constructors Constructor Description ProfileResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>getADtype()Gets the value of the aDtype property.java.lang.StringgetEffectiveDate()Gets the value of the effectiveDate property.java.lang.StringgetLastRefresh()Gets the value of the lastRefresh property.java.util.List<Option>getOption()Gets the value of the option property.java.util.List<Transaction>getTransaction()Gets the value of the transaction property.voidsetEffectiveDate(java.lang.String value)Sets the value of the effectiveDate property.voidsetLastRefresh(java.lang.String value)Sets the value of the lastRefresh property.
-
-
-
Field Detail
-
effectiveDate
protected java.lang.String effectiveDate
-
lastRefresh
protected java.lang.String lastRefresh
-
aDtype
protected java.util.List<java.lang.String> aDtype
-
option
protected java.util.List<Option> option
-
transaction
protected java.util.List<Transaction> transaction
-
-
Method Detail
-
getEffectiveDate
public java.lang.String getEffectiveDate()
Gets the value of the effectiveDate property.- Returns:
- possible object is
String
-
setEffectiveDate
public void setEffectiveDate(java.lang.String value)
Sets the value of the effectiveDate property.- Parameters:
value- allowed object isString
-
getLastRefresh
public java.lang.String getLastRefresh()
Gets the value of the lastRefresh property.- Returns:
- possible object is
String
-
setLastRefresh
public void setLastRefresh(java.lang.String value)
Sets the value of the lastRefresh property.- Parameters:
value- allowed object isString
-
getADtype
public java.util.List<java.lang.String> getADtype()
Gets the value of the aDtype 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 aDtype property.For example, to add a new item, do as follows:
getADtype().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getOption
public java.util.List<Option> getOption()
Gets the value of the option 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 option property.For example, to add a new item, do as follows:
getOption().add(newItem);Objects of the following type(s) are allowed in the list
Option
-
getTransaction
public java.util.List<Transaction> getTransaction()
Gets the value of the transaction 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 transaction property.For example, to add a new item, do as follows:
getTransaction().add(newItem);Objects of the following type(s) are allowed in the list
Transaction
-
-