Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 51153 invoked from network); 8 Jun 2010 04:41:10 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 8 Jun 2010 04:41:10 -0000 Received: (qmail 39278 invoked by uid 500); 8 Jun 2010 04:41:10 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 39147 invoked by uid 500); 8 Jun 2010 04:41:09 -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 39116 invoked by uid 99); 8 Jun 2010 04:41:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jun 2010 04:41:09 +0000 X-ASF-Spam-Status: No, hits=-1933.4 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jun 2010 04:41:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EF65B2388A40; Tue, 8 Jun 2010 04:40:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r952535 [3/26] - in /geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins: org.apache.geronimo.j2ee.v11.jaxbmodel/ org.apache.geronimo.j2ee.v11.jaxbmodel/META-INF/ org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/... Date: Tue, 08 Jun 2010 04:40:28 -0000 To: scm@geronimo.apache.org From: delos@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100608044039.EF65B2388A40@eris.apache.org> Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectiondefinitionInstanceType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectiondefinitionInstanceType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectiondefinitionInstanceType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectiondefinitionInstanceType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,165 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +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.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for connectiondefinition-instanceType complex type. + * + *

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

+ * <complexType name="connectiondefinition-instanceType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="implemented-interface" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}fully-qualified-classType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="config-property-setting" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}config-property-settingType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="connectionmanager" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}connectionmanagerType"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "connectiondefinition-instanceType", propOrder = { + "name", + "implementedInterface", + "configPropertySetting", + "connectionmanager" +}) +public class ConnectiondefinitionInstanceType { + + @XmlElement(required = true) + protected String name; + @XmlElement(name = "implemented-interface") + protected List implementedInterface; + @XmlElement(name = "config-property-setting") + protected List configPropertySetting; + @XmlElement(required = true) + protected ConnectionmanagerType connectionmanager; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the implementedInterface 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 implementedInterface property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getImplementedInterface() { + if (implementedInterface == null) { + implementedInterface = new ArrayList(); + } + return this.implementedInterface; + } + + /** + * Gets the value of the configPropertySetting 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 configPropertySetting property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link ConfigPropertySettingType } + * + * + */ + public List getConfigPropertySetting() { + if (configPropertySetting == null) { + configPropertySetting = new ArrayList(); + } + return this.configPropertySetting; + } + + /** + * Gets the value of the connectionmanager property. + * + * @return + * possible object is + * {@link ConnectionmanagerType } + * + */ + public ConnectionmanagerType getConnectionmanager() { + return connectionmanager; + } + + /** + * Sets the value of the connectionmanager property. + * + * @param value + * allowed object is + * {@link ConnectionmanagerType } + * + */ + public void setConnectionmanager(ConnectionmanagerType value) { + this.connectionmanager = value; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectiondefinitionInstanceType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectiondefinitionInstanceType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectiondefinitionInstanceType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectionmanagerType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectionmanagerType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectionmanagerType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectionmanagerType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,273 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +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 ConnectionManager configuration. + * + * + *

Java class for connectionmanagerType complex type. + * + *

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

+ * <complexType name="connectionmanagerType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="container-managed-security" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType" minOccurs="0"/>
+ *         <choice minOccurs="0">
+ *           <element name="no-transaction" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType"/>
+ *           <element name="local-transaction" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType"/>
+ *           <element name="xa-transaction" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}xatransactionType"/>
+ *           <element name="transaction-log" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType"/>
+ *         </choice>
+ *         <choice>
+ *           <element name="no-pool" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType"/>
+ *           <element name="single-pool" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}singlepoolType"/>
+ *           <element name="partitioned-pool" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}partitionedpoolType"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "connectionmanagerType", propOrder = { + "containerManagedSecurity", + "noTransaction", + "localTransaction", + "xaTransaction", + "transactionLog", + "noPool", + "singlePool", + "partitionedPool" +}) +public class ConnectionmanagerType { + + @XmlElement(name = "container-managed-security") + protected EmptyType containerManagedSecurity; + @XmlElement(name = "no-transaction") + protected EmptyType noTransaction; + @XmlElement(name = "local-transaction") + protected EmptyType localTransaction; + @XmlElement(name = "xa-transaction") + protected XatransactionType xaTransaction; + @XmlElement(name = "transaction-log") + protected EmptyType transactionLog; + @XmlElement(name = "no-pool") + protected EmptyType noPool; + @XmlElement(name = "single-pool") + protected SinglepoolType singlePool; + @XmlElement(name = "partitioned-pool") + protected PartitionedpoolType partitionedPool; + + /** + * Gets the value of the containerManagedSecurity property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getContainerManagedSecurity() { + return containerManagedSecurity; + } + + /** + * Sets the value of the containerManagedSecurity property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setContainerManagedSecurity(EmptyType value) { + this.containerManagedSecurity = value; + } + + /** + * Gets the value of the noTransaction property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getNoTransaction() { + return noTransaction; + } + + /** + * Sets the value of the noTransaction property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setNoTransaction(EmptyType value) { + this.noTransaction = value; + } + + /** + * Gets the value of the localTransaction property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getLocalTransaction() { + return localTransaction; + } + + /** + * Sets the value of the localTransaction property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setLocalTransaction(EmptyType value) { + this.localTransaction = value; + } + + /** + * Gets the value of the xaTransaction property. + * + * @return + * possible object is + * {@link XatransactionType } + * + */ + public XatransactionType getXaTransaction() { + return xaTransaction; + } + + /** + * Sets the value of the xaTransaction property. + * + * @param value + * allowed object is + * {@link XatransactionType } + * + */ + public void setXaTransaction(XatransactionType value) { + this.xaTransaction = value; + } + + /** + * Gets the value of the transactionLog property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getTransactionLog() { + return transactionLog; + } + + /** + * Sets the value of the transactionLog property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setTransactionLog(EmptyType value) { + this.transactionLog = value; + } + + /** + * Gets the value of the noPool property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getNoPool() { + return noPool; + } + + /** + * Sets the value of the noPool property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setNoPool(EmptyType value) { + this.noPool = value; + } + + /** + * Gets the value of the singlePool property. + * + * @return + * possible object is + * {@link SinglepoolType } + * + */ + public SinglepoolType getSinglePool() { + return singlePool; + } + + /** + * Sets the value of the singlePool property. + * + * @param value + * allowed object is + * {@link SinglepoolType } + * + */ + public void setSinglePool(SinglepoolType value) { + this.singlePool = value; + } + + /** + * Gets the value of the partitionedPool property. + * + * @return + * possible object is + * {@link PartitionedpoolType } + * + */ + public PartitionedpoolType getPartitionedPool() { + return partitionedPool; + } + + /** + * Sets the value of the partitionedPool property. + * + * @param value + * allowed object is + * {@link PartitionedpoolType } + * + */ + public void setPartitionedPool(PartitionedpoolType value) { + this.partitionedPool = value; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectionmanagerType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectionmanagerType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectionmanagerType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectorType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectorType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectorType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectorType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,176 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +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.XmlElement; +import javax.xml.bind.annotation.XmlType; + +import org.apache.geronimo.j2ee.deployment.EnvironmentType; +import org.apache.geronimo.j2ee.deployment.GbeanType; + + +/** + * + * The connectorType defines a resource adapter. + * + * + *

