[jboss-svn-commits] JBL Code SVN: r33744 - in labs/jbosstm/trunk/XTS/WS-C/dev/src11/org: xmlsoap and 3 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Jul 6 06:07:54 EDT 2010


Author: adinn
Date: 2010-07-06 06:07:53 -0400 (Tue, 06 Jul 2010)
New Revision: 33744

Added:
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Body.java
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Detail.java
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Envelope.java
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Fault.java
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Header.java
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/ObjectFactory.java
   labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/package-info.java
Log:
forgot to svn add these generated souorces

Added: labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Body.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Body.java	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Body.java	2010-07-06 10:07:53 UTC (rev 33744)
@@ -0,0 +1,96 @@
+
+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.XmlType;
+import javax.xml.namespace.QName;
+import org.w3c.dom.Element;
+
+
+/**
+ * <p>Java class for Body complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="Body">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *       &lt;anyAttribute processContents='lax'/>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+ at XmlAccessorType(XmlAccessType.FIELD)
+ at XmlType(name = "Body", propOrder = {
+    "any"
+})
+public class Body {
+
+    @XmlAnyElement(lax = true)
+    protected List<Object> any;
+    @XmlAnyAttribute
+    private Map<QName, String> otherAttributes = new HashMap<QName, String>();
+
+    /**
+     * Gets the value of the any property.
+     * 
+     * <p>
+     * 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 <CODE>set</CODE> method for the any property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getAny().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Element }
+     * {@link Object }
+     * 
+     * 
+     */
+    public List<Object> getAny() {
+        if (any == null) {
+            any = new ArrayList<Object>();
+        }
+        return this.any;
+    }
+
+    /**
+     * Gets a map that contains attributes that aren't bound to any typed property on this class.
+     * 
+     * <p>
+     * the map is keyed by the name of the attribute and 
+     * the value is the string value of the attribute.
+     * 
+     * the map returned by this method is live, and you can add new attribute
+     * by updating the map directly. Because of this design, there's no setter.
+     * 
+     * 
+     * @return
+     *     always non-null
+     */
+    public Map<QName, String> getOtherAttributes() {
+        return otherAttributes;
+    }
+
+}

Added: labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Detail.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Detail.java	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Detail.java	2010-07-06 10:07:53 UTC (rev 33744)
@@ -0,0 +1,96 @@
+
+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.XmlType;
+import javax.xml.namespace.QName;
+import org.w3c.dom.Element;
+
+
+/**
+ * <p>Java class for detail complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="detail">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *       &lt;anyAttribute processContents='lax'/>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+ at XmlAccessorType(XmlAccessType.FIELD)
+ at XmlType(name = "detail", propOrder = {
+    "any"
+})
+public class Detail {
+
+    @XmlAnyElement(lax = true)
+    protected List<Object> any;
+    @XmlAnyAttribute
+    private Map<QName, String> otherAttributes = new HashMap<QName, String>();
+
+    /**
+     * Gets the value of the any property.
+     * 
+     * <p>
+     * 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 <CODE>set</CODE> method for the any property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getAny().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Element }
+     * {@link Object }
+     * 
+     * 
+     */
+    public List<Object> getAny() {
+        if (any == null) {
+            any = new ArrayList<Object>();
+        }
+        return this.any;
+    }
+
+    /**
+     * Gets a map that contains attributes that aren't bound to any typed property on this class.
+     * 
+     * <p>
+     * the map is keyed by the name of the attribute and 
+     * the value is the string value of the attribute.
+     * 
+     * the map returned by this method is live, and you can add new attribute
+     * by updating the map directly. Because of this design, there's no setter.
+     * 
+     * 
+     * @return
+     *     always non-null
+     */
+    public Map<QName, String> getOtherAttributes() {
+        return otherAttributes;
+    }
+
+}

