de.malkusch.whoisServerList.api.v0.model.Domain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whois-server-list-api Show documentation
Show all versions of whois-server-list-api Show documentation
XML mapping for the Whois Server List.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.07.15 at 10:20:29 PM CEST
//
package de.malkusch.whoisServerList.api.v0.model;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"domain"
})
@XmlRootElement(name = "domain")
public class Domain {
@XmlAttribute(name = "name", required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String name;
@XmlAttribute(name = "count")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String count;
@XmlAttribute(name = "nic")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String nic;
@XmlAttribute(name = "country")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String country;
protected List domain;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the count property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCount() {
return count;
}
/**
* Sets the value of the count property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCount(String value) {
this.count = value;
}
/**
* Gets the value of the nic property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNic() {
return nic;
}
/**
* Sets the value of the nic property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNic(String value) {
this.nic = value;
}
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountry() {
return country;
}
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountry(String value) {
this.country = value;
}
/**
* Gets the value of the domain 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 domain property.
*
*
* For example, to add a new item, do as follows:
*
* getDomain().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Domain }
*
*
*/
public List getDomain() {
if (domain == null) {
domain = new ArrayList();
}
return this.domain;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy