Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 84024 invoked from network); 20 Feb 2007 23:33:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Feb 2007 23:33:22 -0000 Received: (qmail 5904 invoked by uid 500); 20 Feb 2007 23:33:29 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 5749 invoked by uid 500); 20 Feb 2007 23:33:29 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 5539 invoked by uid 99); 20 Feb 2007 23:33:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Feb 2007 15:33:28 -0800 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Feb 2007 15:33:14 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id B568B1A9822; Tue, 20 Feb 2007 15:32:53 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r509808 [3/9] - in /geronimo/server/trunk/modules/geronimo-axis2: ./ src/main/generated/org/apache/axis2/jaxws/javaee/ src/main/java/org/apache/geronimo/axis2/ src/main/java/org/apache/geronimo/axis2/client/ src/test/java/org/apache/geronim... Date: Tue, 20 Feb 2007 23:32:48 -0000 To: scm@geronimo.apache.org From: dims@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070220233253.B568B1A9822@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LifecycleCallbackType.java URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LifecycleCallbackType.java?view=diff&rev=509808&r1=509807&r2=509808 ============================================================================== --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LifecycleCallbackType.java (original) +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LifecycleCallbackType.java Tue Feb 20 15:32:43 2007 @@ -1,112 +1,112 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 -// - - -package org.apache.axis2.jaxws.javaee; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * - * - * The lifecycle-callback type specifies a method on a - * class to be called when a lifecycle event occurs. - * Note that each class may have only one lifecycle callback - * method for any given event and that the method may not - * be overloaded. - * - * If the lifefycle-callback-class element is missing then - * the class defining the callback is assumed to be the - * component class in scope at the place in the descriptor - * in which the callback definition appears. - * - * - * - *

Java class for lifecycle-callbackType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

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

Java class for lifecycle-callbackType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="lifecycle-callbackType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="lifecycle-callback-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType" minOccurs="0"/>
+ *         <element name="lifecycle-callback-method" type="{http://java.sun.com/xml/ns/javaee}java-identifierType"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "lifecycle-callbackType", propOrder = { + "lifecycleCallbackClass", + "lifecycleCallbackMethod" +}) +public class LifecycleCallbackType { + + @XmlElement(name = "lifecycle-callback-class") + protected FullyQualifiedClassType lifecycleCallbackClass; + @XmlElement(name = "lifecycle-callback-method", required = true) + protected JavaIdentifierType lifecycleCallbackMethod; + + /** + * Gets the value of the lifecycleCallbackClass property. + * + * @return + * possible object is + * {@link FullyQualifiedClassType } + * + */ + public FullyQualifiedClassType getLifecycleCallbackClass() { + return lifecycleCallbackClass; + } + + /** + * Sets the value of the lifecycleCallbackClass property. + * + * @param value + * allowed object is + * {@link FullyQualifiedClassType } + * + */ + public void setLifecycleCallbackClass(FullyQualifiedClassType value) { + this.lifecycleCallbackClass = value; + } + + /** + * Gets the value of the lifecycleCallbackMethod property. + * + * @return + * possible object is + * {@link JavaIdentifierType } + * + */ + public JavaIdentifierType getLifecycleCallbackMethod() { + return lifecycleCallbackMethod; + } + + /** + * Sets the value of the lifecycleCallbackMethod property. + * + * @param value + * allowed object is + * {@link JavaIdentifierType } + * + */ + public void setLifecycleCallbackMethod(JavaIdentifierType value) { + this.lifecycleCallbackMethod = value; + } + +} Propchange: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LifecycleCallbackType.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ListenerType.java URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ListenerType.java?view=diff&rev=509808&r1=509807&r2=509808 ============================================================================== --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ListenerType.java (original) +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ListenerType.java Tue Feb 20 15:32:43 2007 @@ -1,206 +1,206 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 -// - - -package org.apache.axis2.jaxws.javaee; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - * - * - * The listenerType indicates the deployment properties for a web - * application listener bean. - * - * - * - *

