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

se.skltp.tk.vagval.wsdl.v2.VisaVagvalRequest Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version

package se.skltp.tk.vagval.wsdl.v2;

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.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
import org.w3c.dom.Element;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="senderId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="receiverId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="tidpunkt" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="tjanstegranssnitt" type="{http://www.w3.org/2001/XMLSchema}NCName"/>
 *         <any/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "senderId", "receiverId", "tidpunkt", "tjanstegranssnitt", "any" }) @XmlRootElement(name = "visaVagvalRequest") public class VisaVagvalRequest { @XmlElement(required = true) protected String senderId; @XmlElement(required = true) protected String receiverId; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tidpunkt; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String tjanstegranssnitt; @XmlAnyElement(lax = true) protected List any; /** * Gets the value of the senderId property. * * @return * possible object is * {@link String } * */ public String getSenderId() { return senderId; } /** * Sets the value of the senderId property. * * @param value * allowed object is * {@link String } * */ public void setSenderId(String value) { this.senderId = value; } /** * Gets the value of the receiverId property. * * @return * possible object is * {@link String } * */ public String getReceiverId() { return receiverId; } /** * Sets the value of the receiverId property. * * @param value * allowed object is * {@link String } * */ public void setReceiverId(String value) { this.receiverId = 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 tjanstegranssnitt property. * * @return * possible object is * {@link String } * */ public String getTjanstegranssnitt() { return tjanstegranssnitt; } /** * Sets the value of the tjanstegranssnitt property. * * @param value * allowed object is * {@link String } * */ public void setTjanstegranssnitt(String value) { this.tjanstegranssnitt = 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; } }