You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by di...@apache.org on 2007/01/10 14:36:19 UTC

svn commit: r494810 [2/6] - in /geronimo/server/trunk/modules: geronimo-axis2-builder/ geronimo-axis2-builder/src/ geronimo-axis2-builder/src/main/ geronimo-axis2-builder/src/main/java/ geronimo-axis2-builder/src/main/java/org/ geronimo-axis2-builder/s...

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EjbRefType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EjbRefType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EjbRefType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EjbRefType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,331 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+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.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlID;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * 
+ * 
+ * 	The ejb-refType is used by ejb-ref elements for the
+ * 	declaration of a reference to an enterprise bean's home or
+ *         to the remote business interface of a 3.0 bean.
+ * 	The declaration consists of:
+ * 
+ * 	    - an optional description
+ * 	    - the EJB reference name used in the code of
+ * 	      the Deployment Component that's referencing the enterprise
+ * 	      bean.
+ * 	    - the optional expected type of the referenced enterprise bean
+ *             - the optional remote interface of the referenced enterprise bean
+ *               or the remote business interface of the referenced enterprise
+ *               bean
+ * 	    - the optional expected home interface of the referenced
+ *               enterprise bean.  Not applicable if this ejb-ref
+ *               refers to the remote business interface of a 3.0 bean.
+ * 	    - optional ejb-link information, used to specify the
+ * 	      referenced enterprise bean
+ *             - optional elements to define injection of the named enterprise
+ *               bean into a component field or property
+ * 
+ *       
+ * 
+ * <p>Java class for ejb-refType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="ejb-refType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="description" type="{http://java.sun.com/xml/ns/javaee}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
+ *         &lt;element name="ejb-ref-name" type="{http://java.sun.com/xml/ns/javaee}ejb-ref-nameType"/>
+ *         &lt;element name="ejb-ref-type" type="{http://java.sun.com/xml/ns/javaee}ejb-ref-typeType" minOccurs="0"/>
+ *         &lt;element name="home" type="{http://java.sun.com/xml/ns/javaee}homeType" minOccurs="0"/>
+ *         &lt;element name="remote" type="{http://java.sun.com/xml/ns/javaee}remoteType" minOccurs="0"/>
+ *         &lt;element name="ejb-link" type="{http://java.sun.com/xml/ns/javaee}ejb-linkType" minOccurs="0"/>
+ *         &lt;group ref="{http://java.sun.com/xml/ns/javaee}resourceGroup"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ejb-refType", propOrder = {
+    "description",
+    "ejbRefName",
+    "ejbRefType",
+    "home",
+    "remote",
+    "ejbLink",
+    "mappedName",
+    "injectionTarget"
+})
+public class EjbRefType {
+
+    protected List<DescriptionType> description;
+    @XmlElement(name = "ejb-ref-name", required = true)
+    protected EjbRefNameType ejbRefName;
+    @XmlElement(name = "ejb-ref-type")
+    protected EjbRefTypeType ejbRefType;
+    protected HomeType home;
+    protected RemoteType remote;
+    @XmlElement(name = "ejb-link")
+    protected EjbLinkType ejbLink;
+    @XmlElement(name = "mapped-name")
+    protected XsdStringType mappedName;
+    @XmlElement(name = "injection-target")
+    protected List<InjectionTargetType> injectionTarget;
+    @XmlAttribute
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected java.lang.String id;
+
+    /**
+     * Gets the value of the description 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 description property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getDescription().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DescriptionType }
+     * 
+     * 
+     */
+    public List<DescriptionType> getDescription() {
+        if (description == null) {
+            description = new ArrayList<DescriptionType>();
+        }
+        return this.description;
+    }
+
+    /**
+     * Gets the value of the ejbRefName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link EjbRefNameType }
+     *     
+     */
+    public EjbRefNameType getEjbRefName() {
+        return ejbRefName;
+    }
+
+    /**
+     * Sets the value of the ejbRefName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link EjbRefNameType }
+     *     
+     */
+    public void setEjbRefName(EjbRefNameType value) {
+        this.ejbRefName = value;
+    }
+
+    /**
+     * Gets the value of the ejbRefType property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link EjbRefTypeType }
+     *     
+     */
+    public EjbRefTypeType getEjbRefType() {
+        return ejbRefType;
+    }
+
+    /**
+     * Sets the value of the ejbRefType property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link EjbRefTypeType }
+     *     
+     */
+    public void setEjbRefType(EjbRefTypeType value) {
+        this.ejbRefType = value;
+    }
+
+    /**
+     * Gets the value of the home property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link HomeType }
+     *     
+     */
+    public HomeType getHome() {
+        return home;
+    }
+
+    /**
+     * Sets the value of the home property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link HomeType }
+     *     
+     */
+    public void setHome(HomeType value) {
+        this.home = value;
+    }
+
+    /**
+     * Gets the value of the remote property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link RemoteType }
+     *     
+     */
+    public RemoteType getRemote() {
+        return remote;
+    }
+
+    /**
+     * Sets the value of the remote property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link RemoteType }
+     *     
+     */
+    public void setRemote(RemoteType value) {
+        this.remote = value;
+    }
+
+    /**
+     * Gets the value of the ejbLink property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link EjbLinkType }
+     *     
+     */
+    public EjbLinkType getEjbLink() {
+        return ejbLink;
+    }
+
+    /**
+     * Sets the value of the ejbLink property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link EjbLinkType }
+     *     
+     */
+    public void setEjbLink(EjbLinkType value) {
+        this.ejbLink = value;
+    }
+
+    /**
+     * Gets the value of the mappedName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XsdStringType }
+     *     
+     */
+    public XsdStringType getMappedName() {
+        return mappedName;
+    }
+
+    /**
+     * Sets the value of the mappedName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XsdStringType }
+     *     
+     */
+    public void setMappedName(XsdStringType value) {
+        this.mappedName = value;
+    }
+
+    /**
+     * Gets the value of the injectionTarget 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 injectionTarget property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getInjectionTarget().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link InjectionTargetType }
+     * 
+     * 
+     */
+    public List<InjectionTargetType> getInjectionTarget() {
+        if (injectionTarget == null) {
+            injectionTarget = new ArrayList<InjectionTargetType>();
+        }
+        return this.injectionTarget;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setId(java.lang.String value) {
+        this.id = value;
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EjbRefTypeType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EjbRefTypeType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EjbRefTypeType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EjbRefTypeType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,52 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	The ejb-ref-typeType contains the expected type of the
+ * 	referenced enterprise bean.
+ * 
+ * 	The ejb-ref-type designates a value
+ * 	that must be one of the following:
+ * 
+ * 	    Entity
+ * 	    Session
+ * 
+ *       
+ * 
+ * <p>Java class for ejb-ref-typeType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="ejb-ref-typeType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>string">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ejb-ref-typeType")
+public class EjbRefTypeType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EmptyType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EmptyType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EmptyType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EmptyType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,77 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlID;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * 
+ * 
+ * 	This type is used to designate an empty
+ * 	element when used.
+ * 
+ *       
+ * 
+ * <p>Java class for emptyType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="emptyType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "emptyType")
+public class EmptyType {
+
+    @XmlAttribute
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected java.lang.String id;
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setId(java.lang.String value) {
+        this.id = value;
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EnvEntryType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EnvEntryType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EnvEntryType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EnvEntryType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,276 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+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.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlID;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * 
+ * 
+ * 	The env-entryType is used to declare an application's
+ * 	environment entry. The declaration consists of an optional
+ * 	description, the name of the environment entry, a type
+ * 	(optional if the value is injected, otherwise required), and
+ * 	an optional value.
+ * 
+ * 	It also includes optional elements to define injection of
+ * 	the named resource into fields or JavaBeans properties.
+ * 
+ * 	If a value is not specified and injection is requested,
+ * 	no injection will occur and no entry of the specified name
+ * 	will be created.  This allows an initial value to be
+ * 	specified in the source code without being incorrectly
+ * 	changed when no override has been specified.
+ * 
+ * 	If a value is not specified and no injection is requested,
+ * 	a value must be supplied during deployment.
+ * 
+ * 	This type is used by env-entry elements.
+ * 
+ *       
+ * 
+ * <p>Java class for env-entryType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="env-entryType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="description" type="{http://java.sun.com/xml/ns/javaee}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
+ *         &lt;element name="env-entry-name" type="{http://java.sun.com/xml/ns/javaee}jndi-nameType"/>
+ *         &lt;element name="env-entry-type" type="{http://java.sun.com/xml/ns/javaee}env-entry-type-valuesType" minOccurs="0"/>
+ *         &lt;element name="env-entry-value" type="{http://java.sun.com/xml/ns/javaee}xsdStringType" minOccurs="0"/>
+ *         &lt;group ref="{http://java.sun.com/xml/ns/javaee}resourceGroup"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "env-entryType", propOrder = {
+    "description",
+    "envEntryName",
+    "envEntryType",
+    "envEntryValue",
+    "mappedName",
+    "injectionTarget"
+})
+public class EnvEntryType {
+
+    protected List<DescriptionType> description;
+    @XmlElement(name = "env-entry-name", required = true)
+    protected JndiNameType envEntryName;
+    @XmlElement(name = "env-entry-type")
+    protected EnvEntryTypeValuesType envEntryType;
+    @XmlElement(name = "env-entry-value")
+    protected XsdStringType envEntryValue;
+    @XmlElement(name = "mapped-name")
+    protected XsdStringType mappedName;
+    @XmlElement(name = "injection-target")
+    protected List<InjectionTargetType> injectionTarget;
+    @XmlAttribute
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected java.lang.String id;
+
+    /**
+     * Gets the value of the description 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 description property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getDescription().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DescriptionType }
+     * 
+     * 
+     */
+    public List<DescriptionType> getDescription() {
+        if (description == null) {
+            description = new ArrayList<DescriptionType>();
+        }
+        return this.description;
+    }
+
+    /**
+     * Gets the value of the envEntryName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link JndiNameType }
+     *     
+     */
+    public JndiNameType getEnvEntryName() {
+        return envEntryName;
+    }
+
+    /**
+     * Sets the value of the envEntryName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link JndiNameType }
+     *     
+     */
+    public void setEnvEntryName(JndiNameType value) {
+        this.envEntryName = value;
+    }
+
+    /**
+     * Gets the value of the envEntryType property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link EnvEntryTypeValuesType }
+     *     
+     */
+    public EnvEntryTypeValuesType getEnvEntryType() {
+        return envEntryType;
+    }
+
+    /**
+     * Sets the value of the envEntryType property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link EnvEntryTypeValuesType }
+     *     
+     */
+    public void setEnvEntryType(EnvEntryTypeValuesType value) {
+        this.envEntryType = value;
+    }
+
+    /**
+     * Gets the value of the envEntryValue property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XsdStringType }
+     *     
+     */
+    public XsdStringType getEnvEntryValue() {
+        return envEntryValue;
+    }
+
+    /**
+     * Sets the value of the envEntryValue property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XsdStringType }
+     *     
+     */
+    public void setEnvEntryValue(XsdStringType value) {
+        this.envEntryValue = value;
+    }
+
+    /**
+     * Gets the value of the mappedName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XsdStringType }
+     *     
+     */
+    public XsdStringType getMappedName() {
+        return mappedName;
+    }
+
+    /**
+     * Sets the value of the mappedName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XsdStringType }
+     *     
+     */
+    public void setMappedName(XsdStringType value) {
+        this.mappedName = value;
+    }
+
+    /**
+     * Gets the value of the injectionTarget 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 injectionTarget property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getInjectionTarget().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link InjectionTargetType }
+     * 
+     * 
+     */
+    public List<InjectionTargetType> getInjectionTarget() {
+        if (injectionTarget == null) {
+            injectionTarget = new ArrayList<InjectionTargetType>();
+        }
+        return this.injectionTarget;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setId(java.lang.String value) {
+        this.id = value;
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EnvEntryTypeValuesType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EnvEntryTypeValuesType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EnvEntryTypeValuesType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/EnvEntryTypeValuesType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,65 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 	
+ * 
+ * 	  This type contains the fully-qualified Java type of the
+ * 	  environment entry value that is expected by the
+ * 	  application's code.
+ * 
+ * 	  The following are the legal values of env-entry-type-valuesType:
+ * 
+ * 	      java.lang.Boolean
+ * 	      java.lang.Byte
+ * 	      java.lang.Character
+ * 	      java.lang.String
+ * 	      java.lang.Short
+ * 	      java.lang.Integer
+ * 	      java.lang.Long
+ * 	      java.lang.Float
+ * 	      java.lang.Double
+ * 
+ * 	  Example:
+ * 
+ * 	  <env-entry-type>java.lang.Boolean</env-entry-type>
+ * 
+ * 	  
+ *       
+ * 
+ * <p>Java class for env-entry-type-valuesType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="env-entry-type-valuesType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>string">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "env-entry-type-valuesType")
+public class EnvEntryTypeValuesType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/FullyQualifiedClassType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/FullyQualifiedClassType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/FullyQualifiedClassType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/FullyQualifiedClassType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,50 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	The elements that use this type designate the name of a
+ * 	Java class or interface.  The name is in the form of a
+ * 	"binary name", as defined in the JLS.  This is the form
+ * 	of name used in Class.forName().  Tools that need the
+ * 	canonical name (the name used in source code) will need
+ * 	to convert this binary name to the canonical name.
+ * 
+ *       
+ * 
+ * <p>Java class for fully-qualified-classType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="fully-qualified-classType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>string">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fully-qualified-classType")
+public class FullyQualifiedClassType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/GenericBooleanType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/GenericBooleanType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/GenericBooleanType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/GenericBooleanType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,47 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	This type defines four different values which can designate
+ * 	boolean values. This includes values yes and no which are
+ * 	not designated by xsd:boolean
+ * 
+ *       
+ * 
+ * <p>Java class for generic-booleanType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="generic-booleanType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>string">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "generic-booleanType")
+public class GenericBooleanType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HandlerChainType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HandlerChainType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HandlerChainType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HandlerChainType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,219 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+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.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlID;
+import javax.xml.bind.annotation.XmlList;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * 
+ * 
+ *       The handler-chain element defines the handlerchain.
+ *       Handlerchain can be defined such that the handlers in the
+ *       handlerchain operate,all ports of a service, on a specific
+ *       port or on a list of protocol-bindings. The choice of elements
+ *       service-name-pattern, port-name-pattern and protocol-bindings
+ *       are used to specify whether the handlers in handler-chain are
+ *       for a service, port or protocol binding. If none of these
+ *       choices are specified with the handler-chain element then the
+ *       handlers specified in the handler-chain will be applied on
+ *       everything.
+ * 
+ *       
+ * 
+ * <p>Java class for handler-chainType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="handler-chainType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;choice minOccurs="0">
+ *           &lt;element name="service-name-pattern" type="{http://java.sun.com/xml/ns/javaee}qname-pattern"/>
+ *           &lt;element name="port-name-pattern" type="{http://java.sun.com/xml/ns/javaee}qname-pattern"/>
+ *           &lt;element name="protocol-bindings" type="{http://java.sun.com/xml/ns/javaee}protocol-bindingListType"/>
+ *         &lt;/choice>
+ *         &lt;element name="handler" type="{http://java.sun.com/xml/ns/javaee}port-component_handlerType" maxOccurs="unbounded"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "handler-chainType", propOrder = {
+    "serviceNamePattern",
+    "portNamePattern",
+    "protocolBindings",
+    "handler"
+})
+public class HandlerChainType {
+
+    @XmlElement(name = "service-name-pattern")
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    protected java.lang.String serviceNamePattern;
+    @XmlElement(name = "port-name-pattern")
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    protected java.lang.String portNamePattern;
+    @XmlList
+    @XmlElement(name = "protocol-bindings")
+    protected List<java.lang.String> protocolBindings;
+    @XmlElement(required = true)
+    protected List<PortComponentHandlerType> handler;
+    @XmlAttribute
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected java.lang.String id;
+
+    /**
+     * Gets the value of the serviceNamePattern property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getServiceNamePattern() {
+        return serviceNamePattern;
+    }
+
+    /**
+     * Sets the value of the serviceNamePattern property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setServiceNamePattern(java.lang.String value) {
+        this.serviceNamePattern = value;
+    }
+
+    /**
+     * Gets the value of the portNamePattern property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getPortNamePattern() {
+        return portNamePattern;
+    }
+
+    /**
+     * Sets the value of the portNamePattern property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setPortNamePattern(java.lang.String value) {
+        this.portNamePattern = value;
+    }
+
+    /**
+     * Gets the value of the protocolBindings 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 protocolBindings property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getProtocolBindings().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link java.lang.String }
+     * 
+     * 
+     */
+    public List<java.lang.String> getProtocolBindings() {
+        if (protocolBindings == null) {
+            protocolBindings = new ArrayList<java.lang.String>();
+        }
+        return this.protocolBindings;
+    }
+
+    /**
+     * Gets the value of the handler 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 handler property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getHandler().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link PortComponentHandlerType }
+     * 
+     * 
+     */
+    public List<PortComponentHandlerType> getHandler() {
+        if (handler == null) {
+            handler = new ArrayList<PortComponentHandlerType>();
+        }
+        return this.handler;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setId(java.lang.String value) {
+        this.id = value;
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HandlerChainsType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HandlerChainsType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HandlerChainsType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HandlerChainsType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,116 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+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.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlID;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * 
+ * 
+ *       The handler-chains element defines the handlerchains associated
+ *       with this service or service endpoint.
+ * 
+ *       
+ * 
+ * <p>Java class for handler-chainsType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="handler-chainsType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="handler-chain" type="{http://java.sun.com/xml/ns/javaee}handler-chainType" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "handler-chainsType", propOrder = {
+    "handlerChain"
+})
+public class HandlerChainsType {
+
+    @XmlElement(name = "handler-chain")
+    protected List<HandlerChainType> handlerChain;
+    @XmlAttribute
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected java.lang.String id;
+
+    /**
+     * Gets the value of the handlerChain 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 handlerChain property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getHandlerChain().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link HandlerChainType }
+     * 
+     * 
+     */
+    public List<HandlerChainType> getHandlerChain() {
+        if (handlerChain == null) {
+            handlerChain = new ArrayList<HandlerChainType>();
+        }
+        return this.handlerChain;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setId(java.lang.String value) {
+        this.id = value;
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HomeType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HomeType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HomeType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/HomeType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,52 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 	
+ * 
+ * 	  The homeType defines the fully-qualified name of
+ * 	  an enterprise bean's home interface.
+ * 
+ * 	  Example:
+ * 
+ * 	      <home>com.aardvark.payroll.PayrollHome</home>
+ * 
+ * 	  
+ *       
+ * 
+ * <p>Java class for homeType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="homeType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>fully-qualified-classType">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "homeType")
+public class HomeType
+    extends FullyQualifiedClassType
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/IconType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/IconType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/IconType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/IconType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,170 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlID;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * 
+ * 
+ * 	The icon type contains small-icon and large-icon elements
+ * 	that specify the file names for small and large GIF, JPEG,
+ * 	or PNG icon images used to represent the parent element in a
+ * 	GUI tool.
+ * 
+ * 	The xml:lang attribute defines the language that the
+ * 	icon file names are provided in. Its value is "en" (English)
+ * 	by default.
+ * 
+ *       
+ * 
+ * <p>Java class for iconType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="iconType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="small-icon" type="{http://java.sun.com/xml/ns/javaee}pathType" minOccurs="0"/>
+ *         &lt;element name="large-icon" type="{http://java.sun.com/xml/ns/javaee}pathType" minOccurs="0"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "iconType", propOrder = {
+    "smallIcon",
+    "largeIcon"
+})
+public class IconType {
+
+    @XmlElement(name = "small-icon")
+    protected PathType smallIcon;
+    @XmlElement(name = "large-icon")
+    protected PathType largeIcon;
+    @XmlAttribute
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected java.lang.String id;
+    @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace")
+    protected java.lang.String lang;
+
+    /**
+     * Gets the value of the smallIcon property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link PathType }
+     *     
+     */
+    public PathType getSmallIcon() {
+        return smallIcon;
+    }
+
+    /**
+     * Sets the value of the smallIcon property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link PathType }
+     *     
+     */
+    public void setSmallIcon(PathType value) {
+        this.smallIcon = value;
+    }
+
+    /**
+     * Gets the value of the largeIcon property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link PathType }
+     *     
+     */
+    public PathType getLargeIcon() {
+        return largeIcon;
+    }
+
+    /**
+     * Sets the value of the largeIcon property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link PathType }
+     *     
+     */
+    public void setLargeIcon(PathType value) {
+        this.largeIcon = value;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setId(java.lang.String value) {
+        this.id = value;
+    }
+
+    /**
+     * Gets the value of the lang property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getLang() {
+        return lang;
+    }
+
+    /**
+     * Sets the value of the lang property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setLang(java.lang.String value) {
+        this.lang = value;
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/InjectionTargetType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/InjectionTargetType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/InjectionTargetType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/InjectionTargetType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,119 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	An injection target specifies a class and a name within
+ * 	that class into which a resource should be injected.
+ * 
+ * 	The injection target class specifies the fully qualified
+ * 	class name that is the target of the injection.  The
+ * 	Java EE specifications describe which classes can be an
+ * 	injection target.
+ * 
+ * 	The injection target name specifies the target within
+ * 	the specified class.  The target is first looked for as a
+ * 	JavaBeans property name.  If not found, the target is
+ * 	looked for as a field name.
+ * 
+ * 	The specified resource will be injected into the target
+ * 	during initialization of the class by either calling the
+ * 	set method for the target property or by setting a value
+ * 	into the named field.
+ * 
+ *       
+ * 
+ * <p>Java class for injection-targetType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="injection-targetType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="injection-target-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/>
+ *         &lt;element name="injection-target-name" type="{http://java.sun.com/xml/ns/javaee}java-identifierType"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "injection-targetType", propOrder = {
+    "injectionTargetClass",
+    "injectionTargetName"
+})
+public class InjectionTargetType {
+
+    @XmlElement(name = "injection-target-class", required = true)
+    protected FullyQualifiedClassType injectionTargetClass;
+    @XmlElement(name = "injection-target-name", required = true)
+    protected JavaIdentifierType injectionTargetName;
+
+    /**
+     * Gets the value of the injectionTargetClass property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public FullyQualifiedClassType getInjectionTargetClass() {
+        return injectionTargetClass;
+    }
+
+    /**
+     * Sets the value of the injectionTargetClass property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public void setInjectionTargetClass(FullyQualifiedClassType value) {
+        this.injectionTargetClass = value;
+    }
+
+    /**
+     * Gets the value of the injectionTargetName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link JavaIdentifierType }
+     *     
+     */
+    public JavaIdentifierType getInjectionTargetName() {
+        return injectionTargetName;
+    }
+
+    /**
+     * Sets the value of the injectionTargetName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link JavaIdentifierType }
+     *     
+     */
+    public void setInjectionTargetName(JavaIdentifierType value) {
+        this.injectionTargetName = value;
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JavaIdentifierType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JavaIdentifierType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JavaIdentifierType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JavaIdentifierType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,47 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	The java-identifierType defines a Java identifier.
+ * 	The users of this type should further verify that
+ * 	the content does not contain Java reserved keywords.
+ * 
+ *       
+ * 
+ * <p>Java class for java-identifierType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="java-identifierType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>string">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "java-identifierType")
+public class JavaIdentifierType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JavaTypeType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JavaTypeType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JavaTypeType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JavaTypeType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,47 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	This is a generic type that designates a Java primitive
+ * 	type or a fully qualified name of a Java interface/type,
+ * 	or an array of such types.
+ * 
+ *       
+ * 
+ * <p>Java class for java-typeType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="java-typeType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>string">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "java-typeType")
+public class JavaTypeType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JndiNameType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JndiNameType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JndiNameType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/JndiNameType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,48 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	The jndi-nameType type designates a JNDI name in the
+ * 	Deployment Component's environment and is relative to the
+ * 	java:comp/env context.  A JNDI name must be unique within the
+ * 	Deployment Component.
+ * 
+ *       
+ * 
+ * <p>Java class for jndi-nameType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="jndi-nameType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>string">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "jndi-nameType")
+public class JndiNameType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LifecycleCallbackType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LifecycleCallbackType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LifecycleCallbackType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LifecycleCallbackType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,112 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	The lifecycle-callback type specifies a method on a
+ * 	class to be called when a lifecycle event occurs.
+ * 	Note that each class may have only one lifecycle callback
+ *         method for any given event and that the method may not
+ * 	be overloaded.
+ * 
+ *         If the lifefycle-callback-class element is missing then
+ *         the class defining the callback is assumed to be the
+ *         component class in scope at the place in the descriptor
+ *         in which the callback definition appears.
+ * 
+ *       
+ * 
+ * <p>Java class for lifecycle-callbackType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="lifecycle-callbackType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="lifecycle-callback-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType" minOccurs="0"/>
+ *         &lt;element name="lifecycle-callback-method" type="{http://java.sun.com/xml/ns/javaee}java-identifierType"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "lifecycle-callbackType", propOrder = {
+    "lifecycleCallbackClass",
+    "lifecycleCallbackMethod"
+})
+public class LifecycleCallbackType {
+
+    @XmlElement(name = "lifecycle-callback-class")
+    protected FullyQualifiedClassType lifecycleCallbackClass;
+    @XmlElement(name = "lifecycle-callback-method", required = true)
+    protected JavaIdentifierType lifecycleCallbackMethod;
+
+    /**
+     * Gets the value of the lifecycleCallbackClass property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public FullyQualifiedClassType getLifecycleCallbackClass() {
+        return lifecycleCallbackClass;
+    }
+
+    /**
+     * Sets the value of the lifecycleCallbackClass property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public void setLifecycleCallbackClass(FullyQualifiedClassType value) {
+        this.lifecycleCallbackClass = value;
+    }
+
+    /**
+     * Gets the value of the lifecycleCallbackMethod property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link JavaIdentifierType }
+     *     
+     */
+    public JavaIdentifierType getLifecycleCallbackMethod() {
+        return lifecycleCallbackMethod;
+    }
+
+    /**
+     * Sets the value of the lifecycleCallbackMethod property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link JavaIdentifierType }
+     *     
+     */
+    public void setLifecycleCallbackMethod(JavaIdentifierType value) {
+        this.lifecycleCallbackMethod = value;
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ListenerType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ListenerType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ListenerType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ListenerType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,206 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+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.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlID;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * 
+ * 
+ * 	The listenerType indicates the deployment properties for a web
+ * 	application listener bean.
+ * 
+ *       
+ * 
+ * <p>Java class for listenerType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="listenerType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;group ref="{http://java.sun.com/xml/ns/javaee}descriptionGroup"/>
+ *         &lt;element name="listener-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "listenerType", propOrder = {
+    "description",
+    "displayName",
+    "icon",
+    "listenerClass"
+})
+public class ListenerType {
+
+    protected List<DescriptionType> description;
+    @XmlElement(name = "display-name")
+    protected List<DisplayNameType> displayName;
+    protected List<IconType> icon;
+    @XmlElement(name = "listener-class", required = true)
+    protected FullyQualifiedClassType listenerClass;
+    @XmlAttribute
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected java.lang.String id;
+
+    /**
+     * Gets the value of the description 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 description property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getDescription().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DescriptionType }
+     * 
+     * 
+     */
+    public List<DescriptionType> getDescription() {
+        if (description == null) {
+            description = new ArrayList<DescriptionType>();
+        }
+        return this.description;
+    }
+
+    /**
+     * Gets the value of the displayName 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 displayName property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getDisplayName().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DisplayNameType }
+     * 
+     * 
+     */
+    public List<DisplayNameType> getDisplayName() {
+        if (displayName == null) {
+            displayName = new ArrayList<DisplayNameType>();
+        }
+        return this.displayName;
+    }
+
+    /**
+     * Gets the value of the icon 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 icon property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getIcon().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link IconType }
+     * 
+     * 
+     */
+    public List<IconType> getIcon() {
+        if (icon == null) {
+            icon = new ArrayList<IconType>();
+        }
+        return this.icon;
+    }
+
+    /**
+     * Gets the value of the listenerClass property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public FullyQualifiedClassType getListenerClass() {
+        return listenerClass;
+    }
+
+    /**
+     * Sets the value of the listenerClass property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public void setListenerClass(FullyQualifiedClassType value) {
+        this.listenerClass = value;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public java.lang.String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link java.lang.String }
+     *     
+     */
+    public void setId(java.lang.String value) {
+        this.id = value;
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalHomeType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalHomeType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalHomeType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalHomeType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,46 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	The local-homeType defines the fully-qualified
+ * 	name of an enterprise bean's local home interface.
+ * 
+ *       
+ * 
+ * <p>Java class for local-homeType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="local-homeType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>fully-qualified-classType">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "local-homeType")
+public class LocalHomeType
+    extends FullyQualifiedClassType
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,46 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	The localType defines the fully-qualified name of an
+ * 	enterprise bean's local interface.
+ * 
+ *       
+ * 
+ * <p>Java class for localType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="localType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>fully-qualified-classType">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "localType")
+public class LocalType
+    extends FullyQualifiedClassType
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationLinkType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationLinkType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationLinkType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationLinkType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,63 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
+//
+
+
+package org.apache.axis2.jaxws.javaee;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * 
+ * 
+ * 	The message-destination-linkType is used to link a message
+ * 	destination reference or message-driven bean to a message
+ * 	destination.
+ * 
+ * 	The Assembler sets the value to reflect the flow of messages
+ * 	between producers and consumers in the application.
+ * 
+ * 	The value must be the message-destination-name of a message
+ * 	destination in the same Deployment File or in another
+ * 	Deployment File in the same Java EE application unit.
+ * 
+ * 	Alternatively, the value may be composed of a path name
+ * 	specifying a Deployment File containing the referenced
+ * 	message destination with the message-destination-name of the
+ * 	destination appended and separated from the path name by
+ * 	"#". The path name is relative to the Deployment File
+ * 	containing Deployment Component that is referencing the
+ * 	message destination.  This allows multiple message
+ * 	destinations with the same name to be uniquely identified.
+ * 
+ *       
+ * 
+ * <p>Java class for message-destination-linkType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="message-destination-linkType">
+ *   &lt;simpleContent>
+ *     &lt;restriction base="&lt;http://java.sun.com/xml/ns/javaee>string">
+ *     &lt;/restriction>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "message-destination-linkType")
+public class MessageDestinationLinkType
+    extends String
+{
+
+
+}



Re: svn commit: r494810 [2/6] - in /geronimo/server/trunk/modules: geronimo-axis2-builder/ geronimo-axis2-builder/src/ geronimo-axis2-builder/src/main/ geronimo-axis2-builder/src/main/java/ geronimo-axis2-builder/src/main/java/org/ geronimo-axis2-builder/s...

Posted by Kevan Miller <ke...@gmail.com>.
On Jan 10, 2007, at 8:36 AM, dims@apache.org wrote:

> Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/ 
> generated/org/apache/axis2/jaxws/javaee/EjbRefType.java
> URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/ 
> geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ 
> EjbRefType.java?view=auto&rev=494810
> ====================================================================== 
> ========
> --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/ 
> org/apache/axis2/jaxws/javaee/EjbRefType.java (added)
> +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/ 
> org/apache/axis2/jaxws/javaee/EjbRefType.java Wed Jan 10 05:36:00 2007
> @@ -0,0 +1,331 @@
> +//
> +// This file was generated by the JavaTM Architecture for XML  
> Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs
> +// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/ 
> xml/jaxb</a>
> +// Any modifications to this file will be lost upon recompilation  
> of the source schema.
> +// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00
> +//
> +
> +
> +package org.apache.axis2.jaxws.javaee;

Hey Dims,
Apologies if I missed any discussion, but why do we need axis2  
packages in geronimo? I assumed initially that this was temporary,  
but starting to get the feeling otherwise...

--kevan