Java class for listenerType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="listenerType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://java.sun.com/xml/ns/javaee}descriptionGroup"/>
- *         <element name="listener-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/>
- *       </sequence>
- *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "listenerType", propOrder = { - "description", - "displayName", - "icon", - "listenerClass" -}) -public class ListenerType { - - protected List description; - @XmlElement(name = "display-name") - protected List displayName; - protected List icon; - @XmlElement(name = "listener-class", required = true) - protected FullyQualifiedClassType listenerClass; - @XmlAttribute - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - protected java.lang.String id; - - /** - * Gets the value of the description property. - * - *

- * 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 set method for the description property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDescription().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DescriptionType } - * - * - */ - public List getDescription() { - if (description == null) { - description = new ArrayList(); - } - return this.description; - } - - /** - * Gets the value of the displayName property. - * - *

- * 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 set method for the displayName property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDisplayName().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DisplayNameType } - * - * - */ - public List getDisplayName() { - if (displayName == null) { - displayName = new ArrayList(); - } - return this.displayName; - } - - /** - * Gets the value of the icon property. - * - *

- * 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 set method for the icon property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getIcon().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link IconType } - * - * - */ - public List getIcon() { - if (icon == null) { - icon = new ArrayList(); - } - 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; - } - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 +// + + +package org.apache.axis2.jaxws.javaee; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlID; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + + +/** + * + * + * The listenerType indicates the deployment properties for a web + * application listener bean. + * + * + * + *

Java class for listenerType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="listenerType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <group ref="{http://java.sun.com/xml/ns/javaee}descriptionGroup"/>
+ *         <element name="listener-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/>
+ *       </sequence>
+ *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "listenerType", propOrder = { + "description", + "displayName", + "icon", + "listenerClass" +}) +public class ListenerType { + + protected List description; + @XmlElement(name = "display-name") + protected List displayName; + protected List icon; + @XmlElement(name = "listener-class", required = true) + protected FullyQualifiedClassType listenerClass; + @XmlAttribute + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlID + protected java.lang.String id; + + /** + * Gets the value of the description property. + * + *

+ * 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 set method for the description property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDescription().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DescriptionType } + * + * + */ + public List getDescription() { + if (description == null) { + description = new ArrayList(); + } + return this.description; + } + + /** + * Gets the value of the displayName property. + * + *

+ * 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 set method for the displayName property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDisplayName().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DisplayNameType } + * + * + */ + public List getDisplayName() { + if (displayName == null) { + displayName = new ArrayList(); + } + return this.displayName; + } + + /** + * Gets the value of the icon property. + * + *

+ * 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 set method for the icon property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getIcon().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link IconType } + * + * + */ + public List getIcon() { + if (icon == null) { + icon = new ArrayList(); + } + 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; + } + +} Propchange: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/ListenerType.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalHomeType.java URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalHomeType.java?view=diff&rev=509808&r1=509807&r2=509808 ============================================================================== --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalHomeType.java (original) +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalHomeType.java Tue Feb 20 15:32:43 2007 @@ -1,46 +1,46 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 -// - - -package org.apache.axis2.jaxws.javaee; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * - * - * The local-homeType defines the fully-qualified - * name of an enterprise bean's local home interface. - * - * - * - *

Java class for local-homeType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="local-homeType">
- *   <simpleContent>
- *     <restriction base="<http://java.sun.com/xml/ns/javaee>fully-qualified-classType">
- *     </restriction>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "local-homeType") -public class LocalHomeType - extends FullyQualifiedClassType -{ - - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 +// + + +package org.apache.axis2.jaxws.javaee; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + * + * + * The local-homeType defines the fully-qualified + * name of an enterprise bean's local home interface. + * + * + * + *

Java class for local-homeType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="local-homeType">
+ *   <simpleContent>
+ *     <restriction base="<http://java.sun.com/xml/ns/javaee>fully-qualified-classType">
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "local-homeType") +public class LocalHomeType + extends FullyQualifiedClassType +{ + + +} Propchange: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalHomeType.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalType.java URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalType.java?view=diff&rev=509808&r1=509807&r2=509808 ============================================================================== --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalType.java (original) +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalType.java Tue Feb 20 15:32:43 2007 @@ -1,46 +1,46 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 -// - - -package org.apache.axis2.jaxws.javaee; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * - * - * The localType defines the fully-qualified name of an - * enterprise bean's local interface. - * - * - * - *

