Package google.registry.xjc.host
Class XjcHostAddrType
- java.lang.Object
-
- google.registry.xjc.XjcObject
-
- google.registry.xjc.host.XjcHostAddrType
-
public class XjcHostAddrType extends XjcObject
<p>Java class for addrType complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="addrType"> <simpleContent> <extension base="<urn:ietf:params:xml:ns:host-1.0>addrStringType"> <attribute name="ip" type="{urn:ietf:params:xml:ns:host-1.0}ipType" default="v4" /> </extension> </simpleContent> </complexType> </pre>
-
-
Field Summary
Fields Modifier and Type Field Description protected XjcHostIpType
ip
protected java.lang.String
value
-
Constructor Summary
Constructors Constructor Description XjcHostAddrType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XjcHostIpType
getIp()
Gets the value of the ip property.java.lang.String
getValue()
Gets the value of the value property.void
setIp(XjcHostIpType value)
Sets the value of the ip property.void
setValue(java.lang.String value)
Sets the value of the value property.
-
-
-
Field Detail
-
value
protected java.lang.String value
-
ip
protected XjcHostIpType ip
-
-
Method Detail
-
getValue
public java.lang.String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
public void setValue(java.lang.String value)
Sets the value of the value property.- Parameters:
value
- allowed object isString
-
getIp
public XjcHostIpType getIp()
Gets the value of the ip property.- Returns:
- possible object is
XjcHostIpType
-
setIp
public void setIp(XjcHostIpType value)
Sets the value of the ip property.- Parameters:
value
- allowed object isXjcHostIpType
-
-