Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 94510 invoked from network); 23 Sep 2009 08:05:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 23 Sep 2009 08:05:45 -0000 Received: (qmail 92881 invoked by uid 500); 23 Sep 2009 08:05:44 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 92821 invoked by uid 500); 23 Sep 2009 08:05:44 -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 92812 invoked by uid 99); 23 Sep 2009 08:05:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Sep 2009 08:05:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Wed, 23 Sep 2009 08:05:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0D84923889C8; Wed, 23 Sep 2009 08:04:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r817996 [8/23] - in /geronimo/devtools/eclipse-plugin/trunk: assembly/ assembly/src/main/assembly/ features/ features/org.apache.geronimo.v22.feature/ plugins/ plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/ plugins/org.apache.geronimo.j2ee... Date: Wed, 23 Sep 2009 08:04:34 -0000 To: scm@geronimo.apache.org From: delos@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090923080441.0D84923889C8@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/AssociationOption.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/AssociationOption.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/AssociationOption.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/AssociationOption.java Wed Sep 23 08:04:12 2009 @@ -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.openejb.xml.ns.corba_tss_config_2; + +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()); + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/CompoundSecMechType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/CompoundSecMechType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/CompoundSecMechType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/CompoundSecMechType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,130 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +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-tss-config-2.0}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <group ref="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}asMechGroup" minOccurs="0"/>
+ *         <element name="sasMech" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}sasMechType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "compoundSecMechType", propOrder = { + "description", + "gssup", + "sasMech" +}) +public class CompoundSecMechType { + + protected List description; + @XmlElement(name = "GSSUP") + protected GSSUPType gssup; + 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 gssup property. + * + * @return + * possible object is + * {@link GSSUPType } + * + */ + public GSSUPType getGSSUP() { + return gssup; + } + + /** + * Sets the value of the gssup property. + * + * @param value + * allowed object is + * {@link GSSUPType } + * + */ + public void setGSSUP(GSSUPType value) { + this.gssup = 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; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/DescriptionType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/DescriptionType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/DescriptionType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/DescriptionType.java Wed Sep 23 08:04:12 2009 @@ -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.openejb.xml.ns.corba_tss_config_2; + +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; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/EntityType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/EntityType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/EntityType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/EntityType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,92 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for entityType complex type. + * + *

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

+ * <complexType name="entityType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="distinguishedName" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="hostname" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "entityType") +public class EntityType { + + @XmlAttribute + protected String distinguishedName; + @XmlAttribute + protected String hostname; + + /** + * Gets the value of the distinguishedName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistinguishedName() { + return distinguishedName; + } + + /** + * Sets the value of the distinguishedName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistinguishedName(String value) { + this.distinguishedName = value; + } + + /** + * Gets the value of the hostname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHostname() { + return hostname; + } + + /** + * Sets the value of the hostname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHostname(String value) { + this.hostname = value; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GSSUPType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GSSUPType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GSSUPType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GSSUPType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,133 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +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.XmlType; + + +/** + *

Java class for GSSUPType complex type. + * + *

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

+ * <complexType name="GSSUPType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="description" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
+ *       <attribute name="targetName" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GSSUPType", propOrder = { + "description" +}) +public class GSSUPType { + + protected List description; + @XmlAttribute + protected Boolean required; + @XmlAttribute + protected String targetName; + + /** + * 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 required property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRequired() { + if (required == null) { + return false; + } else { + return required; + } + } + + /** + * Sets the value of the required property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRequired(Boolean value) { + this.required = value; + } + + /** + * Gets the value of the targetName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTargetName() { + return targetName; + } + + /** + * Sets the value of the targetName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTargetName(String value) { + this.targetName = value; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GeneralNameType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GeneralNameType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GeneralNameType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GeneralNameType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,65 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for generalNameType complex type. + * + *

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

+ * <complexType name="generalNameType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="privilegeAuthority" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "generalNameType") +public class GeneralNameType { + + @XmlAttribute + protected String privilegeAuthority; + + /** + * Gets the value of the privilegeAuthority property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrivilegeAuthority() { + return privilegeAuthority; + } + + /** + * Sets the value of the privilegeAuthority property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrivilegeAuthority(String value) { + this.privilegeAuthority = value; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GssExportedNameType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GssExportedNameType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GssExportedNameType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/GssExportedNameType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,92 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for gssExportedNameType complex type. + * + *

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

+ * <complexType name="gssExportedNameType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <attribute name="OID" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="privilegeAuthority" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "gssExportedNameType") +public class GssExportedNameType { + + @XmlAttribute(name = "OID") + protected String oid; + @XmlAttribute + protected String privilegeAuthority; + + /** + * Gets the value of the oid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOID() { + return oid; + } + + /** + * Sets the value of the oid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOID(String value) { + this.oid = value; + } + + /** + * Gets the value of the privilegeAuthority property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrivilegeAuthority() { + return privilegeAuthority; + } + + /** + * Sets the value of the privilegeAuthority property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrivilegeAuthority(String value) { + this.privilegeAuthority = value; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTAbsentType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTAbsentType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTAbsentType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTAbsentType.java Wed Sep 23 08:04:12 2009 @@ -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.openejb.xml.ns.corba_tss_config_2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ITTAbsentType complex type. + * + *

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

+ * <complexType name="ITTAbsentType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ITTAbsentType") +public class ITTAbsentType { + + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTAnonymousType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTAnonymousType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTAnonymousType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTAnonymousType.java Wed Sep 23 08:04:12 2009 @@ -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.openejb.xml.ns.corba_tss_config_2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ITTAnonymousType complex type. + * + *

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

+ * <complexType name="ITTAnonymousType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ITTAnonymousType") +public class ITTAnonymousType { + + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTDistinguishedNameType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTDistinguishedNameType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTDistinguishedNameType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTDistinguishedNameType.java Wed Sep 23 08:04:12 2009 @@ -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.openejb.xml.ns.corba_tss_config_2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ITTDistinguishedNameType complex type. + * + *

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

+ * <complexType name="ITTDistinguishedNameType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *       </sequence>
+ *       <attribute name="domain" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="realm" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ITTDistinguishedNameType") +public class ITTDistinguishedNameType { + + @XmlAttribute + protected String domain; + @XmlAttribute + protected String realm; + + /** + * Gets the value of the domain property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomain() { + return domain; + } + + /** + * Sets the value of the domain property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomain(String value) { + this.domain = value; + } + + /** + * Gets the value of the realm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRealm() { + return realm; + } + + /** + * Sets the value of the realm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRealm(String value) { + this.realm = value; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTPrincipalNameGSSUPType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTPrincipalNameGSSUPType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTPrincipalNameGSSUPType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTPrincipalNameGSSUPType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,121 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ITTPrincipalNameGSSUPType complex type. + * + *

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

+ * <complexType name="ITTPrincipalNameGSSUPType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *       </sequence>
+ *       <attribute name="domain" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="principal-class" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="realm" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ITTPrincipalNameGSSUPType") +public class ITTPrincipalNameGSSUPType { + + @XmlAttribute + protected String domain; + @XmlAttribute(name = "principal-class") + protected String principalClass; + @XmlAttribute + protected String realm; + + /** + * Gets the value of the domain property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomain() { + return domain; + } + + /** + * Sets the value of the domain property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomain(String value) { + this.domain = value; + } + + /** + * Gets the value of the principalClass property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrincipalClass() { + return principalClass; + } + + /** + * Sets the value of the principalClass property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrincipalClass(String value) { + this.principalClass = value; + } + + /** + * Gets the value of the realm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRealm() { + return realm; + } + + /** + * Sets the value of the realm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRealm(String value) { + this.realm = value; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTX509CertChainType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTX509CertChainType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTX509CertChainType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ITTX509CertChainType.java Wed Sep 23 08:04:12 2009 @@ -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.openejb.xml.ns.corba_tss_config_2; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ITTX509CertChainType complex type. + * + *

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

+ * <complexType name="ITTX509CertChainType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *       </sequence>
+ *       <attribute name="domain" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="realm" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ITTX509CertChainType") +public class ITTX509CertChainType { + + @XmlAttribute + protected String domain; + @XmlAttribute + protected String realm; + + /** + * Gets the value of the domain property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomain() { + return domain; + } + + /** + * Sets the value of the domain property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomain(String value) { + this.domain = value; + } + + /** + * Gets the value of the realm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRealm() { + return realm; + } + + /** + * Sets the value of the realm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRealm(String value) { + this.realm = value; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/IdentityTokenTypeList.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/IdentityTokenTypeList.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/IdentityTokenTypeList.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/IdentityTokenTypeList.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,180 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +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 identityTokenTypeList complex type. + * + *

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

+ * <complexType name="identityTokenTypeList">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <choice>
+ *           <element name="ITTAbsent" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}ITTAbsentType"/>
+ *           <group ref="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}ittGroup"/>
+ *         </choice>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "identityTokenTypeList", propOrder = { + "ittAbsent", + "ittAnonymous", + "ittPrincipalNameGSSUP", + "ittDistinguishedName", + "ittx509CertChain" +}) +public class IdentityTokenTypeList { + + @XmlElement(name = "ITTAbsent") + protected ITTAbsentType ittAbsent; + @XmlElement(name = "ITTAnonymous") + protected ITTAnonymousType ittAnonymous; + @XmlElement(name = "ITTPrincipalNameGSSUP") + protected ITTPrincipalNameGSSUPType ittPrincipalNameGSSUP; + @XmlElement(name = "ITTDistinguishedName") + protected ITTDistinguishedNameType ittDistinguishedName; + @XmlElement(name = "ITTX509CertChain") + protected ITTX509CertChainType ittx509CertChain; + + /** + * Gets the value of the ittAbsent property. + * + * @return + * possible object is + * {@link ITTAbsentType } + * + */ + public ITTAbsentType getITTAbsent() { + return ittAbsent; + } + + /** + * Sets the value of the ittAbsent property. + * + * @param value + * allowed object is + * {@link ITTAbsentType } + * + */ + public void setITTAbsent(ITTAbsentType value) { + this.ittAbsent = value; + } + + /** + * Gets the value of the ittAnonymous property. + * + * @return + * possible object is + * {@link ITTAnonymousType } + * + */ + public ITTAnonymousType getITTAnonymous() { + return ittAnonymous; + } + + /** + * Sets the value of the ittAnonymous property. + * + * @param value + * allowed object is + * {@link ITTAnonymousType } + * + */ + public void setITTAnonymous(ITTAnonymousType value) { + this.ittAnonymous = value; + } + + /** + * Gets the value of the ittPrincipalNameGSSUP property. + * + * @return + * possible object is + * {@link ITTPrincipalNameGSSUPType } + * + */ + public ITTPrincipalNameGSSUPType getITTPrincipalNameGSSUP() { + return ittPrincipalNameGSSUP; + } + + /** + * Sets the value of the ittPrincipalNameGSSUP property. + * + * @param value + * allowed object is + * {@link ITTPrincipalNameGSSUPType } + * + */ + public void setITTPrincipalNameGSSUP(ITTPrincipalNameGSSUPType value) { + this.ittPrincipalNameGSSUP = value; + } + + /** + * Gets the value of the ittDistinguishedName property. + * + * @return + * possible object is + * {@link ITTDistinguishedNameType } + * + */ + public ITTDistinguishedNameType getITTDistinguishedName() { + return ittDistinguishedName; + } + + /** + * Sets the value of the ittDistinguishedName property. + * + * @param value + * allowed object is + * {@link ITTDistinguishedNameType } + * + */ + public void setITTDistinguishedName(ITTDistinguishedNameType value) { + this.ittDistinguishedName = value; + } + + /** + * Gets the value of the ittx509CertChain property. + * + * @return + * possible object is + * {@link ITTX509CertChainType } + * + */ + public ITTX509CertChainType getITTX509CertChain() { + return ittx509CertChain; + } + + /** + * Sets the value of the ittx509CertChain property. + * + * @param value + * allowed object is + * {@link ITTX509CertChainType } + * + */ + public void setITTX509CertChain(ITTX509CertChainType value) { + this.ittx509CertChain = value; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ObjectFactory.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ObjectFactory.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ObjectFactory.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/ObjectFactory.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,228 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +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.openejb.xml.ns.corba_tss_config_2 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 _Tss_QNAME = new QName("http://www.openejb.org/xml/ns/corba-tss-config-2.0", "tss"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openejb.xml.ns.corba_tss_config_2 + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link TrustEveryoneType } + * + */ + public TrustEveryoneType createTrustEveryoneType() { + return new TrustEveryoneType(); + } + + /** + * Create an instance of {@link SSLType.TrustList } + * + */ + public SSLType.TrustList createSSLTypeTrustList() { + return new SSLType.TrustList(); + } + + /** + * Create an instance of {@link ITTX509CertChainType } + * + */ + public ITTX509CertChainType createITTX509CertChainType() { + return new ITTX509CertChainType(); + } + + /** + * Create an instance of {@link CompoundSecMechType } + * + */ + public CompoundSecMechType createCompoundSecMechType() { + return new CompoundSecMechType(); + } + + /** + * Create an instance of {@link ITTPrincipalNameGSSUPType } + * + */ + public ITTPrincipalNameGSSUPType createITTPrincipalNameGSSUPType() { + return new ITTPrincipalNameGSSUPType(); + } + + /** + * Create an instance of {@link GSSUPType } + * + */ + public GSSUPType createGSSUPType() { + return new GSSUPType(); + } + + /** + * Create an instance of {@link SasMechType } + * + */ + public SasMechType createSasMechType() { + return new SasMechType(); + } + + /** + * Create an instance of {@link ITTAnonymousType } + * + */ + public ITTAnonymousType createITTAnonymousType() { + return new ITTAnonymousType(); + } + + /** + * Create an instance of {@link DescriptionType } + * + */ + public DescriptionType createDescriptionType() { + return new DescriptionType(); + } + + /** + * Create an instance of {@link GeneralNameType } + * + */ + public GeneralNameType createGeneralNameType() { + return new GeneralNameType(); + } + + /** + * Create an instance of {@link SECIOPType } + * + */ + public SECIOPType createSECIOPType() { + return new SECIOPType(); + } + + /** + * Create an instance of {@link TssType } + * + */ + public TssType createTssType() { + return new TssType(); + } + + /** + * Create an instance of {@link ITTDistinguishedNameType } + * + */ + public ITTDistinguishedNameType createITTDistinguishedNameType() { + return new ITTDistinguishedNameType(); + } + + /** + * Create an instance of {@link TransportAddressType } + * + */ + public TransportAddressType createTransportAddressType() { + return new TransportAddressType(); + } + + /** + * Create an instance of {@link TrustNooneType } + * + */ + public TrustNooneType createTrustNooneType() { + return new TrustNooneType(); + } + + /** + * Create an instance of {@link EntityType } + * + */ + public EntityType createEntityType() { + return new EntityType(); + } + + /** + * Create an instance of {@link IdentityTokenTypeList } + * + */ + public IdentityTokenTypeList createIdentityTokenTypeList() { + return new IdentityTokenTypeList(); + } + + /** + * Create an instance of {@link SasMechType.ServiceConfigurationList } + * + */ + public SasMechType.ServiceConfigurationList createSasMechTypeServiceConfigurationList() { + return new SasMechType.ServiceConfigurationList(); + } + + /** + * Create an instance of {@link GssExportedNameType } + * + */ + public GssExportedNameType createGssExportedNameType() { + return new GssExportedNameType(); + } + + /** + * Create an instance of {@link SSLType } + * + */ + public SSLType createSSLType() { + return new SSLType(); + } + + /** + * Create an instance of {@link TssType.CompoundSecMechTypeList } + * + */ + public TssType.CompoundSecMechTypeList createTssTypeCompoundSecMechTypeList() { + return new TssType.CompoundSecMechTypeList(); + } + + /** + * Create an instance of {@link ITTAbsentType } + * + */ + public ITTAbsentType createITTAbsentType() { + return new ITTAbsentType(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link TssType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.openejb.org/xml/ns/corba-tss-config-2.0", name = "tss") + public JAXBElement createTss(TssType value) { + return new JAXBElement(_Tss_QNAME, TssType.class, null, value); + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SECIOPType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SECIOPType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SECIOPType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SECIOPType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,311 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +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.XmlList; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SECIOPType complex type. + * + *

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

+ * <complexType name="SECIOPType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="description" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="supports" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}associationOptionList"/>
+ *         <element name="requires" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}associationOptionList"/>
+ *         <element name="transportAddress" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}transportAddressType" maxOccurs="unbounded"/>
+ *         <group ref="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}trustGroup"/>
+ *       </sequence>
+ *       <attribute name="mechOID" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="targetName" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SECIOPType", propOrder = { + "description", + "supports", + "requires", + "transportAddress", + "trustEveryone", + "trustNoone", + "trustList" +}) +public class SECIOPType { + + protected List description; + @XmlList + @XmlElement(required = true) + protected List supports; + @XmlList + @XmlElement(required = true) + protected List requires; + @XmlElement(required = true) + protected List transportAddress; + protected TrustEveryoneType trustEveryone; + protected TrustNooneType trustNoone; + protected org.openejb.xml.ns.corba_tss_config_2.SSLType.TrustList trustList; + @XmlAttribute + protected String mechOID; + @XmlAttribute + protected String targetName; + + /** + * 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 supports 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 supports property. + * + *

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

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

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

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

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

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

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link TransportAddressType } + * + * + */ + public List getTransportAddress() { + if (transportAddress == null) { + transportAddress = new ArrayList(); + } + return this.transportAddress; + } + + /** + * Gets the value of the trustEveryone property. + * + * @return + * possible object is + * {@link TrustEveryoneType } + * + */ + public TrustEveryoneType getTrustEveryone() { + return trustEveryone; + } + + /** + * Sets the value of the trustEveryone property. + * + * @param value + * allowed object is + * {@link TrustEveryoneType } + * + */ + public void setTrustEveryone(TrustEveryoneType value) { + this.trustEveryone = value; + } + + /** + * Gets the value of the trustNoone property. + * + * @return + * possible object is + * {@link TrustNooneType } + * + */ + public TrustNooneType getTrustNoone() { + return trustNoone; + } + + /** + * Sets the value of the trustNoone property. + * + * @param value + * allowed object is + * {@link TrustNooneType } + * + */ + public void setTrustNoone(TrustNooneType value) { + this.trustNoone = value; + } + + /** + * Gets the value of the trustList property. + * + * @return + * possible object is + * {@link org.openejb.xml.ns.corba_tss_config_2.SSLType.TrustList } + * + */ + public org.openejb.xml.ns.corba_tss_config_2.SSLType.TrustList getTrustList() { + return trustList; + } + + /** + * Sets the value of the trustList property. + * + * @param value + * allowed object is + * {@link org.openejb.xml.ns.corba_tss_config_2.SSLType.TrustList } + * + */ + public void setTrustList(org.openejb.xml.ns.corba_tss_config_2.SSLType.TrustList value) { + this.trustList = value; + } + + /** + * Gets the value of the mechOID property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMechOID() { + return mechOID; + } + + /** + * Sets the value of the mechOID property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMechOID(String value) { + this.mechOID = value; + } + + /** + * Gets the value of the targetName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTargetName() { + return targetName; + } + + /** + * Sets the value of the targetName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTargetName(String value) { + this.targetName = value; + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SSLType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SSLType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SSLType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SSLType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,357 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +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.XmlList; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SSLType complex type. + * + *

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

+ * <complexType name="SSLType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="description" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="supports" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}associationOptionList"/>
+ *         <element name="requires" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}associationOptionList"/>
+ *         <group ref="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}trustGroup" minOccurs="0"/>
+ *       </sequence>
+ *       <attribute name="handshakeTimeout" type="{http://www.w3.org/2001/XMLSchema}short" />
+ *       <attribute name="hostname" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="port" use="required" type="{http://www.w3.org/2001/XMLSchema}short" />
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SSLType", propOrder = { + "description", + "supports", + "requires", + "trustEveryone", + "trustNoone", + "trustList" +}) +public class SSLType { + + protected List description; + @XmlList + @XmlElement(required = true) + protected List supports; + @XmlList + @XmlElement(required = true) + protected List requires; + protected TrustEveryoneType trustEveryone; + protected TrustNooneType trustNoone; + protected SSLType.TrustList trustList; + @XmlAttribute + protected Short handshakeTimeout; + @XmlAttribute(required = true) + protected String hostname; + @XmlAttribute(required = true) + protected short port; + + /** + * 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 supports 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 supports property. + * + *

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

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

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

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link AssociationOption } + * + * + */ + public List getRequires() { + if (requires == null) { + requires = new ArrayList(); + } + return this.requires; + } + + /** + * Gets the value of the trustEveryone property. + * + * @return + * possible object is + * {@link TrustEveryoneType } + * + */ + public TrustEveryoneType getTrustEveryone() { + return trustEveryone; + } + + /** + * Sets the value of the trustEveryone property. + * + * @param value + * allowed object is + * {@link TrustEveryoneType } + * + */ + public void setTrustEveryone(TrustEveryoneType value) { + this.trustEveryone = value; + } + + /** + * Gets the value of the trustNoone property. + * + * @return + * possible object is + * {@link TrustNooneType } + * + */ + public TrustNooneType getTrustNoone() { + return trustNoone; + } + + /** + * Sets the value of the trustNoone property. + * + * @param value + * allowed object is + * {@link TrustNooneType } + * + */ + public void setTrustNoone(TrustNooneType value) { + this.trustNoone = value; + } + + /** + * Gets the value of the trustList property. + * + * @return + * possible object is + * {@link SSLType.TrustList } + * + */ + public SSLType.TrustList getTrustList() { + return trustList; + } + + /** + * Sets the value of the trustList property. + * + * @param value + * allowed object is + * {@link SSLType.TrustList } + * + */ + public void setTrustList(SSLType.TrustList value) { + this.trustList = value; + } + + /** + * Gets the value of the handshakeTimeout property. + * + * @return + * possible object is + * {@link Short } + * + */ + public Short getHandshakeTimeout() { + return handshakeTimeout; + } + + /** + * Sets the value of the handshakeTimeout property. + * + * @param value + * allowed object is + * {@link Short } + * + */ + public void setHandshakeTimeout(Short value) { + this.handshakeTimeout = value; + } + + /** + * Gets the value of the hostname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHostname() { + return hostname; + } + + /** + * Sets the value of the hostname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHostname(String value) { + this.hostname = value; + } + + /** + * Gets the value of the port property. + * + */ + public short getPort() { + return port; + } + + /** + * Sets the value of the port property. + * + */ + public void setPort(short value) { + this.port = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

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

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="entity" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}entityType" maxOccurs="unbounded"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "entity" + }) + public static class TrustList { + + @XmlElement(required = true) + protected List entity; + + /** + * Gets the value of the entity 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 entity property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link EntityType } + * + * + */ + public List getEntity() { + if (entity == null) { + entity = new ArrayList(); + } + return this.entity; + } + + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SasMechType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SasMechType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SasMechType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/SasMechType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,238 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +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.XmlElements; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sasMechType complex type. + * + *

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

+ * <complexType name="sasMechType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="description" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="serviceConfigurationList" minOccurs="0">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <group ref="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}serviceConfigurationGroup" maxOccurs="unbounded"/>
+ *                 </sequence>
+ *                 <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="identityTokenTypes" type="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}identityTokenTypeList"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sasMechType", propOrder = { + "description", + "serviceConfigurationList", + "identityTokenTypes" +}) +public class SasMechType { + + protected List description; + protected SasMechType.ServiceConfigurationList serviceConfigurationList; + @XmlElement(required = true) + protected IdentityTokenTypeList identityTokenTypes; + + /** + * 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 serviceConfigurationList property. + * + * @return + * possible object is + * {@link SasMechType.ServiceConfigurationList } + * + */ + public SasMechType.ServiceConfigurationList getServiceConfigurationList() { + return serviceConfigurationList; + } + + /** + * Sets the value of the serviceConfigurationList property. + * + * @param value + * allowed object is + * {@link SasMechType.ServiceConfigurationList } + * + */ + public void setServiceConfigurationList(SasMechType.ServiceConfigurationList value) { + this.serviceConfigurationList = value; + } + + /** + * Gets the value of the identityTokenTypes property. + * + * @return + * possible object is + * {@link IdentityTokenTypeList } + * + */ + public IdentityTokenTypeList getIdentityTokenTypes() { + return identityTokenTypes; + } + + /** + * Sets the value of the identityTokenTypes property. + * + * @param value + * allowed object is + * {@link IdentityTokenTypeList } + * + */ + public void setIdentityTokenTypes(IdentityTokenTypeList value) { + this.identityTokenTypes = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

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

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <group ref="{http://www.openejb.org/xml/ns/corba-tss-config-2.0}serviceConfigurationGroup" maxOccurs="unbounded"/>
+     *       </sequence>
+     *       <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "serviceConfigurationGroup" + }) + public static class ServiceConfigurationList { + + @XmlElements({ + @XmlElement(name = "generalName", type = GeneralNameType.class), + @XmlElement(name = "gssExportedName", type = GssExportedNameType.class) + }) + protected List serviceConfigurationGroup; + @XmlAttribute + protected Boolean required; + + /** + * Gets the value of the serviceConfigurationGroup 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 serviceConfigurationGroup property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link GeneralNameType } + * {@link GssExportedNameType } + * + * + */ + public List getServiceConfigurationGroup() { + if (serviceConfigurationGroup == null) { + serviceConfigurationGroup = new ArrayList(); + } + return this.serviceConfigurationGroup; + } + + /** + * Gets the value of the required property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isRequired() { + if (required == null) { + return false; + } else { + return required; + } + } + + /** + * Sets the value of the required property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRequired(Boolean value) { + this.required = value; + } + + } + +} Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/TransportAddressType.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/TransportAddressType.java?rev=817996&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/TransportAddressType.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/src/main/java/org/openejb/xml/ns/corba_tss_config_2/TransportAddressType.java Wed Sep 23 08:04:12 2009 @@ -0,0 +1,121 @@ +// +// 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.openejb.xml.ns.corba_tss_config_2; + +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; + + +/** + *

Java class for transportAddressType complex type. + * + *

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

+ * <complexType name="transportAddressType">
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attribute name="hostname" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}short" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "transportAddressType", propOrder = { + "value" +}) +public class TransportAddressType { + + @XmlValue + protected String value; + @XmlAttribute + protected String hostname; + @XmlAttribute + protected Short port; + + /** + * 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 hostname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHostname() { + return hostname; + } + + /** + * Sets the value of the hostname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHostname(String value) { + this.hostname = value; + } + + /** + * Gets the value of the port property. + * + * @return + * possible object is + * {@link Short } + * + */ + public Short getPort() { + return port; + } + + /** + * Sets the value of the port property. + * + * @param value + * allowed object is + * {@link Short } + * + */ + public void setPort(Short value) { + this.port = value; + } + +}