org.xmlsoap.schemas.soap.envelope.Envelope Maven / Gradle / Ivy
package org.xmlsoap.schemas.soap.envelope;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.w3c.dom.Element;
/**
* Java class for Envelope complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Envelope">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.xmlsoap.org/soap/envelope/}Header" minOccurs="0"/>
* <element ref="{http://schemas.xmlsoap.org/soap/envelope/}Body"/>
* <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <anyAttribute processContents='lax' namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Envelope", propOrder = {
"header",
"body",
"any"
})
public class Envelope {
@XmlElement(name = "Header", namespace = "http://schemas.xmlsoap.org/soap/envelope/")
protected Header header;
@XmlElement(name = "Body", namespace = "http://schemas.xmlsoap.org/soap/envelope/", required = true)
protected Body body;
@XmlAnyElement(lax = true)
protected List