You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ng...@apache.org on 2007/03/27 03:49:46 UTC

svn commit: r522702 [2/4] - in /webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws: description/impl/ description/xml/ description/xml/handler/ i18n/

Added: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/HandlerType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/HandlerType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/HandlerType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/HandlerType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,300 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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. Handlers can access the 
+ * init-param name/value pairs using the HandlerInfo interface. 
+ * 
+ * 
+ * <p>Java class for handlerType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="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-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 = "handlerType", propOrder = {
+    "description",
+    "displayName",
+    "icon",
+    "handlerName",
+    "handlerClass",
+    "initParam",
+    "soapRole"
+})
+public class HandlerType {
+
+    @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<DescriptionType> description;
+    @XmlElement(name = "display-name", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<DisplayNameType> displayName;
+    @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<IconType> icon;
+    @XmlElement(name = "handler-name", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected org.apache.axis2.jaxws.description.xml.handler.String handlerName;
+    @XmlElement(name = "handler-class", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected FullyQualifiedClassType handlerClass;
+    @XmlElement(name = "init-param", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<ParamValueType> initParam;
+    @XmlElement(name = "soap-role", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<org.apache.axis2.jaxws.description.xml.handler.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.description.xml.handler.String }
+     *     
+     */
+    public org.apache.axis2.jaxws.description.xml.handler.String getHandlerName() {
+        return handlerName;
+    }
+
+    /**
+     * Sets the value of the handlerName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link org.apache.axis2.jaxws.description.xml.handler.String }
+     *     
+     */
+    public void setHandlerName(org.apache.axis2.jaxws.description.xml.handler.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 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.description.xml.handler.String }
+     * 
+     * 
+     */
+    public List<org.apache.axis2.jaxws.description.xml.handler.String> getSoapRole() {
+        if (soapRole == null) {
+            soapRole = new ArrayList<org.apache.axis2.jaxws.description.xml.handler.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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/HomeType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/HomeType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/HomeType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/HomeType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,52 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/IconType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/IconType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/IconType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/IconType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,170 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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", namespace = "http://java.sun.com/xml/ns/javaee")
+    protected PathType smallIcon;
+    @XmlElement(name = "large-icon", namespace = "http://java.sun.com/xml/ns/javaee")
+    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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/InjectionTargetType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/InjectionTargetType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/InjectionTargetType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/InjectionTargetType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,119 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected FullyQualifiedClassType injectionTargetClass;
+    @XmlElement(name = "injection-target-name", namespace = "http://java.sun.com/xml/ns/javaee", 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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JavaIdentifierType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JavaIdentifierType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JavaIdentifierType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JavaIdentifierType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,47 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JavaTypeType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JavaTypeType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JavaTypeType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JavaTypeType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,47 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JndiNameType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JndiNameType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JndiNameType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/JndiNameType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,48 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LifecycleCallbackType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LifecycleCallbackType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LifecycleCallbackType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LifecycleCallbackType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,112 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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", namespace = "http://java.sun.com/xml/ns/javaee")
+    protected FullyQualifiedClassType lifecycleCallbackClass;
+    @XmlElement(name = "lifecycle-callback-method", namespace = "http://java.sun.com/xml/ns/javaee", 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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/ListenerType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/ListenerType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/ListenerType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/ListenerType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,208 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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 {
+
+    @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<DescriptionType> description;
+    @XmlElement(name = "display-name", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<DisplayNameType> displayName;
+    @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<IconType> icon;
+    @XmlElement(name = "listener-class", namespace = "http://java.sun.com/xml/ns/javaee", 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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LocalHomeType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LocalHomeType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LocalHomeType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LocalHomeType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,46 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LocalType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LocalType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LocalType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/LocalType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,46 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationLinkType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationLinkType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationLinkType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationLinkType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,63 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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
+{
+
+
+}

Added: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationRefType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationRefType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationRefType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationRefType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,321 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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 {
+
+    @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<DescriptionType> description;
+    @XmlElement(name = "message-destination-ref-name", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected JndiNameType messageDestinationRefName;
+    @XmlElement(name = "message-destination-type", namespace = "http://java.sun.com/xml/ns/javaee")
+    protected MessageDestinationTypeType messageDestinationType;
+    @XmlElement(name = "message-destination-usage", namespace = "http://java.sun.com/xml/ns/javaee")
+    protected MessageDestinationUsageType messageDestinationUsage;
+    @XmlElement(name = "message-destination-link", namespace = "http://java.sun.com/xml/ns/javaee")
+    protected MessageDestinationLinkType messageDestinationLink;
+    @XmlElement(name = "mapped-name", namespace = "http://java.sun.com/xml/ns/javaee")
+    protected XsdStringType mappedName;
+    @XmlElement(name = "injection-target", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,256 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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 {
+
+    @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<DescriptionType> description;
+    @XmlElement(name = "display-name", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<DisplayNameType> displayName;
+    @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected List<IconType> icon;
+    @XmlElement(name = "message-destination-name", namespace = "http://java.sun.com/xml/ns/javaee", required = true)
+    protected org.apache.axis2.jaxws.description.xml.handler.String messageDestinationName;
+    @XmlElement(name = "mapped-name", namespace = "http://java.sun.com/xml/ns/javaee")
+    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.description.xml.handler.String }
+     *     
+     */
+    public org.apache.axis2.jaxws.description.xml.handler.String getMessageDestinationName() {
+        return messageDestinationName;
+    }
+
+    /**
+     * Sets the value of the messageDestinationName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link org.apache.axis2.jaxws.description.xml.handler.String }
+     *     
+     */
+    public void setMessageDestinationName(org.apache.axis2.jaxws.description.xml.handler.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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationTypeType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationTypeType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationTypeType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationTypeType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,54 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationUsageType.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationUsageType.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationUsageType.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/MessageDestinationUsageType.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,56 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/ObjectFactory.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/ObjectFactory.java?view=auto&rev=522702
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/ObjectFactory.java (added)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/xml/handler/ObjectFactory.java Mon Mar 26 18:49:41 2007
@@ -0,0 +1,540 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2007.03.21 at 10:56:51 AM CDT 
+//
+
+
+package org.apache.axis2.jaxws.description.xml.handler;
+
+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.description.xml.handler 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");
+
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.axis2.jaxws.description.xml.handler
+     * 
+     */
+    public ObjectFactory() {
+    }
+
+    /**
+     * Create an instance of {@link EjbRefTypeType }
+     * 
+     */
+    public EjbRefTypeType createEjbRefTypeType() {
+        return new EjbRefTypeType();
+    }
+
+    /**
+     * Create an instance of {@link XsdQNameType }
+     * 
+     */
+    public XsdQNameType createXsdQNameType() {
+        return new XsdQNameType();
+    }
+
+    /**
+     * Create an instance of {@link PersistenceUnitRefType }
+     * 
+     */
+    public PersistenceUnitRefType createPersistenceUnitRefType() {
+        return new PersistenceUnitRefType();
+    }
+
+    /**
+     * Create an instance of {@link XsdIntegerType }
+     * 
+     */
+    public XsdIntegerType createXsdIntegerType() {
+        return new XsdIntegerType();
+    }
+
+    /**
+     * Create an instance of {@link XsdPositiveIntegerType }
+     * 
+     */
+    public XsdPositiveIntegerType createXsdPositiveIntegerType() {
+        return new XsdPositiveIntegerType();
+    }
+
+    /**
+     * Create an instance of {@link EnvEntryTypeValuesType }
+     * 
+     */
+    public EnvEntryTypeValuesType createEnvEntryTypeValuesType() {
+        return new EnvEntryTypeValuesType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationType }
+     * 
+     */
+    public MessageDestinationType createMessageDestinationType() {
+        return new MessageDestinationType();
+    }
+
+    /**
+     * Create an instance of {@link JndiNameType }
+     * 
+     */
+    public JndiNameType createJndiNameType() {
+        return new JndiNameType();
+    }
+
+    /**
+     * Create an instance of {@link EjbRefNameType }
+     * 
+     */
+    public EjbRefNameType createEjbRefNameType() {
+        return new EjbRefNameType();
+    }
+
+    /**
+     * Create an instance of {@link IconType }
+     * 
+     */
+    public IconType createIconType() {
+        return new IconType();
+    }
+
+    /**
+     * Create an instance of {@link ResAuthType }
+     * 
+     */
+    public ResAuthType createResAuthType() {
+        return new ResAuthType();
+    }
+
+    /**
+     * Create an instance of {@link ServiceRefHandlerType }
+     * 
+     */
+    public ServiceRefHandlerType createServiceRefHandlerType() {
+        return new ServiceRefHandlerType();
+    }
+
+    /**
+     * Create an instance of {@link ServiceRefHandlerChainType }
+     * 
+     */
+    public ServiceRefHandlerChainType createServiceRefHandlerChainType() {
+        return new ServiceRefHandlerChainType();
+    }
+
+    /**
+     * Create an instance of {@link String }
+     * 
+     */
+    public String createString() {
+        return new String();
+    }
+
+    /**
+     * Create an instance of {@link PortComponentRefType }
+     * 
+     */
+    public PortComponentRefType createPortComponentRefType() {
+        return new PortComponentRefType();
+    }
+
+    /**
+     * Create an instance of {@link PathType }
+     * 
+     */
+    public PathType createPathType() {
+        return new PathType();
+    }
+
+    /**
+     * Create an instance of {@link EjbRefType }
+     * 
+     */
+    public EjbRefType createEjbRefType() {
+        return new EjbRefType();
+    }
+
+    /**
+     * Create an instance of {@link InjectionTargetType }
+     * 
+     */
+    public InjectionTargetType createInjectionTargetType() {
+        return new InjectionTargetType();
+    }
+
+    /**
+     * Create an instance of {@link GenericBooleanType }
+     * 
+     */
+    public GenericBooleanType createGenericBooleanType() {
+        return new GenericBooleanType();
+    }
+
+    /**
+     * Create an instance of {@link HandlerType }
+     * 
+     */
+    public HandlerType createHandlerType() {
+        return new HandlerType();
+    }
+
+    /**
+     * Create an instance of {@link ParamValueType }
+     * 
+     */
+    public ParamValueType createParamValueType() {
+        return new ParamValueType();
+    }
+
+    /**
+     * Create an instance of {@link DisplayNameType }
+     * 
+     */
+    public DisplayNameType createDisplayNameType() {
+        return new DisplayNameType();
+    }
+
+    /**
+     * Create an instance of {@link FullyQualifiedClassType }
+     * 
+     */
+    public FullyQualifiedClassType createFullyQualifiedClassType() {
+        return new FullyQualifiedClassType();
+    }
+
+    /**
+     * Create an instance of {@link HomeType }
+     * 
+     */
+    public HomeType createHomeType() {
+        return new HomeType();
+    }
+
+    /**
+     * Create an instance of {@link EmptyType }
+     * 
+     */
+    public EmptyType createEmptyType() {
+        return new EmptyType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationTypeType }
+     * 
+     */
+    public MessageDestinationTypeType createMessageDestinationTypeType() {
+        return new MessageDestinationTypeType();
+    }
+
+    /**
+     * Create an instance of {@link XsdNMTOKENType }
+     * 
+     */
+    public XsdNMTOKENType createXsdNMTOKENType() {
+        return new XsdNMTOKENType();
+    }
+
+    /**
+     * Create an instance of {@link ResourceEnvRefType }
+     * 
+     */
+    public ResourceEnvRefType createResourceEnvRefType() {
+        return new ResourceEnvRefType();
+    }
+
+    /**
+     * Create an instance of {@link EjbLocalRefType }
+     * 
+     */
+    public EjbLocalRefType createEjbLocalRefType() {
+        return new EjbLocalRefType();
+    }
+
+    /**
+     * Create an instance of {@link ListenerType }
+     * 
+     */
+    public ListenerType createListenerType() {
+        return new ListenerType();
+    }
+
+    /**
+     * Create an instance of {@link LocalType }
+     * 
+     */
+    public LocalType createLocalType() {
+        return new LocalType();
+    }
+
+    /**
+     * Create an instance of {@link RemoteType }
+     * 
+     */
+    public RemoteType createRemoteType() {
+        return new RemoteType();
+    }
+
+    /**
+     * Create an instance of {@link XsdBooleanType }
+     * 
+     */
+    public XsdBooleanType createXsdBooleanType() {
+        return new XsdBooleanType();
+    }
+
+    /**
+     * Create an instance of {@link ResourceRefType }
+     * 
+     */
+    public ResourceRefType createResourceRefType() {
+        return new ResourceRefType();
+    }
+
+    /**
+     * Create an instance of {@link HandlerChainType }
+     * 
+     */
+    public HandlerChainType createHandlerChainType() {
+        return new HandlerChainType();
+    }
+
+    /**
+     * Create an instance of {@link PropertyType }
+     * 
+     */
+    public PropertyType createPropertyType() {
+        return new PropertyType();
+    }
+
+    /**
+     * Create an instance of {@link ServiceRefHandlerChainsType }
+     * 
+     */
+    public ServiceRefHandlerChainsType createServiceRefHandlerChainsType() {
+        return new ServiceRefHandlerChainsType();
+    }
+
+    /**
+     * Create an instance of {@link RunAsType }
+     * 
+     */
+    public RunAsType createRunAsType() {
+        return new RunAsType();
+    }
+
+    /**
+     * Create an instance of {@link RoleNameType }
+     * 
+     */
+    public RoleNameType createRoleNameType() {
+        return new RoleNameType();
+    }
+
+    /**
+     * 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 SecurityRoleType }
+     * 
+     */
+    public SecurityRoleType createSecurityRoleType() {
+        return new SecurityRoleType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationLinkType }
+     * 
+     */
+    public MessageDestinationLinkType createMessageDestinationLinkType() {
+        return new MessageDestinationLinkType();
+    }
+
+    /**
+     * Create an instance of {@link XsdStringType }
+     * 
+     */
+    public XsdStringType createXsdStringType() {
+        return new XsdStringType();
+    }
+
+    /**
+     * Create an instance of {@link ServiceRefType }
+     * 
+     */
+    public ServiceRefType createServiceRefType() {
+        return new ServiceRefType();
+    }
+
+    /**
+     * Create an instance of {@link PersistenceContextRefType }
+     * 
+     */
+    public PersistenceContextRefType createPersistenceContextRefType() {
+        return new PersistenceContextRefType();
+    }
+
+    /**
+     * Create an instance of {@link XsdNonNegativeIntegerType }
+     * 
+     */
+    public XsdNonNegativeIntegerType createXsdNonNegativeIntegerType() {
+        return new XsdNonNegativeIntegerType();
+    }
+
+    /**
+     * Create an instance of {@link LocalHomeType }
+     * 
+     */
+    public LocalHomeType createLocalHomeType() {
+        return new LocalHomeType();
+    }
+
+    /**
+     * Create an instance of {@link PersistenceContextTypeType }
+     * 
+     */
+    public PersistenceContextTypeType createPersistenceContextTypeType() {
+        return new PersistenceContextTypeType();
+    }
+
+    /**
+     * Create an instance of {@link UrlPatternType }
+     * 
+     */
+    public UrlPatternType createUrlPatternType() {
+        return new UrlPatternType();
+    }
+
+    /**
+     * Create an instance of {@link EnvEntryType }
+     * 
+     */
+    public EnvEntryType createEnvEntryType() {
+        return new EnvEntryType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationUsageType }
+     * 
+     */
+    public MessageDestinationUsageType createMessageDestinationUsageType() {
+        return new MessageDestinationUsageType();
+    }
+
+    /**
+     * Create an instance of {@link JavaIdentifierType }
+     * 
+     */
+    public JavaIdentifierType createJavaIdentifierType() {
+        return new JavaIdentifierType();
+    }
+
+    /**
+     * Create an instance of {@link HandlerChainsType }
+     * 
+     */
+    public HandlerChainsType createHandlerChainsType() {
+        return new HandlerChainsType();
+    }
+
+    /**
+     * Create an instance of {@link MessageDestinationRefType }
+     * 
+     */
+    public MessageDestinationRefType createMessageDestinationRefType() {
+        return new MessageDestinationRefType();
+    }
+
+    /**
+     * Create an instance of {@link EjbLinkType }
+     * 
+     */
+    public EjbLinkType createEjbLinkType() {
+        return new EjbLinkType();
+    }
+
+    /**
+     * Create an instance of {@link SecurityRoleRefType }
+     * 
+     */
+    public SecurityRoleRefType createSecurityRoleRefType() {
+        return new SecurityRoleRefType();
+    }
+
+    /**
+     * Create an instance of {@link ResSharingScopeType }
+     * 
+     */
+    public ResSharingScopeType createResSharingScopeType() {
+        return new ResSharingScopeType();
+    }
+
+    /**
+     * Create an instance of {@link DescriptionType }
+     * 
+     */
+    public DescriptionType createDescriptionType() {
+        return new DescriptionType();
+    }
+
+    /**
+     * Create an instance of {@link LifecycleCallbackType }
+     * 
+     */
+    public LifecycleCallbackType createLifecycleCallbackType() {
+        return new LifecycleCallbackType();
+    }
+
+    /**
+     * Create an instance of {@link JavaTypeType }
+     * 
+     */
+    public JavaTypeType createJavaTypeType() {
+        return new JavaTypeType();
+    }
+
+    /**
+     * 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);
+    }
+
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org