Java class for localType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="localType">
- *   <simpleContent>
- *     <restriction base="<http://java.sun.com/xml/ns/javaee>fully-qualified-classType">
- *     </restriction>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "localType") -public class LocalType - extends FullyQualifiedClassType -{ - - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 +// + + +package org.apache.axis2.jaxws.javaee; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + * + * + * The localType defines the fully-qualified name of an + * enterprise bean's local interface. + * + * + * + *

Java class for localType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="localType">
+ *   <simpleContent>
+ *     <restriction base="<http://java.sun.com/xml/ns/javaee>fully-qualified-classType">
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "localType") +public class LocalType + extends FullyQualifiedClassType +{ + + +} Propchange: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/LocalType.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationLinkType.java URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationLinkType.java?view=diff&rev=509808&r1=509807&r2=509808 ============================================================================== --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationLinkType.java (original) +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationLinkType.java Tue Feb 20 15:32:43 2007 @@ -1,63 +1,63 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 -// - - -package org.apache.axis2.jaxws.javaee; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * - * - * The message-destination-linkType is used to link a message - * destination reference or message-driven bean to a message - * destination. - * - * The Assembler sets the value to reflect the flow of messages - * between producers and consumers in the application. - * - * The value must be the message-destination-name of a message - * destination in the same Deployment File or in another - * Deployment File in the same Java EE application unit. - * - * Alternatively, the value may be composed of a path name - * specifying a Deployment File containing the referenced - * message destination with the message-destination-name of the - * destination appended and separated from the path name by - * "#". The path name is relative to the Deployment File - * containing Deployment Component that is referencing the - * message destination. This allows multiple message - * destinations with the same name to be uniquely identified. - * - * - * - *

Java class for message-destination-linkType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="message-destination-linkType">
- *   <simpleContent>
- *     <restriction base="<http://java.sun.com/xml/ns/javaee>string">
- *     </restriction>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "message-destination-linkType") -public class MessageDestinationLinkType - extends String -{ - - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 +// + + +package org.apache.axis2.jaxws.javaee; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + * + * + * The message-destination-linkType is used to link a message + * destination reference or message-driven bean to a message + * destination. + * + * The Assembler sets the value to reflect the flow of messages + * between producers and consumers in the application. + * + * The value must be the message-destination-name of a message + * destination in the same Deployment File or in another + * Deployment File in the same Java EE application unit. + * + * Alternatively, the value may be composed of a path name + * specifying a Deployment File containing the referenced + * message destination with the message-destination-name of the + * destination appended and separated from the path name by + * "#". The path name is relative to the Deployment File + * containing Deployment Component that is referencing the + * message destination. This allows multiple message + * destinations with the same name to be uniquely identified. + * + * + * + *

Java class for message-destination-linkType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="message-destination-linkType">
+ *   <simpleContent>
+ *     <restriction base="<http://java.sun.com/xml/ns/javaee>string">
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "message-destination-linkType") +public class MessageDestinationLinkType + extends String +{ + + +} Propchange: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationLinkType.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: 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=diff&rev=509808&r1=509807&r2=509808 ============================================================================== --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationRefType.java (original) +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationRefType.java Tue Feb 20 15:32:43 2007 @@ -1,320 +1,320 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs -// See http://java.sun.com/xml/jaxb -// 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: - * - * - * jms/StockQueue - * - * javax.jms.Queue - * - * Consumes - * - * CorporateStocks - * - * - * - * - * - * - *