Added: labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Envelope.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Envelope.java	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Envelope.java	2010-07-06 10:07:53 UTC (rev 33744)
@@ -0,0 +1,153 @@
+
+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;
+
+
+/**
+ * <p>Java class for Envelope complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="Envelope">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{http://schemas.xmlsoap.org/soap/envelope/}Header" minOccurs="0"/>
+ *         &lt;element ref="{http://schemas.xmlsoap.org/soap/envelope/}Body"/>
+ *         &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *       &lt;anyAttribute processContents='lax' namespace='##other'/>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+ at XmlAccessorType(XmlAccessType.FIELD)
+ at 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<Object> any;
+    @XmlAnyAttribute
+    private Map<QName, String> otherAttributes = new HashMap<QName, String>();
+
+    /**
+     * Gets the value of the header property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Header }
+     *     
+     */
+    public Header getHeader() {
+        return header;
+    }
+
+    /**
+     * Sets the value of the header property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Header }
+     *     
+     */
+    public void setHeader(Header value) {
+        this.header = value;
+    }
+
+    /**
+     * Gets the value of the body property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Body }
+     *     
+     */
+    public Body getBody() {
+        return body;
+    }
+
+    /**
+     * Sets the value of the body property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Body }
+     *     
+     */
+    public void setBody(Body value) {
+        this.body = value;
+    }
+
+    /**
+     * Gets the value of the any property.
+     * 
+     * <p>
+     * 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 <CODE>set</CODE> method for the any property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getAny().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Element }
+     * {@link Object }
+     * 
+     * 
+     */
+    public List<Object> getAny() {
+        if (any == null) {
+            any = new ArrayList<Object>();
+        }
+        return this.any;
+    }
+
+    /**
+     * Gets a map that contains attributes that aren't bound to any typed property on this class.
+     * 
+     * <p>
+     * the map is keyed by the name of the attribute and 
+     * the value is the string value of the attribute.
+     * 
+     * the map returned by this method is live, and you can add new attribute
+     * by updating the map directly. Because of this design, there's no setter.
+     * 
+     * 
+     * @return
+     *     always non-null
+     */
+    public Map<QName, String> getOtherAttributes() {
+        return otherAttributes;
+    }
+
+}

Added: labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Fault.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Fault.java	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Fault.java	2010-07-06 10:07:53 UTC (rev 33744)
@@ -0,0 +1,151 @@
+
+package org.xmlsoap.schemas.soap.envelope;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.namespace.QName;
+
+
+/**
+ * 
+ * 	    Fault reporting structure
+ * 	  
+ * 
+ * <p>Java class for Fault complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="Fault">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="faultcode" type="{http://www.w3.org/2001/XMLSchema}QName"/>
+ *         &lt;element name="faultstring" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         &lt;element name="faultactor" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
+ *         &lt;element name="detail" type="{http://schemas.xmlsoap.org/soap/envelope/}detail" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+ at XmlAccessorType(XmlAccessType.FIELD)
+ at XmlType(name = "Fault", propOrder = {
+    "faultcode",
+    "faultstring",
+    "faultactor",
+    "detail"
+})
+public class Fault {
+
+    @XmlElement(required = true)
+    protected QName faultcode;
+    @XmlElement(required = true)
+    protected String faultstring;
+    @XmlSchemaType(name = "anyURI")
+    protected String faultactor;
+    protected Detail detail;
+
+    /**
+     * Gets the value of the faultcode property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link QName }
+     *     
+     */
+    public QName getFaultcode() {
+        return faultcode;
+    }
+
+    /**
+     * Sets the value of the faultcode property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link QName }
+     *     
+     */
+    public void setFaultcode(QName value) {
+        this.faultcode = value;
+    }
+
+    /**
+     * Gets the value of the faultstring property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getFaultstring() {
+        return faultstring;
+    }
+
+    /**
+     * Sets the value of the faultstring property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setFaultstring(String value) {
+        this.faultstring = value;
+    }
+
+    /**
+     * Gets the value of the faultactor property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getFaultactor() {
+        return faultactor;
+    }
+
+    /**
+     * Sets the value of the faultactor property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setFaultactor(String value) {
+        this.faultactor = value;
+    }
+
+    /**
+     * Gets the value of the detail property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Detail }
+     *     
+     */
+    public Detail getDetail() {
+        return detail;
+    }
+
+    /**
+     * Sets the value of the detail property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Detail }
+     *     
+     */
+    public void setDetail(Detail value) {
+        this.detail = value;
+    }
+
+}

