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

riv.se_apotekensservice.or._4.ApotekspersonalResponse 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;


/**
 * 

Java class for ApotekspersonalResponse complex type. * *

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

 * <complexType name="ApotekspersonalResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="anvandarId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="apoteksId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="befattningskod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="efternamn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fornamn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="legitimationskod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="yrkeskod" 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 = "ApotekspersonalResponse", propOrder = { "anvandarId", "apoteksId", "befattningskod", "efternamn", "fornamn", "legitimationskod", "yrkeskod", "any" }) public class ApotekspersonalResponse { @XmlElement(required = true) protected String anvandarId; @XmlElement(required = true) protected String apoteksId; protected String befattningskod; protected String efternamn; protected String fornamn; protected String legitimationskod; protected String yrkeskod; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the anvandarId property. * * @return * possible object is * {@link String } * */ public String getAnvandarId() { return anvandarId; } /** * Sets the value of the anvandarId property. * * @param value * allowed object is * {@link String } * */ public void setAnvandarId(String value) { this.anvandarId = value; } /** * Gets the value of the apoteksId property. * * @return * possible object is * {@link String } * */ public String getApoteksId() { return apoteksId; } /** * Sets the value of the apoteksId property. * * @param value * allowed object is * {@link String } * */ public void setApoteksId(String value) { this.apoteksId = value; } /** * Gets the value of the befattningskod property. * * @return * possible object is * {@link String } * */ public String getBefattningskod() { return befattningskod; } /** * Sets the value of the befattningskod property. * * @param value * allowed object is * {@link String } * */ public void setBefattningskod(String value) { this.befattningskod = value; } /** * Gets the value of the efternamn property. * * @return * possible object is * {@link String } * */ public String getEfternamn() { return efternamn; } /** * Sets the value of the efternamn property. * * @param value * allowed object is * {@link String } * */ public void setEfternamn(String value) { this.efternamn = value; } /** * Gets the value of the fornamn property. * * @return * possible object is * {@link String } * */ public String getFornamn() { return fornamn; } /** * Sets the value of the fornamn property. * * @param value * allowed object is * {@link String } * */ public void setFornamn(String value) { this.fornamn = value; } /** * Gets the value of the legitimationskod property. * * @return * possible object is * {@link String } * */ public String getLegitimationskod() { return legitimationskod; } /** * Sets the value of the legitimationskod property. * * @param value * allowed object is * {@link String } * */ public void setLegitimationskod(String value) { this.legitimationskod = value; } /** * Gets the value of the yrkeskod property. * * @return * possible object is * {@link String } * */ public String getYrkeskod() { return yrkeskod; } /** * Sets the value of the yrkeskod property. * * @param value * allowed object is * {@link String } * */ public void setYrkeskod(String value) { this.yrkeskod = 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; } }