Java class for message-destination-refType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="message-destination-refType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="description" type="{http://java.sun.com/xml/ns/javaee}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="message-destination-ref-name" type="{http://java.sun.com/xml/ns/javaee}jndi-nameType"/>
- *         <element name="message-destination-type" type="{http://java.sun.com/xml/ns/javaee}message-destination-typeType" minOccurs="0"/>
- *         <element name="message-destination-usage" type="{http://java.sun.com/xml/ns/javaee}message-destination-usageType" minOccurs="0"/>
- *         <element name="message-destination-link" type="{http://java.sun.com/xml/ns/javaee}message-destination-linkType" minOccurs="0"/>
- *         <group ref="{http://java.sun.com/xml/ns/javaee}resourceGroup"/>
- *       </sequence>
- *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "message-destination-refType", propOrder = { - "description", - "messageDestinationRefName", - "messageDestinationType", - "messageDestinationUsage", - "messageDestinationLink", - "mappedName", - "injectionTarget" -}) -public class MessageDestinationRefType { - - protected List 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 injectionTarget; - @XmlAttribute - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - protected java.lang.String id; - - /** - * Gets the value of the description property. - * - *

- * 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 set method for the description property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDescription().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DescriptionType } - * - * - */ - public List getDescription() { - if (description == null) { - description = new ArrayList(); - } - 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. - * - *

- * 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 set method for the injectionTarget property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getInjectionTarget().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InjectionTargetType } - * - * - */ - public List getInjectionTarget() { - if (injectionTarget == null) { - injectionTarget = new ArrayList(); - } - 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; - } - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs +// See http://java.sun.com/xml/jaxb +// 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: + * + * + * jms/StockQueue + * + * javax.jms.Queue + * + * Consumes + * + * CorporateStocks + * + * + * + * + * + * + *

Java class for message-destination-refType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="message-destination-refType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="description" type="{http://java.sun.com/xml/ns/javaee}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="message-destination-ref-name" type="{http://java.sun.com/xml/ns/javaee}jndi-nameType"/>
+ *         <element name="message-destination-type" type="{http://java.sun.com/xml/ns/javaee}message-destination-typeType" minOccurs="0"/>
+ *         <element name="message-destination-usage" type="{http://java.sun.com/xml/ns/javaee}message-destination-usageType" minOccurs="0"/>
+ *         <element name="message-destination-link" type="{http://java.sun.com/xml/ns/javaee}message-destination-linkType" minOccurs="0"/>
+ *         <group ref="{http://java.sun.com/xml/ns/javaee}resourceGroup"/>
+ *       </sequence>
+ *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "message-destination-refType", propOrder = { + "description", + "messageDestinationRefName", + "messageDestinationType", + "messageDestinationUsage", + "messageDestinationLink", + "mappedName", + "injectionTarget" +}) +public class MessageDestinationRefType { + + protected List 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 injectionTarget; + @XmlAttribute + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + @XmlID + protected java.lang.String id; + + /** + * Gets the value of the description property. + * + *

+ * 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 set method for the description property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDescription().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DescriptionType } + * + * + */ + public List getDescription() { + if (description == null) { + description = new ArrayList(); + } + 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. + * + *

+ * 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 set method for the injectionTarget property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getInjectionTarget().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link InjectionTargetType } + * + * + */ + public List getInjectionTarget() { + if (injectionTarget == null) { + injectionTarget = new ArrayList(); + } + 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; + } + +} Propchange: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationRefType.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: 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=diff&rev=509808&r1=509807&r2=509808 ============================================================================== --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationType.java (original) +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationType.java Tue Feb 20 15:32:43 2007 @@ -1,254 +1,254 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs -// See http://java.sun.com/xml/jaxb -// 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: - * - * - * CorporateStocks - * - * - * - * - * - * - *

Java class for message-destinationType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="message-destinationType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <group ref="{http://java.sun.com/xml/ns/javaee}descriptionGroup"/>
- *         <element name="message-destination-name" type="{http://java.sun.com/xml/ns/javaee}string"/>
- *         <element name="mapped-name" type="{http://java.sun.com/xml/ns/javaee}xsdStringType" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "message-destinationType", propOrder = { - "description", - "displayName", - "icon", - "messageDestinationName", - "mappedName" -}) -public class MessageDestinationType { - - protected List description; - @XmlElement(name = "display-name") - protected List displayName; - protected List 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. - * - *

- * 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 set method for the description property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDescription().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DescriptionType } - * - * - */ - public List getDescription() { - if (description == null) { - description = new ArrayList(); - } - return this.description; - } - - /** - * Gets the value of the displayName property. - * - *

- * 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 set method for the displayName property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDisplayName().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DisplayNameType } - * - * - */ - public List getDisplayName() { - if (displayName == null) { - displayName = new ArrayList(); - } - return this.displayName; - } - - /** - * Gets the value of the icon property. - * - *

- * 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 set method for the icon property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getIcon().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link IconType } - * - * - */ - public List getIcon() { - if (icon == null) { - icon = new ArrayList(); - } - 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; - } - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs +// See http://java.sun.com/xml/jaxb +// 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: + * + * + * CorporateStocks + * + * + * + * + * + * + *

Java class for message-destinationType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="message-destinationType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <group ref="{http://java.sun.com/xml/ns/javaee}descriptionGroup"/>
+ *         <element name="message-destination-name" type="{http://java.sun.com/xml/ns/javaee}string"/>
+ *         <element name="mapped-name" type="{http://java.sun.com/xml/ns/javaee}xsdStringType" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "message-destinationType", propOrder = { + "description", + "displayName", + "icon", + "messageDestinationName", + "mappedName" +}) +public class MessageDestinationType { + + protected List description; + @XmlElement(name = "display-name") + protected List displayName; + protected List 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. + * + *

+ * 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 set method for the description property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDescription().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DescriptionType } + * + * + */ + public List getDescription() { + if (description == null) { + description = new ArrayList(); + } + return this.description; + } + + /** + * Gets the value of the displayName property. + * + *

+ * 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 set method for the displayName property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getDisplayName().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DisplayNameType } + * + * + */ + public List getDisplayName() { + if (displayName == null) { + displayName = new ArrayList(); + } + return this.displayName; + } + + /** + * Gets the value of the icon property. + * + *

+ * 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 set method for the icon property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getIcon().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link IconType } + * + * + */ + public List getIcon() { + if (icon == null) { + icon = new ArrayList(); + } + 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; + } + +} Propchange: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationType.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: 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=diff&rev=509808&r1=509807&r2=509808 ============================================================================== --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationTypeType.java (original) +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationTypeType.java Tue Feb 20 15:32:43 2007 @@ -1,54 +1,54 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs -// See http://java.sun.com/xml/jaxb -// 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: - * - * javax.jms.Queue - * - * - * - * - * - *

