Updated javadoc

git-svn-id: https://brutex.net/svn/xservices/trunk@80 e7e49efb-446e-492e-b9ec-fcafc1997a86
tag-20130205r
Brian Rosenberger 2011-12-31 13:55:17 +00:00
parent d917890b04
commit c0032229d4
1 changed files with 15 additions and 3 deletions

View File

@ -31,12 +31,14 @@ public class HostinfoType {
public final static String XML_NAME="hostinfo"; public final static String XML_NAME="hostinfo";
/** /**
* * Create a new HostinfoType.
*/ */
public HostinfoType() { public HostinfoType() {
} }
/** /**
* Create a new HostinfoType.
*
* @param name * @param name
* @param domain * @param domain
* @param ip4 * @param ip4
@ -56,53 +58,63 @@ public class HostinfoType {
/** /**
* Get the host name.
*
* @return the name * @return the name
*/ */
public String getName() { public String getName() {
return name; return name;
} }
/** /**
* Set the host name.
*
* @param name the name to set * @param name the name to set
*/ */
public void setName(String name) { public void setName(String name) {
this.name = name; this.name = name;
} }
/** /**
* Get the host domain.
*
* @return the domain * @return the domain
*/ */
public String getDomain() { public String getDomain() {
return domain; return domain;
} }
/** /**
* Set the host domain.
*
* @param domain the domain to set * @param domain the domain to set
*/ */
public void setDomain(String domain) { public void setDomain(String domain) {
this.domain = domain; this.domain = domain;
} }
/** /**
* Get the IP address version 4 representation for this host.
* @return the ip4 * @return the ip4
*/ */
public String getIp4() { public String getIp4() {
return ip4; return ip4;
} }
/** /**
* Set the IP address version 4.
* @param ip4 the ip4 to set * @param ip4 the ip4 to set
*/ */
public void setIp4(String ip4) { public void setIp4(String ip4) {
this.ip4 = ip4; this.ip4 = ip4;
} }
/** /**
* Get the IP address version 6 representation for this host.
* @return the ip6 * @return the ip6
*/ */
public String getIp6() { public String getIp6() {
return ip6; return ip6;
} }
/** /**
* Set the IP address version 6 representation for this host.
* @param ip6 the ip6 to set * @param ip6 the ip6 to set
*/ */
public void setIp6(String ip6) { public void setIp6(String ip6) {
this.ip6 = ip6; this.ip6 = ip6;
} }
} }