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

riv.se_apotekensservice.axs._4.SamtyckeRequest 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.XmlType;
import org.w3c.dom.Element;


/**
 * 

Java class for SamtyckeRequest complex type. * *

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

 * <complexType name="SamtyckeRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ees" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="hkdb" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="rr" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="rrd" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SamtyckeRequest", propOrder = { "ees", "hkdb", "rr", "rrd", "any" }) public class SamtyckeRequest { protected Boolean ees; protected Boolean hkdb; protected Boolean rr; protected Boolean rrd; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the ees property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEes() { return ees; } /** * Sets the value of the ees property. * * @param value * allowed object is * {@link Boolean } * */ public void setEes(Boolean value) { this.ees = value; } /** * Gets the value of the hkdb property. * * @return * possible object is * {@link Boolean } * */ public Boolean isHkdb() { return hkdb; } /** * Sets the value of the hkdb property. * * @param value * allowed object is * {@link Boolean } * */ public void setHkdb(Boolean value) { this.hkdb = value; } /** * Gets the value of the rr property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRr() { return rr; } /** * Sets the value of the rr property. * * @param value * allowed object is * {@link Boolean } * */ public void setRr(Boolean value) { this.rr = value; } /** * Gets the value of the rrd property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRrd() { return rrd; } /** * Sets the value of the rrd property. * * @param value * allowed object is * {@link Boolean } * */ public void setRrd(Boolean value) { this.rrd = 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; } }