Java class for message-destination-typeType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="message-destination-typeType">
- *   <simpleContent>
- *     <restriction base="<http://java.sun.com/xml/ns/javaee>fully-qualified-classType">
- *     </restriction>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "message-destination-typeType") -public class MessageDestinationTypeType - extends FullyQualifiedClassType -{ - - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs +// See http://java.sun.com/xml/jaxb +// 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: + * + * javax.jms.Queue + * + * + * + * + * + *

Java class for message-destination-typeType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="message-destination-typeType">
+ *   <simpleContent>
+ *     <restriction base="<http://java.sun.com/xml/ns/javaee>fully-qualified-classType">
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "message-destination-typeType") +public class MessageDestinationTypeType + extends FullyQualifiedClassType +{ + + +} Propchange: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationTypeType.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: 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=diff&rev=509808&r1=509807&r2=509808 ============================================================================== --- geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationUsageType.java (original) +++ geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationUsageType.java Tue Feb 20 15:32:43 2007 @@ -1,56 +1,56 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs -// See http://java.sun.com/xml/jaxb -// 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 - * - * - * - *

Java class for message-destination-usageType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="message-destination-usageType">
- *   <simpleContent>
- *     <restriction base="<http://java.sun.com/xml/ns/javaee>string">
- *     </restriction>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "message-destination-usageType") -public class MessageDestinationUsageType - extends String -{ - - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs +// See http://java.sun.com/xml/jaxb +// 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 + * + * + * + *

Java class for message-destination-usageType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="message-destination-usageType">
+ *   <simpleContent>
+ *     <restriction base="<http://java.sun.com/xml/ns/javaee>string">
+ *     </restriction>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "message-destination-usageType") +public class MessageDestinationUsageType + extends String +{ + + +} Propchange: geronimo/server/trunk/modules/geronimo-axis2/src/main/generated/org/apache/axis2/jaxws/javaee/MessageDestinationUsageType.java ------------------------------------------------------------------------------ svn:eol-style = native