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

riv.se_apotekensservice.axs._4.KundinformationResponse Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version

package riv.se_apotekensservice.axs._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 KundinformationResponse complex type. * *

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

 * <complexType name="KundinformationResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="lkfKod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="redNamn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="samtycke" type="{urn:riv:se.apotekensservice:axs:4}SamtyckeResponse"/>
 *         <element name="statusKod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="traffkod" 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 = "KundinformationResponse", propOrder = { "lkfKod", "redNamn", "samtycke", "statusKod", "traffkod", "any" }) public class KundinformationResponse { protected String lkfKod; protected String redNamn; @XmlElement(required = true) protected SamtyckeResponse samtycke; protected String statusKod; protected String traffkod; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the lkfKod property. * * @return * possible object is * {@link String } * */ public String getLkfKod() { return lkfKod; } /** * Sets the value of the lkfKod property. * * @param value * allowed object is * {@link String } * */ public void setLkfKod(String value) { this.lkfKod = value; } /** * Gets the value of the redNamn property. * * @return * possible object is * {@link String } * */ public String getRedNamn() { return redNamn; } /** * Sets the value of the redNamn property. * * @param value * allowed object is * {@link String } * */ public void setRedNamn(String value) { this.redNamn = value; } /** * Gets the value of the samtycke property. * * @return * possible object is * {@link SamtyckeResponse } * */ public SamtyckeResponse getSamtycke() { return samtycke; } /** * Sets the value of the samtycke property. * * @param value * allowed object is * {@link SamtyckeResponse } * */ public void setSamtycke(SamtyckeResponse value) { this.samtycke = value; } /** * Gets the value of the statusKod property. * * @return * possible object is * {@link String } * */ public String getStatusKod() { return statusKod; } /** * Sets the value of the statusKod property. * * @param value * allowed object is * {@link String } * */ public void setStatusKod(String value) { this.statusKod = value; } /** * Gets the value of the traffkod property. * * @return * possible object is * {@link String } * */ public String getTraffkod() { return traffkod; } /** * Sets the value of the traffkod property. * * @param value * allowed object is * {@link String } * */ public void setTraffkod(String value) { this.traffkod = 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; } }