public class ResultType
extends java.lang.Object
Java class for resultType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="resultType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="msg" type="{urn:ietf:params:xml:ns:epp-1.0}msgType"/>
<choice maxOccurs="unbounded" minOccurs="0">
<element name="value" type="{urn:ietf:params:xml:ns:epp-1.0}errValueType"/>
<element name="extValue" type="{urn:ietf:params:xml:ns:epp-1.0}extErrValueType"/>
</choice>
</sequence>
<attribute name="code" use="required" type="{urn:ietf:params:xml:ns:epp-1.0}resultCodeType" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected int |
code |
protected MsgType |
msg |
protected java.util.List<java.lang.Object> |
valueOrExtValue |
| Constructor and Description |
|---|
ResultType() |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode()
Gets the value of the code property.
|
MsgType |
getMsg()
Gets the value of the msg property.
|
java.util.List<java.lang.Object> |
getValueOrExtValue()
Gets the value of the valueOrExtValue property.
|
void |
setCode(int value)
Sets the value of the code property.
|
void |
setMsg(MsgType value)
Sets the value of the msg property.
|
protected MsgType msg
protected java.util.List<java.lang.Object> valueOrExtValue
protected int code
public MsgType getMsg()
MsgTypepublic void setMsg(MsgType value)
value - allowed object is
MsgTypepublic java.util.List<java.lang.Object> getValueOrExtValue()
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 set method for the valueOrExtValue property.
For example, to add a new item, do as follows:
getValueOrExtValue().add(newItem);
Objects of the following type(s) are allowed in the list
ErrValueType
ExtErrValueType
public int getCode()
public void setCode(int value)
Copyright © 2022. All rights reserved.