se.skltp.tk.vagval.wsdl.v2.VisaVagvalRequest Maven / Gradle / Ivy
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
© 2015 - 2024 Weber Informatics LLC | Privacy Policy