se.riv.se.apotekensservice.or.v1.DoseringRequest Maven / Gradle / Ivy
package se.riv.se.apotekensservice.or.v1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DoseringRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DoseringRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="doseringstext1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="doseringstext2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DoseringRequest", propOrder = {
"doseringstext1",
"doseringstext2"
})
public class DoseringRequest {
protected String doseringstext1;
protected String doseringstext2;
/**
* Gets the value of the doseringstext1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDoseringstext1() {
return doseringstext1;
}
/**
* Sets the value of the doseringstext1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDoseringstext1(String value) {
this.doseringstext1 = value;
}
/**
* Gets the value of the doseringstext2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDoseringstext2() {
return doseringstext2;
}
/**
* Sets the value of the doseringstext2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDoseringstext2(String value) {
this.doseringstext2 = value;
}
}