Added: labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Header.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Header.java	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/Header.java	2010-07-06 10:07:53 UTC (rev 33744)
@@ -0,0 +1,96 @@
+
+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.XmlType;
+import javax.xml.namespace.QName;
+import org.w3c.dom.Element;
+
+
+/**
+ * <p>Java class for Header complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="Header">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *       &lt;anyAttribute processContents='lax' namespace='##other'/>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+ at XmlAccessorType(XmlAccessType.FIELD)
+ at XmlType(name = "Header", propOrder = {
+    "any"
+})
+public class Header {
+
+    @XmlAnyElement(lax = true)
+    protected List<Object> any;
+    @XmlAnyAttribute
+    private Map<QName, String> otherAttributes = new HashMap<QName, String>();
+
+    /**
+     * Gets the value of the any property.
+     * 
+     * <p>
+     * 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 <CODE>set</CODE> method for the any property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getAny().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Element }
+     * {@link Object }
+     * 
+     * 
+     */
+    public List<Object> getAny() {
+        if (any == null) {
+            any = new ArrayList<Object>();
+        }
+        return this.any;
+    }
+
+    /**
+     * Gets a map that contains attributes that aren't bound to any typed property on this class.
+     * 
+     * <p>
+     * the map is keyed by the name of the attribute and 
+     * the value is the string value of the attribute.
+     * 
+     * the map returned by this method is live, and you can add new attribute
+     * by updating the map directly. Because of this design, there's no setter.
+     * 
+     * 
+     * @return
+     *     always non-null
+     */
+    public Map<QName, String> getOtherAttributes() {
+        return otherAttributes;
+    }
+
+}

Added: labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/ObjectFactory.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/ObjectFactory.java	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/ObjectFactory.java	2010-07-06 10:07:53 UTC (rev 33744)
@@ -0,0 +1,115 @@
+
+package org.xmlsoap.schemas.soap.envelope;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each 
+ * Java content interface and Java element interface 
+ * generated in the org.xmlsoap.schemas.soap.envelope package. 
+ * <p>An ObjectFactory allows you to programatically 
+ * construct new instances of the Java representation 
+ * for XML content. The Java representation of XML 
+ * content can consist of schema derived interfaces 
+ * and classes representing the binding of schema 
+ * type definitions, element declarations and model 
+ * groups.  Factory methods for each of these are 
+ * provided in this class.
+ * 
+ */
+ at XmlRegistry
+public class ObjectFactory {
+
+    private final static QName _Body_QNAME = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Body");
+    private final static QName _Envelope_QNAME = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Envelope");
+    private final static QName _Fault_QNAME = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Fault");
+    private final static QName _Header_QNAME = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Header");
+
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.xmlsoap.schemas.soap.envelope
+     * 
+     */
+    public ObjectFactory() {
+    }
+
+    /**
+     * Create an instance of {@link Envelope }
+     * 
+     */
+    public Envelope createEnvelope() {
+        return new Envelope();
+    }
+
+    /**
+     * Create an instance of {@link Body }
+     * 
+     */
+    public Body createBody() {
+        return new Body();
+    }
+
+    /**
+     * Create an instance of {@link Detail }
+     * 
+     */
+    public Detail createDetail() {
+        return new Detail();
+    }
+
+    /**
+     * Create an instance of {@link Header }
+     * 
+     */
+    public Header createHeader() {
+        return new Header();
+    }
+
+    /**
+     * Create an instance of {@link Fault }
+     * 
+     */
+    public Fault createFault() {
+        return new Fault();
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link Body }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/soap/envelope/", name = "Body")
+    public JAXBElement<Body> createBody(Body value) {
+        return new JAXBElement<Body>(_Body_QNAME, Body.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link Envelope }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/soap/envelope/", name = "Envelope")
+    public JAXBElement<Envelope> createEnvelope(Envelope value) {
+        return new JAXBElement<Envelope>(_Envelope_QNAME, Envelope.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link Fault }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/soap/envelope/", name = "Fault")
+    public JAXBElement<Fault> createFault(Fault value) {
+        return new JAXBElement<Fault>(_Fault_QNAME, Fault.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link Header }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/soap/envelope/", name = "Header")
+    public JAXBElement<Header> createHeader(Header value) {
+        return new JAXBElement<Header>(_Header_QNAME, Header.class, null, value);
+    }
+
+}

Added: labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/package-info.java
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/package-info.java	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/WS-C/dev/src11/org/xmlsoap/schemas/soap/envelope/package-info.java	2010-07-06 10:07:53 UTC (rev 33744)
@@ -0,0 +1,2 @@
+ at javax.xml.bind.annotation.XmlSchema(namespace = "http://schemas.xmlsoap.org/soap/envelope/")
+package org.xmlsoap.schemas.soap.envelope;



More information about the jboss-svn-commits mailing list