Class XjcEppResultType

java.lang.Object
google.registry.xjc.XjcObject
google.registry.xjc.epp.XjcEppResultType

public class XjcEppResultType extends XjcObject

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 Details

  • Constructor Details

    • XjcEppResultType

      public XjcEppResultType()
  • Method Details

    • getMsg

      public XjcEppMsgType getMsg()
      Gets the value of the msg property.
      Returns:
      possible object is XjcEppMsgType
    • setMsg

      public void setMsg(XjcEppMsgType value)
      Sets the value of the msg property.
      Parameters:
      value - allowed object is XjcEppMsgType
    • getValuesAndExtValues

      public List<XjcObject> 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 set method for the valuesAndExtValues property.

      For example, to add a new item, do as follows:

       getValuesAndExtValues().add(newItem);
       
      Objects of the following type(s) are allowed in the list XjcEppErrValueType 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.