riv.se_apotekensservice.expo._1.HamtaApoteksInfoRequest Maven / Gradle / Ivy
package riv.se_apotekensservice.expo._1;
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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for HamtaApoteksInfoRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HamtaApoteksInfoRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="glnKod" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* <element name="tidpunkt" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HamtaApoteksInfoRequest", propOrder = {
"glnKod",
"tidpunkt"
})
public class HamtaApoteksInfoRequest {
@XmlElement(required = true)
protected List glnKod;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tidpunkt;
/**
* Gets the value of the glnKod 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 glnKod property.
*
*
* For example, to add a new item, do as follows:
*
* getGlnKod().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getGlnKod() {
if (glnKod == null) {
glnKod = new ArrayList();
}
return this.glnKod;
}
/**
* Gets the value of the tidpunkt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTidpunkt() {
return tidpunkt;
}
/**
* Sets the value of the tidpunkt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTidpunkt(XMLGregorianCalendar value) {
this.tidpunkt = value;
}
}