Package google.registry.xjc.rderegistrar
Class XjcRdeRegistrarAddrType
- java.lang.Object
-
- google.registry.xjc.XjcObject
-
- google.registry.xjc.rderegistrar.XjcRdeRegistrarAddrType
-
public class XjcRdeRegistrarAddrType 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"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="street" type="{urn:ietf:params:xml:ns:rdeRegistrar-1.0}optPostalLineType" maxOccurs="3" minOccurs="0"/> <element name="city" type="{urn:ietf:params:xml:ns:rdeRegistrar-1.0}postalLineType"/> <element name="sp" type="{urn:ietf:params:xml:ns:rdeRegistrar-1.0}optPostalLineType" minOccurs="0"/> <element name="pc" type="{urn:ietf:params:xml:ns:rdeRegistrar-1.0}pcType" minOccurs="0"/> <element name="cc" type="{urn:ietf:params:xml:ns:rdeRegistrar-1.0}ccType"/> </sequence> </restriction> </complexContent> </complexType> </pre>
-
-
Constructor Summary
Constructors Constructor Description XjcRdeRegistrarAddrType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCc()
Gets the value of the cc property.java.lang.String
getCity()
Gets the value of the city property.java.lang.String
getPc()
Gets the value of the pc property.java.lang.String
getSp()
Gets the value of the sp property.java.util.List<java.lang.String>
getStreets()
Gets the value of the streets property.void
setCc(java.lang.String value)
Sets the value of the cc property.void
setCity(java.lang.String value)
Sets the value of the city property.void
setPc(java.lang.String value)
Sets the value of the pc property.void
setSp(java.lang.String value)
Sets the value of the sp property.
-
-
-
Method Detail
-
getStreets
public java.util.List<java.lang.String> getStreets()
Gets the value of the streets property. <p> 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 <CODE>set</CODE> method for the streets property. <p> For example, to add a new item, do as follows: <pre> getStreets().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listString
-
getCity
public java.lang.String getCity()
Gets the value of the city property.- Returns:
- possible object is
String
-
setCity
public void setCity(java.lang.String value)
Sets the value of the city property.- Parameters:
value
- allowed object isString
-
getSp
public java.lang.String getSp()
Gets the value of the sp property.- Returns:
- possible object is
String
-
setSp
public void setSp(java.lang.String value)
Sets the value of the sp property.- Parameters:
value
- allowed object isString
-
getPc
public java.lang.String getPc()
Gets the value of the pc property.- Returns:
- possible object is
String
-
setPc
public void setPc(java.lang.String value)
Sets the value of the pc property.- Parameters:
value
- allowed object isString
-
getCc
public java.lang.String getCc()
Gets the value of the cc property.- Returns:
- possible object is
String
-
setCc
public void setCc(java.lang.String value)
Sets the value of the cc property.- Parameters:
value
- allowed object isString
-
-