Package google.registry.xjc.epp
Class XjcEppResultType
java.lang.Object
google.registry.xjc.XjcObject
google.registry.xjc.epp.XjcEppResultType
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>
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
getCode()
Gets the value of the code property.getMsg()
Gets the value of the msg property.Gets the value of the valuesAndExtValues property.void
setCode
(int value) Sets the value of the code property.void
setMsg
(XjcEppMsgType value) Sets the value of the msg property.
-
Field Details
-
msg
-
valuesAndExtValues
-
code
protected int code
-
-
Constructor Details
-
XjcEppResultType
public XjcEppResultType()
-
-
Method Details
-
getMsg
Gets the value of the msg property.- Returns:
- possible object is
XjcEppMsgType
-
setMsg
Sets the value of the msg property.- Parameters:
value
- allowed object isXjcEppMsgType
-
getValuesAndExtValues
Gets the value of the valuesAndExtValues 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
For example, to add a new item, do as follows:set
method for the valuesAndExtValues property.getValuesAndExtValues().add(newItem);
Objects of the following type(s) are allowed in the listXjcEppErrValueType
XjcEppExtErrValueType
- Returns:
- The value of the valuesAndExtValues property.
-
getCode
public int getCode()Gets the value of the code property. -
setCode
public void setCode(int value) Sets the value of the code property.
-