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

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


/**
 * 

Java class for FodelsedatumRequest complex type. * *

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

 * <complexType name="FodelsedatumRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="fodelsedatum" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="kon" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FodelsedatumRequest", propOrder = { "fodelsedatum", "kon", "any" }) public class FodelsedatumRequest { @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar fodelsedatum; protected int kon; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the fodelsedatum property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getFodelsedatum() { return fodelsedatum; } /** * Sets the value of the fodelsedatum property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setFodelsedatum(XMLGregorianCalendar value) { this.fodelsedatum = value; } /** * Gets the value of the kon property. * */ public int getKon() { return kon; } /** * Sets the value of the kon property. * */ public void setKon(int value) { this.kon = 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; } }