riv.se_apotekensservice.folk._1.KlientinformationRequest Maven / Gradle / Ivy
package riv.se_apotekensservice.folk._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for KlientinformationRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="KlientinformationRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="anvandare" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="session" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="system" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KlientinformationRequest", propOrder = {
"anvandare",
"session",
"system"
})
public class KlientinformationRequest {
@XmlElement(required = true)
protected String anvandare;
@XmlElement(required = true)
protected String session;
@XmlElement(required = true)
protected String system;
/**
* Gets the value of the anvandare property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAnvandare() {
return anvandare;
}
/**
* Sets the value of the anvandare property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAnvandare(String value) {
this.anvandare = value;
}
/**
* Gets the value of the session property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSession() {
return session;
}
/**
* Sets the value of the session property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSession(String value) {
this.session = value;
}
/**
* Gets the value of the system property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSystem() {
return system;
}
/**
* Sets the value of the system property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSystem(String value) {
this.system = value;
}
}