Class Result
- java.lang.Object
-
- com.sun.xml.registry.common.tools.bindings_v3.Result
-
public class Result extends Object
Java class for Result element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="Result"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{}JAXRClassificationScheme" maxOccurs="unbounded" minOccurs="0"/> <element ref="{}JAXRConcept" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="commandname" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="error" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="status" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringcommandnameprotected Stringerrorprotected List<JAXRClassificationScheme>jaxrClassificationSchemeprotected List<JAXRConcept>jaxrConceptprotected Stringstatus
-
Constructor Summary
Constructors Constructor Description Result()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCommandname()Gets the value of the commandname property.StringgetError()Gets the value of the error property.List<JAXRClassificationScheme>getJAXRClassificationScheme()Gets the value of the jaxrClassificationScheme property.List<JAXRConcept>getJAXRConcept()Gets the value of the jaxrConcept property.StringgetStatus()Gets the value of the status property.voidsetCommandname(String value)Sets the value of the commandname property.voidsetError(String value)Sets the value of the error property.voidsetStatus(String value)Sets the value of the status property.
-
-
-
Field Detail
-
jaxrClassificationScheme
protected List<JAXRClassificationScheme> jaxrClassificationScheme
-
jaxrConcept
protected List<JAXRConcept> jaxrConcept
-
commandname
protected String commandname
-
error
protected String error
-
status
protected String status
-
-
Method Detail
-
getJAXRClassificationScheme
public List<JAXRClassificationScheme> getJAXRClassificationScheme()
Gets the value of the jaxrClassificationScheme 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 jaxrClassificationScheme property.For example, to add a new item, do as follows:
getJAXRClassificationScheme().add(newItem);Objects of the following type(s) are allowed in the list
JAXRClassificationScheme
-
getJAXRConcept
public List<JAXRConcept> getJAXRConcept()
Gets the value of the jaxrConcept 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 jaxrConcept property.For example, to add a new item, do as follows:
getJAXRConcept().add(newItem);Objects of the following type(s) are allowed in the list
JAXRConcept
-
getCommandname
public String getCommandname()
Gets the value of the commandname property.- Returns:
- possible object is
String
-
setCommandname
public void setCommandname(String value)
Sets the value of the commandname property.- Parameters:
value- allowed object isString
-
getError
public String getError()
Gets the value of the error property.- Returns:
- possible object is
String
-
setError
public void setError(String value)
Sets the value of the error property.- Parameters:
value- allowed object isString
-
getStatus
public String getStatus()
Gets the value of the status property.- Returns:
- possible object is
String
-
-