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 [3/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/MessageDestinationRefType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationRefType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationRefType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationRefType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,320 @@
+//
+// 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 message-destination-ref element contains a declaration
+ * 	  of Deployment Component's reference to a message destination
+ * 	  associated with a resource in Deployment Component's
+ * 	  environment. It consists of:
+ * 
+ * 		  - an optional description
+ * 		  - the message destination reference name
+ * 		  - an optional message destination type
+ * 		  - an optional specification as to whether
+ * 		    the destination is used for
+ * 		    consuming or producing messages, or both.
+ * 		    if not specified, "both" is assumed.
+ * 		  - an optional link to the message destination
+ * 		  - optional injection targets
+ * 
+ * 	  The message destination type must be supplied unless an
+ * 	  injection target is specified, in which case the type
+ * 	  of the target is used.  If both are specified, the type
+ * 	  must be assignment compatible with the type of the injection
+ * 	  target.
+ * 
+ * 	  Examples:
+ * 
+ * 	  <message-destination-ref>
+ * 		  <message-destination-ref-name>jms/StockQueue
+ * 		  </message-destination-ref-name>
+ * 		  <message-destination-type>javax.jms.Queue
+ * 		  </message-destination-type>
+ * 		  <message-destination-usage>Consumes
+ * 		  </message-destination-usage>
+ * 		  <message-destination-link>CorporateStocks
+ * 		  </message-destination-link>
+ * 	  </message-destination-ref>
+ * 
+ * 	  
+ *       
+ * 
+ * <p>Java class for message-destination-refType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="message-destination-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="message-destination-ref-name" type="{http://java.sun.com/xml/ns/javaee}jndi-nameType"/>
+ *         &lt;element name="message-destination-type" type="{http://java.sun.com/xml/ns/javaee}message-destination-typeType" minOccurs="0"/>
+ *         &lt;element name="message-destination-usage" type="{http://java.sun.com/xml/ns/javaee}message-destination-usageType" minOccurs="0"/>
+ *         &lt;element name="message-destination-link" type="{http://java.sun.com/xml/ns/javaee}message-destination-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 = "message-destination-refType", propOrder = {
+    "description",
+    "messageDestinationRefName",
+    "messageDestinationType",
+    "messageDestinationUsage",
+    "messageDestinationLink",
+    "mappedName",
+    "injectionTarget"
+})
+public class MessageDestinationRefType {
+
+    protected List<DescriptionType> description;
+    @XmlElement(name = "message-destination-ref-name", required = true)
+    protected JndiNameType messageDestinationRefName;
+    @XmlElement(name = "message-destination-type")
+    protected MessageDestinationTypeType messageDestinationType;
+    @XmlElement(name = "message-destination-usage")
+    protected MessageDestinationUsageType messageDestinationUsage;
+    @XmlElement(name = "message-destination-link")
+    protected MessageDestinationLinkType messageDestinationLink;
+    @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 messageDestinationRefName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link JndiNameType }
+     *     
+     */
+    public JndiNameType getMessageDestinationRefName() {
+        return messageDestinationRefName;
+    }
+
+    /**
+     * Sets the value of the messageDestinationRefName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link JndiNameType }
+     *     
+     */
+    public void setMessageDestinationRefName(JndiNameType value) {
+        this.messageDestinationRefName = value;
+    }
+
+    /**
+     * Gets the value of the messageDestinationType property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link MessageDestinationTypeType }
+     *     
+     */
+    public MessageDestinationTypeType getMessageDestinationType() {
+        return messageDestinationType;
+    }
+
+    /**
+     * Sets the value of the messageDestinationType property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link MessageDestinationTypeType }
+     *     
+     */
+    public void setMessageDestinationType(MessageDestinationTypeType value) {
+        this.messageDestinationType = value;
+    }
+
+    /**
+     * Gets the value of the messageDestinationUsage property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link MessageDestinationUsageType }
+     *     
+     */
+    public MessageDestinationUsageType getMessageDestinationUsage() {
+        return messageDestinationUsage;
+    }
+
+    /**
+     * Sets the value of the messageDestinationUsage property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link MessageDestinationUsageType }
+     *     
+     */
+    public void setMessageDestinationUsage(MessageDestinationUsageType value) {
+        this.messageDestinationUsage = value;
+    }
+
+    /**
+     * Gets the value of the messageDestinationLink property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link MessageDestinationLinkType }
+     *     
+     */
+    public MessageDestinationLinkType getMessageDestinationLink() {
+        return messageDestinationLink;
+    }
+
+    /**
+     * Sets the value of the messageDestinationLink property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link MessageDestinationLinkType }
+     *     
+     */
+    public void setMessageDestinationLink(MessageDestinationLinkType value) {
+        this.messageDestinationLink = 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/MessageDestinationType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,254 @@
+//
+// 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 message-destinationType specifies a message
+ * 	  destination. The logical destination described by this
+ * 	  element is mapped to a physical destination by the Deployer.
+ * 
+ * 	  The message destination element contains:
+ * 
+ * 		  - an optional description
+ * 		  - an optional display-name
+ * 		  - an optional icon
+ * 		  - a message destination name which must be unique
+ * 		    among message destination names within the same
+ * 		    Deployment File.
+ * 		  - an optional mapped name
+ * 
+ * 	  Example:
+ * 
+ * 	  <message-destination>
+ * 		  <message-destination-name>CorporateStocks
+ * 		  </message-destination-name>
+ * 	  </message-destination>
+ * 
+ * 	  
+ *       
+ * 
+ * <p>Java class for message-destinationType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="message-destinationType">
+ *   &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="message-destination-name" type="{http://java.sun.com/xml/ns/javaee}string"/>
+ *         &lt;element name="mapped-name" type="{http://java.sun.com/xml/ns/javaee}xsdStringType" 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 = "message-destinationType", propOrder = {
+    "description",
+    "displayName",
+    "icon",
+    "messageDestinationName",
+    "mappedName"
+})
+public class MessageDestinationType {
+
+    protected List<DescriptionType> description;
+    @XmlElement(name = "display-name")
+    protected List<DisplayNameType> displayName;
+    protected List<IconType> icon;
+    @XmlElement(name = "message-destination-name", required = true)
+    protected org.apache.axis2.jaxws.javaee.String messageDestinationName;
+    @XmlElement(name = "mapped-name")
+    protected XsdStringType mappedName;
+    @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 messageDestinationName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public org.apache.axis2.jaxws.javaee.String getMessageDestinationName() {
+        return messageDestinationName;
+    }
+
+    /**
+     * Sets the value of the messageDestinationName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public void setMessageDestinationName(org.apache.axis2.jaxws.javaee.String value) {
+        this.messageDestinationName = 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 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/MessageDestinationTypeType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationTypeType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationTypeType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationTypeType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,54 @@
+//
+// 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-typeType specifies the type of
+ * 	  the destination. The type is specified by the Java interface
+ * 	  expected to be implemented by the destination.
+ * 
+ * 	  Example:
+ * 
+ * 	    <message-destination-type>javax.jms.Queue
+ * 	    </message-destination-type>
+ * 
+ * 	  
+ *       
+ * 
+ * <p>Java class for message-destination-typeType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="message-destination-typeType">
+ *   &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 = "message-destination-typeType")
+public class MessageDestinationTypeType
+    extends FullyQualifiedClassType
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationUsageType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationUsageType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationUsageType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationUsageType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,56 @@
+//
+// 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-usageType specifies the use of the
+ * 	message destination indicated by the reference.  The value
+ * 	indicates whether messages are consumed from the message
+ * 	destination, produced for the destination, or both.  The
+ * 	Assembler makes use of this information in linking producers
+ * 	of a destination with its consumers.
+ * 
+ * 	The value of the message-destination-usage element must be
+ * 	one of the following:
+ * 	    Consumes
+ * 	    Produces
+ * 	    ConsumesProduces
+ * 
+ *       
+ * 
+ * <p>Java class for message-destination-usageType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="message-destination-usageType">
+ *   &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-usageType")
+public class MessageDestinationUsageType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ObjectFactory.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ObjectFactory.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ObjectFactory.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ObjectFactory.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,590 @@
+//
+// 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.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.apache.axis2.jaxws.javaee 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.
+ * 
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+    private final static QName _HandlerChains_QNAME = new QName("http://java.sun.com/xml/ns/javaee", "handler-chains");
+    private final static QName _Webservices_QNAME = new QName("http://java.sun.com/xml/ns/javaee", "webservices");
+
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.axis2.jaxws.javaee
+     * 
+     */
+    public ObjectFactory() {
+    }
+
+    /**
+     * Create an instance of {@link PropertyType }
+     * 
+     */
+    public PropertyType createPropertyType() {
+        return new PropertyType();
+    }
+
+    /**
+     * Create an instance of {@link PersistenceContextRefType }
+     * 
+     */
+    public PersistenceContextRefType createPersistenceContextRefType() {
+        return new PersistenceContextRefType();
+    }
+
+    /**
+     * Create an instance of {@link DescriptionType }
+     * 
+     */
+    public DescriptionType createDescriptionType() {
+        return new DescriptionType();
+    }
+
+    /**
+     * Create an instance of {@link ServletLinkType }
+     * 
+     */
+    public ServletLinkType createServletLinkType() {
+        return new ServletLinkType();
+    }
+
+    /**
+     * Create an instance of {@link EjbLinkType }
+     * 
+     */
+    public EjbLinkType createEjbLinkType() {
+        return new EjbLinkType();
+    }
+
+    /**
+     * Create an instance of {@link EnvEntryTypeValuesType }
+     * 
+     */
+    public EnvEntryTypeValuesType createEnvEntryTypeValuesType() {
+        return new EnvEntryTypeValuesType();
+    }
+
+    /**
+     * Create an instance of {@link ResourceRefType }
+     * 
+     */
+    public ResourceRefType createResourceRefType() {
+        return new ResourceRefType();
+    }
+
+    /**
+     * Create an instance of {@link RunAsType }
+     * 
+     */
+    public RunAsType createRunAsType() {
+        return new RunAsType();
+    }
+
+    /**
+     * Create an instance of {@link PortComponentType }
+     * 
+     */
+    public PortComponentType createPortComponentType() {
+        return new PortComponentType();
+    }
+
+    /**
+     * Create an instance of {@link ResAuthType }
+     * 
+     */
+    public ResAuthType createResAuthType() {
+        return new ResAuthType();
+    }
+
+    /**
+     * Create an instance of {@link XsdNMTOKENType }
+     * 
+     */
+    public XsdNMTOKENType createXsdNMTOKENType() {
+        return new XsdNMTOKENType();
+    }
+
+    /**
+     * Create an instance of {@link ServiceRefHandlerChainType }
+     * 
+     */
+    public ServiceRefHandlerChainType createServiceRefHandlerChainType() {
+        return new ServiceRefHandlerChainType();
+    }
+
+    /**
+     * Create an instance of {@link LocalType }
+     * 
+     */
+    public LocalType createLocalType() {
+        return new LocalType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationLinkType }
+     * 
+     */
+    public MessageDestinationLinkType createMessageDestinationLinkType() {
+        return new MessageDestinationLinkType();
+    }
+
+    /**
+     * Create an instance of {@link HomeType }
+     * 
+     */
+    public HomeType createHomeType() {
+        return new HomeType();
+    }
+
+    /**
+     * Create an instance of {@link WebserviceDescriptionType }
+     * 
+     */
+    public WebserviceDescriptionType createWebserviceDescriptionType() {
+        return new WebserviceDescriptionType();
+    }
+
+    /**
+     * Create an instance of {@link ServiceRefType }
+     * 
+     */
+    public ServiceRefType createServiceRefType() {
+        return new ServiceRefType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationUsageType }
+     * 
+     */
+    public MessageDestinationUsageType createMessageDestinationUsageType() {
+        return new MessageDestinationUsageType();
+    }
+
+    /**
+     * Create an instance of {@link RemoteType }
+     * 
+     */
+    public RemoteType createRemoteType() {
+        return new RemoteType();
+    }
+
+    /**
+     * Create an instance of {@link JndiNameType }
+     * 
+     */
+    public JndiNameType createJndiNameType() {
+        return new JndiNameType();
+    }
+
+    /**
+     * Create an instance of {@link XsdStringType }
+     * 
+     */
+    public XsdStringType createXsdStringType() {
+        return new XsdStringType();
+    }
+
+    /**
+     * Create an instance of {@link PortComponentRefType }
+     * 
+     */
+    public PortComponentRefType createPortComponentRefType() {
+        return new PortComponentRefType();
+    }
+
+    /**
+     * Create an instance of {@link UrlPatternType }
+     * 
+     */
+    public UrlPatternType createUrlPatternType() {
+        return new UrlPatternType();
+    }
+
+    /**
+     * Create an instance of {@link ServiceImplBeanType }
+     * 
+     */
+    public ServiceImplBeanType createServiceImplBeanType() {
+        return new ServiceImplBeanType();
+    }
+
+    /**
+     * Create an instance of {@link ServiceRefHandlerType }
+     * 
+     */
+    public ServiceRefHandlerType createServiceRefHandlerType() {
+        return new ServiceRefHandlerType();
+    }
+
+    /**
+     * Create an instance of {@link SecurityRoleType }
+     * 
+     */
+    public SecurityRoleType createSecurityRoleType() {
+        return new SecurityRoleType();
+    }
+
+    /**
+     * Create an instance of {@link JavaIdentifierType }
+     * 
+     */
+    public JavaIdentifierType createJavaIdentifierType() {
+        return new JavaIdentifierType();
+    }
+
+    /**
+     * Create an instance of {@link EnvEntryType }
+     * 
+     */
+    public EnvEntryType createEnvEntryType() {
+        return new EnvEntryType();
+    }
+
+    /**
+     * Create an instance of {@link JavaTypeType }
+     * 
+     */
+    public JavaTypeType createJavaTypeType() {
+        return new JavaTypeType();
+    }
+
+    /**
+     * Create an instance of {@link FullyQualifiedClassType }
+     * 
+     */
+    public FullyQualifiedClassType createFullyQualifiedClassType() {
+        return new FullyQualifiedClassType();
+    }
+
+    /**
+     * Create an instance of {@link ResSharingScopeType }
+     * 
+     */
+    public ResSharingScopeType createResSharingScopeType() {
+        return new ResSharingScopeType();
+    }
+
+    /**
+     * Create an instance of {@link PortComponentHandlerType }
+     * 
+     */
+    public PortComponentHandlerType createPortComponentHandlerType() {
+        return new PortComponentHandlerType();
+    }
+
+    /**
+     * Create an instance of {@link DisplayNameType }
+     * 
+     */
+    public DisplayNameType createDisplayNameType() {
+        return new DisplayNameType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationRefType }
+     * 
+     */
+    public MessageDestinationRefType createMessageDestinationRefType() {
+        return new MessageDestinationRefType();
+    }
+
+    /**
+     * Create an instance of {@link EjbRefTypeType }
+     * 
+     */
+    public EjbRefTypeType createEjbRefTypeType() {
+        return new EjbRefTypeType();
+    }
+
+    /**
+     * Create an instance of {@link PathType }
+     * 
+     */
+    public PathType createPathType() {
+        return new PathType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationType }
+     * 
+     */
+    public MessageDestinationType createMessageDestinationType() {
+        return new MessageDestinationType();
+    }
+
+    /**
+     * Create an instance of {@link XsdNonNegativeIntegerType }
+     * 
+     */
+    public XsdNonNegativeIntegerType createXsdNonNegativeIntegerType() {
+        return new XsdNonNegativeIntegerType();
+    }
+
+    /**
+     * Create an instance of {@link String }
+     * 
+     */
+    public String createString() {
+        return new String();
+    }
+
+    /**
+     * Create an instance of {@link XsdQNameType }
+     * 
+     */
+    public XsdQNameType createXsdQNameType() {
+        return new XsdQNameType();
+    }
+
+    /**
+     * Create an instance of {@link LifecycleCallbackType }
+     * 
+     */
+    public LifecycleCallbackType createLifecycleCallbackType() {
+        return new LifecycleCallbackType();
+    }
+
+    /**
+     * Create an instance of {@link ListenerType }
+     * 
+     */
+    public ListenerType createListenerType() {
+        return new ListenerType();
+    }
+
+    /**
+     * Create an instance of {@link PersistenceUnitRefType }
+     * 
+     */
+    public PersistenceUnitRefType createPersistenceUnitRefType() {
+        return new PersistenceUnitRefType();
+    }
+
+    /**
+     * Create an instance of {@link HandlerChainType }
+     * 
+     */
+    public HandlerChainType createHandlerChainType() {
+        return new HandlerChainType();
+    }
+
+    /**
+     * Create an instance of {@link InjectionTargetType }
+     * 
+     */
+    public InjectionTargetType createInjectionTargetType() {
+        return new InjectionTargetType();
+    }
+
+    /**
+     * Create an instance of {@link IconType }
+     * 
+     */
+    public IconType createIconType() {
+        return new IconType();
+    }
+
+    /**
+     * Create an instance of {@link HandlerChainsType }
+     * 
+     */
+    public HandlerChainsType createHandlerChainsType() {
+        return new HandlerChainsType();
+    }
+
+    /**
+     * Create an instance of {@link ResourceEnvRefType }
+     * 
+     */
+    public ResourceEnvRefType createResourceEnvRefType() {
+        return new ResourceEnvRefType();
+    }
+
+    /**
+     * Create an instance of {@link RoleNameType }
+     * 
+     */
+    public RoleNameType createRoleNameType() {
+        return new RoleNameType();
+    }
+
+    /**
+     * Create an instance of {@link WebservicesType }
+     * 
+     */
+    public WebservicesType createWebservicesType() {
+        return new WebservicesType();
+    }
+
+    /**
+     * Create an instance of {@link EjbRefType }
+     * 
+     */
+    public EjbRefType createEjbRefType() {
+        return new EjbRefType();
+    }
+
+    /**
+     * Create an instance of {@link XsdBooleanType }
+     * 
+     */
+    public XsdBooleanType createXsdBooleanType() {
+        return new XsdBooleanType();
+    }
+
+    /**
+     * Create an instance of {@link XsdPositiveIntegerType }
+     * 
+     */
+    public XsdPositiveIntegerType createXsdPositiveIntegerType() {
+        return new XsdPositiveIntegerType();
+    }
+
+    /**
+     * Create an instance of {@link EjbRefNameType }
+     * 
+     */
+    public EjbRefNameType createEjbRefNameType() {
+        return new EjbRefNameType();
+    }
+
+    /**
+     * Create an instance of {@link TrueFalseType }
+     * 
+     */
+    public TrueFalseType createTrueFalseType() {
+        return new TrueFalseType();
+    }
+
+    /**
+     * Create an instance of {@link XsdAnyURIType }
+     * 
+     */
+    public XsdAnyURIType createXsdAnyURIType() {
+        return new XsdAnyURIType();
+    }
+
+    /**
+     * Create an instance of {@link PersistenceContextTypeType }
+     * 
+     */
+    public PersistenceContextTypeType createPersistenceContextTypeType() {
+        return new PersistenceContextTypeType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationTypeType }
+     * 
+     */
+    public MessageDestinationTypeType createMessageDestinationTypeType() {
+        return new MessageDestinationTypeType();
+    }
+
+    /**
+     * Create an instance of {@link XsdIntegerType }
+     * 
+     */
+    public XsdIntegerType createXsdIntegerType() {
+        return new XsdIntegerType();
+    }
+
+    /**
+     * Create an instance of {@link EjbLocalRefType }
+     * 
+     */
+    public EjbLocalRefType createEjbLocalRefType() {
+        return new EjbLocalRefType();
+    }
+
+    /**
+     * Create an instance of {@link ParamValueType }
+     * 
+     */
+    public ParamValueType createParamValueType() {
+        return new ParamValueType();
+    }
+
+    /**
+     * Create an instance of {@link LocalHomeType }
+     * 
+     */
+    public LocalHomeType createLocalHomeType() {
+        return new LocalHomeType();
+    }
+
+    /**
+     * Create an instance of {@link ServiceRefHandlerChainsType }
+     * 
+     */
+    public ServiceRefHandlerChainsType createServiceRefHandlerChainsType() {
+        return new ServiceRefHandlerChainsType();
+    }
+
+    /**
+     * Create an instance of {@link EmptyType }
+     * 
+     */
+    public EmptyType createEmptyType() {
+        return new EmptyType();
+    }
+
+    /**
+     * Create an instance of {@link SecurityRoleRefType }
+     * 
+     */
+    public SecurityRoleRefType createSecurityRoleRefType() {
+        return new SecurityRoleRefType();
+    }
+
+    /**
+     * Create an instance of {@link GenericBooleanType }
+     * 
+     */
+    public GenericBooleanType createGenericBooleanType() {
+        return new GenericBooleanType();
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link HandlerChainsType }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://java.sun.com/xml/ns/javaee", name = "handler-chains")
+    public JAXBElement<HandlerChainsType> createHandlerChains(HandlerChainsType value) {
+        return new JAXBElement<HandlerChainsType>(_HandlerChains_QNAME, HandlerChainsType.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link WebservicesType }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "http://java.sun.com/xml/ns/javaee", name = "webservices")
+    public JAXBElement<WebservicesType> createWebservices(WebservicesType value) {
+        return new JAXBElement<WebservicesType>(_Webservices_QNAME, WebservicesType.class, null, value);
+    }
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ParamValueType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ParamValueType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ParamValueType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ParamValueType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,171 @@
+//
+// 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;
+
+
+/**
+ * 
+ * 
+ * 	This type is a general type that can be used to declare
+ * 	parameter/value lists.
+ * 
+ *       
+ * 
+ * <p>Java class for param-valueType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="param-valueType">
+ *   &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="param-name" type="{http://java.sun.com/xml/ns/javaee}string"/>
+ *         &lt;element name="param-value" type="{http://java.sun.com/xml/ns/javaee}xsdStringType"/>
+ *       &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 = "param-valueType", propOrder = {
+    "description",
+    "paramName",
+    "paramValue"
+})
+public class ParamValueType {
+
+    protected List<DescriptionType> description;
+    @XmlElement(name = "param-name", required = true)
+    protected org.apache.axis2.jaxws.javaee.String paramName;
+    @XmlElement(name = "param-value", required = true)
+    protected XsdStringType paramValue;
+    @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 paramName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public org.apache.axis2.jaxws.javaee.String getParamName() {
+        return paramName;
+    }
+
+    /**
+     * Sets the value of the paramName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public void setParamName(org.apache.axis2.jaxws.javaee.String value) {
+        this.paramName = value;
+    }
+
+    /**
+     * Gets the value of the paramValue property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XsdStringType }
+     *     
+     */
+    public XsdStringType getParamValue() {
+        return paramValue;
+    }
+
+    /**
+     * Sets the value of the paramValue property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XsdStringType }
+     *     
+     */
+    public void setParamValue(XsdStringType value) {
+        this.paramValue = 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/PathType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PathType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PathType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PathType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,55 @@
+//
+// 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 either a relative
+ * 	path or an absolute path starting with a "/".
+ * 
+ * 	In elements that specify a pathname to a file within the
+ * 	same Deployment File, relative filenames (i.e., those not
+ * 	starting with "/") are considered relative to the root of
+ * 	the Deployment File's namespace.  Absolute filenames (i.e.,
+ * 	those starting with "/") also specify names in the root of
+ * 	the Deployment File's namespace.  In general, relative names
+ * 	are preferred.  The exception is .war files where absolute
+ * 	names are preferred for consistency with the Servlet API.
+ * 
+ *       
+ * 
+ * <p>Java class for pathType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="pathType">
+ *   &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 = "pathType")
+public class PathType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceContextRefType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceContextRefType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceContextRefType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceContextRefType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,321 @@
+//
+// 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 persistence-context-ref element contains a declaration
+ * 	  of Deployment Component's reference to a persistence context
+ * 	  associated within a Deployment Component's
+ * 	  environment. It consists of:
+ * 
+ * 		  - an optional description
+ * 		  - the persistence context reference name
+ * 		  - an optional persistence unit name.  If not specified,
+ *                     the default persistence unit is assumed.
+ * 		  - an optional specification as to whether
+ * 		    the persistence context type is Transaction or
+ * 		    Extended.  If not specified, Transaction is assumed.
+ *                   - an optional list of persistence properties
+ * 		  - optional injection targets
+ * 
+ * 	  Examples:
+ * 
+ *             <persistence-context-ref>
+ *               <persistence-context-ref-name>myPersistenceContext
+ *               </persistence-context-ref-name>
+ *             </persistence-context-ref>
+ * 
+ *             <persistence-context-ref>
+ *               <persistence-context-ref-name>myPersistenceContext
+ *                 </persistence-context-ref-name>
+ *               <persistence-unit-name>PersistenceUnit1
+ *                 </persistence-unit-name>
+ *               <persistence-context-type>Extended</persistence-context-type>
+ *             </persistence-context-ref>
+ * 
+ * 	  
+ *       
+ * 
+ * <p>Java class for persistence-context-refType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="persistence-context-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="persistence-context-ref-name" type="{http://java.sun.com/xml/ns/javaee}jndi-nameType"/>
+ *         &lt;element name="persistence-unit-name" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/>
+ *         &lt;element name="persistence-context-type" type="{http://java.sun.com/xml/ns/javaee}persistence-context-typeType" minOccurs="0"/>
+ *         &lt;element name="persistence-property" type="{http://java.sun.com/xml/ns/javaee}propertyType" maxOccurs="unbounded" 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 = "persistence-context-refType", propOrder = {
+    "description",
+    "persistenceContextRefName",
+    "persistenceUnitName",
+    "persistenceContextType",
+    "persistenceProperty",
+    "mappedName",
+    "injectionTarget"
+})
+public class PersistenceContextRefType {
+
+    protected List<DescriptionType> description;
+    @XmlElement(name = "persistence-context-ref-name", required = true)
+    protected JndiNameType persistenceContextRefName;
+    @XmlElement(name = "persistence-unit-name")
+    protected org.apache.axis2.jaxws.javaee.String persistenceUnitName;
+    @XmlElement(name = "persistence-context-type")
+    protected PersistenceContextTypeType persistenceContextType;
+    @XmlElement(name = "persistence-property")
+    protected List<PropertyType> persistenceProperty;
+    @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 persistenceContextRefName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link JndiNameType }
+     *     
+     */
+    public JndiNameType getPersistenceContextRefName() {
+        return persistenceContextRefName;
+    }
+
+    /**
+     * Sets the value of the persistenceContextRefName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link JndiNameType }
+     *     
+     */
+    public void setPersistenceContextRefName(JndiNameType value) {
+        this.persistenceContextRefName = value;
+    }
+
+    /**
+     * Gets the value of the persistenceUnitName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public org.apache.axis2.jaxws.javaee.String getPersistenceUnitName() {
+        return persistenceUnitName;
+    }
+
+    /**
+     * Sets the value of the persistenceUnitName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public void setPersistenceUnitName(org.apache.axis2.jaxws.javaee.String value) {
+        this.persistenceUnitName = value;
+    }
+
+    /**
+     * Gets the value of the persistenceContextType property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link PersistenceContextTypeType }
+     *     
+     */
+    public PersistenceContextTypeType getPersistenceContextType() {
+        return persistenceContextType;
+    }
+
+    /**
+     * Sets the value of the persistenceContextType property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link PersistenceContextTypeType }
+     *     
+     */
+    public void setPersistenceContextType(PersistenceContextTypeType value) {
+        this.persistenceContextType = value;
+    }
+
+    /**
+     * Gets the value of the persistenceProperty 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 persistenceProperty property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getPersistenceProperty().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link PropertyType }
+     * 
+     * 
+     */
+    public List<PropertyType> getPersistenceProperty() {
+        if (persistenceProperty == null) {
+            persistenceProperty = new ArrayList<PropertyType>();
+        }
+        return this.persistenceProperty;
+    }
+
+    /**
+     * 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/PersistenceContextTypeType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceContextTypeType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceContextTypeType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceContextTypeType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,51 @@
+//
+// 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 persistence-context-typeType specifies the transactional
+ * 	nature of a persistence context reference.
+ * 
+ * 	The value of the persistence-context-type element must be
+ * 	one of the following:
+ * 	    Transaction
+ *             Extended
+ * 
+ *       
+ * 
+ * <p>Java class for persistence-context-typeType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="persistence-context-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 = "persistence-context-typeType")
+public class PersistenceContextTypeType
+    extends String
+{
+
+
+}

Added: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceUnitRefType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceUnitRefType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceUnitRefType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PersistenceUnitRefType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,255 @@
+//
+// 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 persistence-unit-ref element contains a declaration
+ * 	  of Deployment Component's reference to a persistence unit
+ * 	  associated within a Deployment Component's
+ * 	  environment. It consists of:
+ * 
+ * 		  - an optional description
+ * 		  - the persistence unit reference name
+ * 		  - an optional persistence unit name.  If not specified,
+ *                     the default persistence unit is assumed.
+ * 		  - optional injection targets
+ * 
+ * 	  Examples:
+ * 
+ *             <persistence-unit-ref>
+ *               <persistence-unit-ref-name>myPersistenceUnit
+ *               </persistence-unit-ref-name>
+ *             </persistence-unit-ref>
+ * 
+ *             <persistence-unit-ref>
+ *               <persistence-unit-ref-name>myPersistenceUnit
+ *                 </persistence-unit-ref-name>
+ *               <persistence-unit-name>PersistenceUnit1
+ *                 </persistence-unit-name>
+ *             </persistence-unit-ref>
+ * 
+ * 	  
+ *       
+ * 
+ * <p>Java class for persistence-unit-refType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="persistence-unit-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="persistence-unit-ref-name" type="{http://java.sun.com/xml/ns/javaee}jndi-nameType"/>
+ *         &lt;element name="persistence-unit-name" type="{http://java.sun.com/xml/ns/javaee}string" 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 = "persistence-unit-refType", propOrder = {
+    "description",
+    "persistenceUnitRefName",
+    "persistenceUnitName",
+    "mappedName",
+    "injectionTarget"
+})
+public class PersistenceUnitRefType {
+
+    protected List<DescriptionType> description;
+    @XmlElement(name = "persistence-unit-ref-name", required = true)
+    protected JndiNameType persistenceUnitRefName;
+    @XmlElement(name = "persistence-unit-name")
+    protected org.apache.axis2.jaxws.javaee.String persistenceUnitName;
+    @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 persistenceUnitRefName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link JndiNameType }
+     *     
+     */
+    public JndiNameType getPersistenceUnitRefName() {
+        return persistenceUnitRefName;
+    }
+
+    /**
+     * Sets the value of the persistenceUnitRefName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link JndiNameType }
+     *     
+     */
+    public void setPersistenceUnitRefName(JndiNameType value) {
+        this.persistenceUnitRefName = value;
+    }
+
+    /**
+     * Gets the value of the persistenceUnitName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public org.apache.axis2.jaxws.javaee.String getPersistenceUnitName() {
+        return persistenceUnitName;
+    }
+
+    /**
+     * Sets the value of the persistenceUnitName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public void setPersistenceUnitName(org.apache.axis2.jaxws.javaee.String value) {
+        this.persistenceUnitName = 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/PortComponentHandlerType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PortComponentHandlerType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PortComponentHandlerType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PortComponentHandlerType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,335 @@
+//
+// 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;
+
+
+/**
+ * 
+ * 
+ * 	Declares the handler for a port-component. Handlers can access the
+ * 	init-param name/value pairs using the HandlerInfo interface.
+ * 
+ * 	Used in: port-component
+ * 
+ *       
+ * 
+ * <p>Java class for port-component_handlerType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="port-component_handlerType">
+ *   &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="handler-name" type="{http://java.sun.com/xml/ns/javaee}string"/>
+ *         &lt;element name="handler-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/>
+ *         &lt;element name="init-param" type="{http://java.sun.com/xml/ns/javaee}param-valueType" maxOccurs="unbounded" minOccurs="0"/>
+ *         &lt;element name="soap-header" type="{http://java.sun.com/xml/ns/javaee}xsdQNameType" maxOccurs="unbounded" minOccurs="0"/>
+ *         &lt;element name="soap-role" type="{http://java.sun.com/xml/ns/javaee}string" 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 = "port-component_handlerType", propOrder = {
+    "description",
+    "displayName",
+    "icon",
+    "handlerName",
+    "handlerClass",
+    "initParam",
+    "soapHeader",
+    "soapRole"
+})
+public class PortComponentHandlerType {
+
+    protected List<DescriptionType> description;
+    @XmlElement(name = "display-name")
+    protected List<DisplayNameType> displayName;
+    protected List<IconType> icon;
+    @XmlElement(name = "handler-name", required = true)
+    protected org.apache.axis2.jaxws.javaee.String handlerName;
+    @XmlElement(name = "handler-class", required = true)
+    protected FullyQualifiedClassType handlerClass;
+    @XmlElement(name = "init-param")
+    protected List<ParamValueType> initParam;
+    @XmlElement(name = "soap-header")
+    protected List<XsdQNameType> soapHeader;
+    @XmlElement(name = "soap-role")
+    protected List<org.apache.axis2.jaxws.javaee.String> soapRole;
+    @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 handlerName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public org.apache.axis2.jaxws.javaee.String getHandlerName() {
+        return handlerName;
+    }
+
+    /**
+     * Sets the value of the handlerName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public void setHandlerName(org.apache.axis2.jaxws.javaee.String value) {
+        this.handlerName = value;
+    }
+
+    /**
+     * Gets the value of the handlerClass property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public FullyQualifiedClassType getHandlerClass() {
+        return handlerClass;
+    }
+
+    /**
+     * Sets the value of the handlerClass property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public void setHandlerClass(FullyQualifiedClassType value) {
+        this.handlerClass = value;
+    }
+
+    /**
+     * Gets the value of the initParam 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 initParam property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getInitParam().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link ParamValueType }
+     * 
+     * 
+     */
+    public List<ParamValueType> getInitParam() {
+        if (initParam == null) {
+            initParam = new ArrayList<ParamValueType>();
+        }
+        return this.initParam;
+    }
+
+    /**
+     * Gets the value of the soapHeader 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 soapHeader property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getSoapHeader().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link XsdQNameType }
+     * 
+     * 
+     */
+    public List<XsdQNameType> getSoapHeader() {
+        if (soapHeader == null) {
+            soapHeader = new ArrayList<XsdQNameType>();
+        }
+        return this.soapHeader;
+    }
+
+    /**
+     * Gets the value of the soapRole 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 soapRole property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getSoapRole().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link org.apache.axis2.jaxws.javaee.String }
+     * 
+     * 
+     */
+    public List<org.apache.axis2.jaxws.javaee.String> getSoapRole() {
+        if (soapRole == null) {
+            soapRole = new ArrayList<org.apache.axis2.jaxws.javaee.String>();
+        }
+        return this.soapRole;
+    }
+
+    /**
+     * 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/PortComponentRefType.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PortComponentRefType.java?view=auto&rev=494810
==============================================================================
--- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PortComponentRefType.java (added)
+++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/PortComponentRefType.java Wed Jan 10 05:36:00 2007
@@ -0,0 +1,168 @@
+//
+// 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 port-component-ref element declares a client dependency
+ * 	on the container for resolving a Service Endpoint Interface
+ * 	to a WSDL port. It optionally associates the Service Endpoint
+ * 	Interface with a particular port-component. This is only used
+ * 	by the container for a Service.getPort(Class) method call.
+ * 
+ *       
+ * 
+ * <p>Java class for port-component-refType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="port-component-refType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="service-endpoint-interface" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/>
+ *         &lt;element name="enable-mtom" type="{http://java.sun.com/xml/ns/javaee}true-falseType" minOccurs="0"/>
+ *         &lt;element name="port-component-link" type="{http://java.sun.com/xml/ns/javaee}string" 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 = "port-component-refType", propOrder = {
+    "serviceEndpointInterface",
+    "enableMtom",
+    "portComponentLink"
+})
+public class PortComponentRefType {
+
+    @XmlElement(name = "service-endpoint-interface", required = true)
+    protected FullyQualifiedClassType serviceEndpointInterface;
+    @XmlElement(name = "enable-mtom")
+    protected TrueFalseType enableMtom;
+    @XmlElement(name = "port-component-link")
+    protected org.apache.axis2.jaxws.javaee.String portComponentLink;
+    @XmlAttribute
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected java.lang.String id;
+
+    /**
+     * Gets the value of the serviceEndpointInterface property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public FullyQualifiedClassType getServiceEndpointInterface() {
+        return serviceEndpointInterface;
+    }
+
+    /**
+     * Sets the value of the serviceEndpointInterface property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FullyQualifiedClassType }
+     *     
+     */
+    public void setServiceEndpointInterface(FullyQualifiedClassType value) {
+        this.serviceEndpointInterface = value;
+    }
+
+    /**
+     * Gets the value of the enableMtom property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link TrueFalseType }
+     *     
+     */
+    public TrueFalseType getEnableMtom() {
+        return enableMtom;
+    }
+
+    /**
+     * Sets the value of the enableMtom property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link TrueFalseType }
+     *     
+     */
+    public void setEnableMtom(TrueFalseType value) {
+        this.enableMtom = value;
+    }
+
+    /**
+     * Gets the value of the portComponentLink property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public org.apache.axis2.jaxws.javaee.String getPortComponentLink() {
+        return portComponentLink;
+    }
+
+    /**
+     * Sets the value of the portComponentLink property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link org.apache.axis2.jaxws.javaee.String }
+     *     
+     */
+    public void setPortComponentLink(org.apache.axis2.jaxws.javaee.String value) {
+        this.portComponentLink = 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;
+    }
+
+}