All Downloads are FREE. Search and download functionalities are using the official Maven repository.

riv.se_apotekensservice.or._4.BehandlingsinformationRequest Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version

package riv.se_apotekensservice.or._4;

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.XmlAnyElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import org.w3c.dom.Element;


/**
 * 

Java class for BehandlingsinformationRequest complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="BehandlingsinformationRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="andamalKlartext" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="behandlingsslut" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="behandlingsstart" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <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"/>
 *         <element name="sprakkod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BehandlingsinformationRequest", propOrder = { "andamalKlartext", "behandlingsslut", "behandlingsstart", "doseringstext1", "doseringstext2", "sprakkod", "any" }) public class BehandlingsinformationRequest { protected String andamalKlartext; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar behandlingsslut; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar behandlingsstart; protected String doseringstext1; protected String doseringstext2; protected String sprakkod; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the andamalKlartext property. * * @return * possible object is * {@link String } * */ public String getAndamalKlartext() { return andamalKlartext; } /** * Sets the value of the andamalKlartext property. * * @param value * allowed object is * {@link String } * */ public void setAndamalKlartext(String value) { this.andamalKlartext = value; } /** * Gets the value of the behandlingsslut property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getBehandlingsslut() { return behandlingsslut; } /** * Sets the value of the behandlingsslut property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setBehandlingsslut(XMLGregorianCalendar value) { this.behandlingsslut = value; } /** * Gets the value of the behandlingsstart property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getBehandlingsstart() { return behandlingsstart; } /** * Sets the value of the behandlingsstart property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setBehandlingsstart(XMLGregorianCalendar value) { this.behandlingsstart = value; } /** * 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; } /** * Gets the value of the sprakkod property. * * @return * possible object is * {@link String } * */ public String getSprakkod() { return sprakkod; } /** * Sets the value of the sprakkod property. * * @param value * allowed object is * {@link String } * */ public void setSprakkod(String value) { this.sprakkod = value; } /** * Gets the value of the any 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 any property. * *

* For example, to add a new item, do as follows: *

     *    getAny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } }