Package org.cxml
Class Transaction
- java.lang.Object
-
- org.cxml.Transaction
-
public class Transaction extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Transaction()
-
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.util.List<Option>getOption()Gets the value of the option property.java.lang.StringgetRequestName()Gets the value of the requestName property.URLgetURL()Gets the value of the url property.voidsetRequestName(java.lang.String value)Sets the value of the requestName property.voidsetURL(URL value)Sets the value of the url property.
-
-
-
Method Detail
-
getRequestName
public java.lang.String getRequestName()
Gets the value of the requestName property.- Returns:
- possible object is
String
-
setRequestName
public void setRequestName(java.lang.String value)
Sets the value of the requestName 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
-
setURL
public void setURL(URL value)
Sets the value of the url property.- Parameters:
value- allowed object isURL
-
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
-
-