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

se.riv.se.apotekensservice.or.v4.MakuleringResponse Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version

package se.riv.se.apotekensservice.or.v4;

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.XmlElement;
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 MakuleringResponse complex type. * *

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

 * <complexType name="MakuleringResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="apotekspersonal" type="{urn:riv:se.apotekensservice:or:4}ApotekspersonalResponse" minOccurs="0"/>
 *         <element name="forandrandeOrdinator" type="{urn:riv:se.apotekensservice:or:4}ForandrandeOrdinatorResponse" minOccurs="0"/>
 *         <element name="kommentar" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="orsakskod" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="orsakskodKlartext" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="paUppdragAv" type="{urn:riv:se.apotekensservice:or:4}char"/>
 *         <element name="samtyckeMakulering" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="tidpunkt" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="typ" type="{urn:riv:se.apotekensservice:or:4}char"/>
 *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MakuleringResponse", propOrder = { "apotekspersonal", "forandrandeOrdinator", "kommentar", "orsakskod", "orsakskodKlartext", "paUppdragAv", "samtyckeMakulering", "tidpunkt", "typ", "any" }) public class MakuleringResponse { protected ApotekspersonalResponse apotekspersonal; protected ForandrandeOrdinatorResponse forandrandeOrdinator; protected String kommentar; protected int orsakskod; @XmlElement(required = true) protected String orsakskodKlartext; @XmlElement(required = true) protected String paUppdragAv; protected Boolean samtyckeMakulering; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tidpunkt; @XmlElement(required = true) protected String typ; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the apotekspersonal property. * * @return * possible object is * {@link ApotekspersonalResponse } * */ public ApotekspersonalResponse getApotekspersonal() { return apotekspersonal; } /** * Sets the value of the apotekspersonal property. * * @param value * allowed object is * {@link ApotekspersonalResponse } * */ public void setApotekspersonal(ApotekspersonalResponse value) { this.apotekspersonal = value; } /** * Gets the value of the forandrandeOrdinator property. * * @return * possible object is * {@link ForandrandeOrdinatorResponse } * */ public ForandrandeOrdinatorResponse getForandrandeOrdinator() { return forandrandeOrdinator; } /** * Sets the value of the forandrandeOrdinator property. * * @param value * allowed object is * {@link ForandrandeOrdinatorResponse } * */ public void setForandrandeOrdinator(ForandrandeOrdinatorResponse value) { this.forandrandeOrdinator = value; } /** * Gets the value of the kommentar property. * * @return * possible object is * {@link String } * */ public String getKommentar() { return kommentar; } /** * Sets the value of the kommentar property. * * @param value * allowed object is * {@link String } * */ public void setKommentar(String value) { this.kommentar = value; } /** * Gets the value of the orsakskod property. * */ public int getOrsakskod() { return orsakskod; } /** * Sets the value of the orsakskod property. * */ public void setOrsakskod(int value) { this.orsakskod = value; } /** * Gets the value of the orsakskodKlartext property. * * @return * possible object is * {@link String } * */ public String getOrsakskodKlartext() { return orsakskodKlartext; } /** * Sets the value of the orsakskodKlartext property. * * @param value * allowed object is * {@link String } * */ public void setOrsakskodKlartext(String value) { this.orsakskodKlartext = value; } /** * Gets the value of the paUppdragAv property. * * @return * possible object is * {@link String } * */ public String getPaUppdragAv() { return paUppdragAv; } /** * Sets the value of the paUppdragAv property. * * @param value * allowed object is * {@link String } * */ public void setPaUppdragAv(String value) { this.paUppdragAv = value; } /** * Gets the value of the samtyckeMakulering property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSamtyckeMakulering() { return samtyckeMakulering; } /** * Sets the value of the samtyckeMakulering property. * * @param value * allowed object is * {@link Boolean } * */ public void setSamtyckeMakulering(Boolean value) { this.samtyckeMakulering = value; } /** * 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; } /** * Gets the value of the typ property. * * @return * possible object is * {@link String } * */ public String getTyp() { return typ; } /** * Sets the value of the typ property. * * @param value * allowed object is * {@link String } * */ public void setTyp(String value) { this.typ = 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; } }