Java class for connectorType complex type. + * + *

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

+ * <complexType name="connectorType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element ref="{http://geronimo.apache.org/xml/ns/deployment-1.1}environment" minOccurs="0"/>
+ *         <element name="resourceadapter" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}resourceadapterType" maxOccurs="unbounded"/>
+ *         <element name="adminobject" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}adminobjectType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{http://geronimo.apache.org/xml/ns/deployment-1.1}gbean" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "connectorType", propOrder = { + "environment", + "resourceadapter", + "adminobject", + "gbean" +}) +public class ConnectorType { + + @XmlElement(namespace = "http://geronimo.apache.org/xml/ns/deployment-1.1") + protected EnvironmentType environment; + @XmlElement(required = true) + protected List resourceadapter; + protected List adminobject; + @XmlElement(namespace = "http://geronimo.apache.org/xml/ns/deployment-1.1") + protected List gbean; + + /** + * Gets the value of the environment property. + * + * @return + * possible object is + * {@link EnvironmentType } + * + */ + public EnvironmentType getEnvironment() { + return environment; + } + + /** + * Sets the value of the environment property. + * + * @param value + * allowed object is + * {@link EnvironmentType } + * + */ + public void setEnvironment(EnvironmentType value) { + this.environment = value; + } + + /** + * Gets the value of the resourceadapter 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 resourceadapter property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link ResourceadapterType } + * + * + */ + public List getResourceadapter() { + if (resourceadapter == null) { + resourceadapter = new ArrayList(); + } + return this.resourceadapter; + } + + /** + * Gets the value of the adminobject 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 adminobject property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link AdminobjectType } + * + * + */ + public List getAdminobject() { + if (adminobject == null) { + adminobject = new ArrayList(); + } + return this.adminobject; + } + + /** + * Gets the value of the gbean 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 gbean property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link GbeanType } + * + * + */ + public List getGbean() { + if (gbean == null) { + gbean = new ArrayList(); + } + return this.gbean; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectorType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectorType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ConnectorType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/DescriptionType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/DescriptionType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/DescriptionType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/DescriptionType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; +import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; + + +/** + *

Java class for descriptionType complex type. + * + *

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

+ * <complexType name="descriptionType">
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/>
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "descriptionType", propOrder = { + "value" +}) +public class DescriptionType { + + @XmlValue + protected String value; + @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace") + @XmlJavaTypeAdapter(CollapsedStringAdapter.class) + protected String lang; + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + + /** + * Gets the value of the lang property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLang() { + return lang; + } + + /** + * Sets the value of the lang property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLang(String value) { + this.lang = value; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/DescriptionType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/DescriptionType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/DescriptionType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/EmptyType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/EmptyType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/EmptyType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/EmptyType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for emptyType complex type. + * + *

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

+ * <complexType name="emptyType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "emptyType") +public class EmptyType { + + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/EmptyType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/EmptyType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/EmptyType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ObjectFactory.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ObjectFactory.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ObjectFactory.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ObjectFactory.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,172 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +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.geronimo.xml.ns.j2ee.connector_1 package. + *

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 _Connector_QNAME = new QName("http://geronimo.apache.org/xml/ns/j2ee/connector-1.1", "connector"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.geronimo.xml.ns.j2ee.connector_1 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link ConnectorType } + * + */ + public ConnectorType createConnectorType() { + return new ConnectorType(); + } + + /** + * Create an instance of {@link ConnectionDefinitionType } + * + */ + public ConnectionDefinitionType createConnectionDefinitionType() { + return new ConnectionDefinitionType(); + } + + /** + * Create an instance of {@link PartitionedpoolType } + * + */ + public PartitionedpoolType createPartitionedpoolType() { + return new PartitionedpoolType(); + } + + /** + * Create an instance of {@link AdminobjectInstanceType } + * + */ + public AdminobjectInstanceType createAdminobjectInstanceType() { + return new AdminobjectInstanceType(); + } + + /** + * Create an instance of {@link AdminobjectType } + * + */ + public AdminobjectType createAdminobjectType() { + return new AdminobjectType(); + } + + /** + * Create an instance of {@link ResourceadapterType } + * + */ + public ResourceadapterType createResourceadapterType() { + return new ResourceadapterType(); + } + + /** + * Create an instance of {@link OutboundResourceadapterType } + * + */ + public OutboundResourceadapterType createOutboundResourceadapterType() { + return new OutboundResourceadapterType(); + } + + /** + * Create an instance of {@link ConnectiondefinitionInstanceType } + * + */ + public ConnectiondefinitionInstanceType createConnectiondefinitionInstanceType() { + return new ConnectiondefinitionInstanceType(); + } + + /** + * Create an instance of {@link ConfigPropertySettingType } + * + */ + public ConfigPropertySettingType createConfigPropertySettingType() { + return new ConfigPropertySettingType(); + } + + /** + * Create an instance of {@link ResourceadapterInstanceType } + * + */ + public ResourceadapterInstanceType createResourceadapterInstanceType() { + return new ResourceadapterInstanceType(); + } + + /** + * Create an instance of {@link DescriptionType } + * + */ + public DescriptionType createDescriptionType() { + return new DescriptionType(); + } + + /** + * Create an instance of {@link EmptyType } + * + */ + public EmptyType createEmptyType() { + return new EmptyType(); + } + + /** + * Create an instance of {@link XatransactionType } + * + */ + public XatransactionType createXatransactionType() { + return new XatransactionType(); + } + + /** + * Create an instance of {@link SinglepoolType } + * + */ + public SinglepoolType createSinglepoolType() { + return new SinglepoolType(); + } + + /** + * Create an instance of {@link ConnectionmanagerType } + * + */ + public ConnectionmanagerType createConnectionmanagerType() { + return new ConnectionmanagerType(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ConnectorType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://geronimo.apache.org/xml/ns/j2ee/connector-1.1", name = "connector") + public JAXBElement createConnector(ConnectorType value) { + return new JAXBElement(_Connector_QNAME, ConnectorType.class, null, value); + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ObjectFactory.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ObjectFactory.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ObjectFactory.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/OutboundResourceadapterType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/OutboundResourceadapterType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/OutboundResourceadapterType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/OutboundResourceadapterType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,94 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +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.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + * + * + * The outbound-resourceadapterType specifies information about + * an outbound resource adapter. The information includes fully + * qualified names of classes/interfaces required as part of + * the connector architecture specified contracts for + * connection management, level of transaction support + * provided, one or more authentication mechanisms supported + * and additional required security permissions. + * + * If there is no authentication-mechanism specified as part of + * resource adapter element then the resource adapter does not + * support any standard security authentication mechanisms as + * part of security contract. The application server ignores + * the security part of the system contracts in this case. + * + * + * + *

Java class for outbound-resourceadapterType complex type. + * + *

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

+ * <complexType name="outbound-resourceadapterType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="connection-definition" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}connection-definitionType" maxOccurs="unbounded"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "outbound-resourceadapterType", propOrder = { + "connectionDefinition" +}) +public class OutboundResourceadapterType { + + @XmlElement(name = "connection-definition", required = true) + protected List connectionDefinition; + + /** + * Gets the value of the connectionDefinition 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 connectionDefinition property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link ConnectionDefinitionType } + * + * + */ + public List getConnectionDefinition() { + if (connectionDefinition == null) { + connectionDefinition = new ArrayList(); + } + return this.connectionDefinition; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/OutboundResourceadapterType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/OutboundResourceadapterType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/OutboundResourceadapterType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/PartitionedpoolType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/PartitionedpoolType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/PartitionedpoolType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/PartitionedpoolType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for partitionedpoolType complex type. + * + *

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

+ * <complexType name="partitionedpoolType">
+ *   <complexContent>
+ *     <extension base="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}singlepoolType">
+ *       <sequence>
+ *         <element name="partition-by-subject" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType" minOccurs="0"/>
+ *         <element name="partition-by-connectionrequestinfo" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType" minOccurs="0"/>
+ *       </sequence>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "partitionedpoolType", propOrder = { + "partitionBySubject", + "partitionByConnectionrequestinfo" +}) +public class PartitionedpoolType + extends SinglepoolType +{ + + @XmlElement(name = "partition-by-subject") + protected EmptyType partitionBySubject; + @XmlElement(name = "partition-by-connectionrequestinfo") + protected EmptyType partitionByConnectionrequestinfo; + + /** + * Gets the value of the partitionBySubject property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getPartitionBySubject() { + return partitionBySubject; + } + + /** + * Sets the value of the partitionBySubject property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setPartitionBySubject(EmptyType value) { + this.partitionBySubject = value; + } + + /** + * Gets the value of the partitionByConnectionrequestinfo property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getPartitionByConnectionrequestinfo() { + return partitionByConnectionrequestinfo; + } + + /** + * Sets the value of the partitionByConnectionrequestinfo property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setPartitionByConnectionrequestinfo(EmptyType value) { + this.partitionByConnectionrequestinfo = value; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/PartitionedpoolType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/PartitionedpoolType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/PartitionedpoolType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterInstanceType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterInstanceType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterInstanceType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterInstanceType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,139 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +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.XmlElement; +import javax.xml.bind.annotation.XmlType; + +import org.apache.geronimo.j2ee.naming.GbeanLocatorType; + + +/** + * + * The resourceadapter instance info is put in a separate optional element + * to provide easier more consistent support for 1.0 adapters. + * + * + *

Java class for resourceadapter-instanceType complex type. + * + *

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

+ * <complexType name="resourceadapter-instanceType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="resourceadapter-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="config-property-setting" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}config-property-settingType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element ref="{http://geronimo.apache.org/xml/ns/naming-1.1}workmanager"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "resourceadapter-instanceType", propOrder = { + "resourceadapterName", + "configPropertySetting", + "workmanager" +}) +public class ResourceadapterInstanceType { + + @XmlElement(name = "resourceadapter-name", required = true) + protected String resourceadapterName; + @XmlElement(name = "config-property-setting") + protected List configPropertySetting; + @XmlElement(namespace = "http://geronimo.apache.org/xml/ns/naming-1.1", required = true) + protected GbeanLocatorType workmanager; + + /** + * Gets the value of the resourceadapterName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getResourceadapterName() { + return resourceadapterName; + } + + /** + * Sets the value of the resourceadapterName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setResourceadapterName(String value) { + this.resourceadapterName = value; + } + + /** + * Gets the value of the configPropertySetting 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 configPropertySetting property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link ConfigPropertySettingType } + * + * + */ + public List getConfigPropertySetting() { + if (configPropertySetting == null) { + configPropertySetting = new ArrayList(); + } + return this.configPropertySetting; + } + + /** + * Gets the value of the workmanager property. + * + * @return + * possible object is + * {@link GbeanLocatorType } + * + */ + public GbeanLocatorType getWorkmanager() { + return workmanager; + } + + /** + * Sets the value of the workmanager property. + * + * @param value + * allowed object is + * {@link GbeanLocatorType } + * + */ + public void setWorkmanager(GbeanLocatorType value) { + this.workmanager = value; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterInstanceType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterInstanceType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterInstanceType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for resourceadapterType complex type. + * + *

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

+ * <complexType name="resourceadapterType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="resourceadapter-instance" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}resourceadapter-instanceType" minOccurs="0"/>
+ *         <element name="outbound-resourceadapter" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}outbound-resourceadapterType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "resourceadapterType", propOrder = { + "resourceadapterInstance", + "outboundResourceadapter" +}) +public class ResourceadapterType { + + @XmlElement(name = "resourceadapter-instance") + protected ResourceadapterInstanceType resourceadapterInstance; + @XmlElement(name = "outbound-resourceadapter") + protected OutboundResourceadapterType outboundResourceadapter; + + /** + * Gets the value of the resourceadapterInstance property. + * + * @return + * possible object is + * {@link ResourceadapterInstanceType } + * + */ + public ResourceadapterInstanceType getResourceadapterInstance() { + return resourceadapterInstance; + } + + /** + * Sets the value of the resourceadapterInstance property. + * + * @param value + * allowed object is + * {@link ResourceadapterInstanceType } + * + */ + public void setResourceadapterInstance(ResourceadapterInstanceType value) { + this.resourceadapterInstance = value; + } + + /** + * Gets the value of the outboundResourceadapter property. + * + * @return + * possible object is + * {@link OutboundResourceadapterType } + * + */ + public OutboundResourceadapterType getOutboundResourceadapter() { + return outboundResourceadapter; + } + + /** + * Sets the value of the outboundResourceadapter property. + * + * @param value + * allowed object is + * {@link OutboundResourceadapterType } + * + */ + public void setOutboundResourceadapter(OutboundResourceadapterType value) { + this.outboundResourceadapter = value; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/ResourceadapterType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/SinglepoolType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/SinglepoolType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/SinglepoolType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/SinglepoolType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,239 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for singlepoolType complex type. + * + *

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

+ * <complexType name="singlepoolType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="max-size" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="min-size" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="blocking-timeout-milliseconds" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="idle-timeout-minutes" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <choice>
+ *           <element name="match-one" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType"/>
+ *           <element name="match-all" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType"/>
+ *           <element name="select-one-assume-match" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "singlepoolType", propOrder = { + "maxSize", + "minSize", + "blockingTimeoutMilliseconds", + "idleTimeoutMinutes", + "matchOne", + "matchAll", + "selectOneAssumeMatch" +}) +public class SinglepoolType { + + @XmlElement(name = "max-size") + protected Integer maxSize; + @XmlElement(name = "min-size") + protected Integer minSize; + @XmlElement(name = "blocking-timeout-milliseconds") + protected Integer blockingTimeoutMilliseconds; + @XmlElement(name = "idle-timeout-minutes") + protected Integer idleTimeoutMinutes; + @XmlElement(name = "match-one") + protected EmptyType matchOne; + @XmlElement(name = "match-all") + protected EmptyType matchAll; + @XmlElement(name = "select-one-assume-match") + protected EmptyType selectOneAssumeMatch; + + /** + * Gets the value of the maxSize property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaxSize() { + return maxSize; + } + + /** + * Sets the value of the maxSize property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaxSize(Integer value) { + this.maxSize = value; + } + + /** + * Gets the value of the minSize property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMinSize() { + return minSize; + } + + /** + * Sets the value of the minSize property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMinSize(Integer value) { + this.minSize = value; + } + + /** + * Gets the value of the blockingTimeoutMilliseconds property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBlockingTimeoutMilliseconds() { + return blockingTimeoutMilliseconds; + } + + /** + * Sets the value of the blockingTimeoutMilliseconds property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBlockingTimeoutMilliseconds(Integer value) { + this.blockingTimeoutMilliseconds = value; + } + + /** + * Gets the value of the idleTimeoutMinutes property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getIdleTimeoutMinutes() { + return idleTimeoutMinutes; + } + + /** + * Sets the value of the idleTimeoutMinutes property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setIdleTimeoutMinutes(Integer value) { + this.idleTimeoutMinutes = value; + } + + /** + * Gets the value of the matchOne property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getMatchOne() { + return matchOne; + } + + /** + * Sets the value of the matchOne property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setMatchOne(EmptyType value) { + this.matchOne = value; + } + + /** + * Gets the value of the matchAll property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getMatchAll() { + return matchAll; + } + + /** + * Sets the value of the matchAll property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setMatchAll(EmptyType value) { + this.matchAll = value; + } + + /** + * Gets the value of the selectOneAssumeMatch property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getSelectOneAssumeMatch() { + return selectOneAssumeMatch; + } + + /** + * Sets the value of the selectOneAssumeMatch property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setSelectOneAssumeMatch(EmptyType value) { + this.selectOneAssumeMatch = value; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/SinglepoolType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/SinglepoolType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/SinglepoolType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/XatransactionType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/XatransactionType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/XatransactionType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/XatransactionType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.connector; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for xatransactionType complex type. + * + *

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

+ * <complexType name="xatransactionType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="transaction-caching" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType" minOccurs="0"/>
+ *         <element name="thread-caching" type="{http://geronimo.apache.org/xml/ns/j2ee/connector-1.1}emptyType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "xatransactionType", propOrder = { + "transactionCaching", + "threadCaching" +}) +public class XatransactionType { + + @XmlElement(name = "transaction-caching") + protected EmptyType transactionCaching; + @XmlElement(name = "thread-caching") + protected EmptyType threadCaching; + + /** + * Gets the value of the transactionCaching property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getTransactionCaching() { + return transactionCaching; + } + + /** + * Sets the value of the transactionCaching property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setTransactionCaching(EmptyType value) { + this.transactionCaching = value; + } + + /** + * Gets the value of the threadCaching property. + * + * @return + * possible object is + * {@link EmptyType } + * + */ + public EmptyType getThreadCaching() { + return threadCaching; + } + + /** + * Sets the value of the threadCaching property. + * + * @param value + * allowed object is + * {@link EmptyType } + * + */ + public void setThreadCaching(EmptyType value) { + this.threadCaching = value; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/XatransactionType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/XatransactionType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/XatransactionType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/package-info.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/package-info.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/package-info.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/package-info.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://geronimo.apache.org/xml/ns/j2ee/connector-1.1", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.apache.geronimo.j2ee.connector; Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/package-info.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/package-info.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/connector/package-info.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/AssociationOption.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/AssociationOption.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/AssociationOption.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/AssociationOption.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,86 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.corba_css_config; + +import javax.xml.bind.annotation.XmlEnum; +import javax.xml.bind.annotation.XmlEnumValue; + + +/** + *

Java class for associationOption. + * + *

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

+ *

+ * <simpleType name="associationOption">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
+ *     <enumeration value="NoProtection"/>
+ *     <enumeration value="Integrity"/>
+ *     <enumeration value="Confidentiality"/>
+ *     <enumeration value="DetectReplay"/>
+ *     <enumeration value="DetectMisordering"/>
+ *     <enumeration value="EstablishTrustInTarget"/>
+ *     <enumeration value="EstablishTrustInClient"/>
+ *     <enumeration value="NoDelegation"/>
+ *     <enumeration value="SimpleDelegation"/>
+ *     <enumeration value="CompositeDelegation"/>
+ *     <enumeration value="IdentityAssertion"/>
+ *     <enumeration value="DelegationByClient"/>
+ *   </restriction>
+ * </simpleType>
+ * 
+ * + */ +@XmlEnum +public enum AssociationOption { + + @XmlEnumValue("NoProtection") + NO_PROTECTION("NoProtection"), + @XmlEnumValue("Integrity") + INTEGRITY("Integrity"), + @XmlEnumValue("Confidentiality") + CONFIDENTIALITY("Confidentiality"), + @XmlEnumValue("DetectReplay") + DETECT_REPLAY("DetectReplay"), + @XmlEnumValue("DetectMisordering") + DETECT_MISORDERING("DetectMisordering"), + @XmlEnumValue("EstablishTrustInTarget") + ESTABLISH_TRUST_IN_TARGET("EstablishTrustInTarget"), + @XmlEnumValue("EstablishTrustInClient") + ESTABLISH_TRUST_IN_CLIENT("EstablishTrustInClient"), + @XmlEnumValue("NoDelegation") + NO_DELEGATION("NoDelegation"), + @XmlEnumValue("SimpleDelegation") + SIMPLE_DELEGATION("SimpleDelegation"), + @XmlEnumValue("CompositeDelegation") + COMPOSITE_DELEGATION("CompositeDelegation"), + @XmlEnumValue("IdentityAssertion") + IDENTITY_ASSERTION("IdentityAssertion"), + @XmlEnumValue("DelegationByClient") + DELEGATION_BY_CLIENT("DelegationByClient"); + private final String value; + + AssociationOption(String v) { + value = v; + } + + public String value() { + return value; + } + + public static AssociationOption fromValue(String v) { + for (AssociationOption c: AssociationOption.values()) { + if (c.value.equals(v)) { + return c; + } + } + throw new IllegalArgumentException(v.toString()); + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/AssociationOption.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/AssociationOption.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/AssociationOption.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/CompoundSecMechType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/CompoundSecMechType.java?rev=952535&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/CompoundSecMechType.java (added) +++ geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/CompoundSecMechType.java Tue Jun 8 04:40:16 2010 @@ -0,0 +1,212 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-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: 2009.07.17 at 01:03:24 AM CST +// + + +package org.apache.geronimo.j2ee.corba_css_config; + +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.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for compoundSecMechType complex type. + * + *

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

+ * <complexType name="compoundSecMechType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="description" type="{http://www.openejb.org/xml/ns/corba-css-config-2.0}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <group ref="{http://www.openejb.org/xml/ns/corba-css-config-2.0}transportMechGroup" minOccurs="0"/>
+ *         <group ref="{http://www.openejb.org/xml/ns/corba-css-config-2.0}asMechGroup" minOccurs="0"/>
+ *         <element name="sasMech" type="{http://www.openejb.org/xml/ns/corba-css-config-2.0}sasMechType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "compoundSecMechType", propOrder = { + "description", + "ssl", + "seciop", + "gssupStatic", + "gssupDynamic", + "sasMech" +}) +public class CompoundSecMechType { + + protected List description; + @XmlElement(name = "SSL") + protected SSLType ssl; + @XmlElement(name = "SECIOP") + protected SECIOPType seciop; + @XmlElement(name = "GSSUPStatic") + protected GSSUPStaticType gssupStatic; + @XmlElement(name = "GSSUPDynamic") + protected GSSUPDynamicType gssupDynamic; + protected SasMechType sasMech; + + /** + * 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 ssl property. + * + * @return + * possible object is + * {@link SSLType } + * + */ + public SSLType getSSL() { + return ssl; + } + + /** + * Sets the value of the ssl property. + * + * @param value + * allowed object is + * {@link SSLType } + * + */ + public void setSSL(SSLType value) { + this.ssl = value; + } + + /** + * Gets the value of the seciop property. + * + * @return + * possible object is + * {@link SECIOPType } + * + */ + public SECIOPType getSECIOP() { + return seciop; + } + + /** + * Sets the value of the seciop property. + * + * @param value + * allowed object is + * {@link SECIOPType } + * + */ + public void setSECIOP(SECIOPType value) { + this.seciop = value; + } + + /** + * Gets the value of the gssupStatic property. + * + * @return + * possible object is + * {@link GSSUPStaticType } + * + */ + public GSSUPStaticType getGSSUPStatic() { + return gssupStatic; + } + + /** + * Sets the value of the gssupStatic property. + * + * @param value + * allowed object is + * {@link GSSUPStaticType } + * + */ + public void setGSSUPStatic(GSSUPStaticType value) { + this.gssupStatic = value; + } + + /** + * Gets the value of the gssupDynamic property. + * + * @return + * possible object is + * {@link GSSUPDynamicType } + * + */ + public GSSUPDynamicType getGSSUPDynamic() { + return gssupDynamic; + } + + /** + * Sets the value of the gssupDynamic property. + * + * @param value + * allowed object is + * {@link GSSUPDynamicType } + * + */ + public void setGSSUPDynamic(GSSUPDynamicType value) { + this.gssupDynamic = value; + } + + /** + * Gets the value of the sasMech property. + * + * @return + * possible object is + * {@link SasMechType } + * + */ + public SasMechType getSasMech() { + return sasMech; + } + + /** + * Sets the value of the sasMech property. + * + * @param value + * allowed object is + * {@link SasMechType } + * + */ + public void setSasMech(SasMechType value) { + this.sasMech = value; + } + +} Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/CompoundSecMechType.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/CompoundSecMechType.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/branches/2.2.1/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/apache/geronimo/j2ee/corba_css_config/CompoundSecMechType.java ------------------------------------------------------------------------------ svn:mime-type = text/plain