package de.fh_giessen.epr.wsregister.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Informationen über den XPSR-Server: Bezeichnung und Version des Registerverfahrens. * *
Java class for TServerInfo complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TServerInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Serververfahren" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="SerververfahrenVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TServerInfo", propOrder = {
"serververfahren",
"serververfahrenVersion"
})
public class TServerInfo {
@XmlElement(name = "Serververfahren", required = true)
protected String serververfahren;
@XmlElement(name = "SerververfahrenVersion", required = true)
protected String serververfahrenVersion;
/**
* Gets the value of the serververfahren property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSerververfahren() {
return serververfahren;
}
/**
* Sets the value of the serververfahren property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSerververfahren(String value) {
this.serververfahren = value;
}
/**
* Gets the value of the serververfahrenVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSerververfahrenVersion() {
return serververfahrenVersion;
}
/**
* Sets the value of the serververfahrenVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSerververfahrenVersion(String value) {
this.serververfahrenVersion = value;
}
}