Package gov.nasa.gsfc.sscweb.schema
Class Result
java.lang.Object
gov.nasa.gsfc.sscweb.schema.Result
- Direct Known Subclasses:
AbstractResult
A result from SSC.
<p>Java class for Result complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="Result">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="StatusCode" type="{http://sscweb.gsfc.nasa.gov/schema}ResultStatusCode"/>
<element name="StatusSubCode" type="{http://sscweb.gsfc.nasa.gov/schema}ResultStatusSubCode"/>
<element name="StatusText" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
</sequence>
</restriction>
</complexContent>
</complexType>
}</pre>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ResultStatusCodeResult status code.protected ResultStatusSubCodeResult status sub-code.Result status text. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionResult status code.Result status sub-code.Result status text.voidsetStatusCode(ResultStatusCode value) Sets the value of the statusCode property.voidSets the value of the statusSubCode property.
-
Field Details
-
statusCode
Result status code. -
statusSubCode
Result status sub-code. -
statusText
Result status text.
-
-
Constructor Details
-
Result
public Result()
-
-
Method Details
-
getStatusCode
Result status code.- Returns:
- possible object is
ResultStatusCode
-
setStatusCode
Sets the value of the statusCode property.- Parameters:
value- allowed object isResultStatusCode- See Also:
-
getStatusSubCode
Result status sub-code.- Returns:
- possible object is
ResultStatusSubCode
-
setStatusSubCode
Sets the value of the statusSubCode property.- Parameters:
value- allowed object isResultStatusSubCode- See Also:
-
getStatusText
Result status text. Gets the value of the statusText 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 Jakarta XML Binding object. This is why there is not a
setmethod for the statusText property.For example, to add a new item, do as follows:
getStatusText().add(newItem);
Objects of the following type(s) are allowed in the list
String- Returns:
- The value of the statusText property.
-