[jboss-cvs] JBossAS SVN: r85705 - projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Mar 11 00:12:56 EDT 2009


Author: anil.saldhana at jboss.com
Date: 2009-03-11 00:12:56 -0400 (Wed, 11 Mar 2009)
New Revision: 85705

Added:
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AclInfo.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AclModule.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/MappingInfo.java
Modified:
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ApplicationPolicy.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuditInfo.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthModuleInfo.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthenticationInfo.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthenticationJaspiInfo.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthorizationInfo.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/IdentityTrustInfo.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/LoginModuleInfo.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/LoginModuleStack.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/MappingModule.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ModuleOption.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ModuleOptionFlag.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ObjectFactory.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/PolicyConfig.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/PolicyModule.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ProviderModule.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/TrustModule.java
   projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/package-info.java
Log:
SECURITY-377: update jaxb model with acl stuff

Added: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AclInfo.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AclInfo.java	                        (rev 0)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AclInfo.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -0,0 +1,76 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
+//
+
+
+package org.jboss.security.config.jaxb;
+
+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;
+
+
+/**
+ * <p>Java class for aclInfo complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="aclInfo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:jboss:security-config:5.0}acl-module" maxOccurs="unbounded"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+ at XmlAccessorType(XmlAccessType.FIELD)
+ at XmlType(name = "aclInfo", propOrder = {
+    "aclModule"
+})
+public class AclInfo {
+
+    @XmlElement(name = "acl-module", required = true)
+    protected List<AclModule> aclModule;
+
+    /**
+     * Gets the value of the aclModule property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the aclModule property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getAclModule().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link AclModule }
+     * 
+     * 
+     */
+    public List<AclModule> getAclModule() {
+        if (aclModule == null) {
+            aclModule = new ArrayList<AclModule>();
+        }
+        return this.aclModule;
+    }
+
+}

Added: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AclModule.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AclModule.java	                        (rev 0)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AclModule.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -0,0 +1,133 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
+//
+
+
+package org.jboss.security.config.jaxb;
+
+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.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:jboss:security-config:5.0}module-option" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="code" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       &lt;attribute name="flag" use="required" type="{urn:jboss:security-config:5.0}module-option-flag" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+ at XmlAccessorType(XmlAccessType.FIELD)
+ at XmlType(name = "", propOrder = {
+    "moduleOption"
+})
+ at XmlRootElement(name = "acl-module")
+public class AclModule {
+
+    @XmlElement(name = "module-option")
+    protected List<ModuleOption> moduleOption;
+    @XmlAttribute(required = true)
+    protected String code;
+    @XmlAttribute(required = true)
+    protected ModuleOptionFlag flag;
+
+    /**
+     * Gets the value of the moduleOption property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the moduleOption property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getModuleOption().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link ModuleOption }
+     * 
+     * 
+     */
+    public List<ModuleOption> getModuleOption() {
+        if (moduleOption == null) {
+            moduleOption = new ArrayList<ModuleOption>();
+        }
+        return this.moduleOption;
+    }
+
+    /**
+     * Gets the value of the code property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getCode() {
+        return code;
+    }
+
+    /**
+     * Sets the value of the code property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setCode(String value) {
+        this.code = value;
+    }
+
+    /**
+     * Gets the value of the flag property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ModuleOptionFlag }
+     *     
+     */
+    public ModuleOptionFlag getFlag() {
+        return flag;
+    }
+
+    /**
+     * Sets the value of the flag property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ModuleOptionFlag }
+     *     
+     */
+    public void setFlag(ModuleOptionFlag value) {
+        this.flag = value;
+    }
+
+}

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ApplicationPolicy.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ApplicationPolicy.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ApplicationPolicy.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 
@@ -31,7 +31,9 @@
  *           &lt;element ref="{urn:jboss:security-config:5.0}authentication-jaspi"/>
  *         &lt;/choice>
  *         &lt;element ref="{urn:jboss:security-config:5.0}authorization" minOccurs="0"/>
+ *         &lt;element ref="{urn:jboss:security-config:5.0}acl" minOccurs="0"/>
  *         &lt;element ref="{urn:jboss:security-config:5.0}rolemapping" minOccurs="0"/>
+ *         &lt;element ref="{urn:jboss:security-config:5.0}mapping" minOccurs="0"/>
  *         &lt;element ref="{urn:jboss:security-config:5.0}audit" minOccurs="0"/>
  *         &lt;element ref="{urn:jboss:security-config:5.0}identity-trust" minOccurs="0"/>
  *       &lt;/sequence>
@@ -49,7 +51,9 @@
     "authentication",
     "authenticationJaspi",
     "authorization",
+    "acl",
     "rolemapping",
+    "mapping",
     "audit",
     "identityTrust"
 })
@@ -60,7 +64,9 @@
     @XmlElement(name = "authentication-jaspi")
     protected AuthenticationJaspiInfo authenticationJaspi;
     protected AuthorizationInfo authorization;
-    protected RoleMappingInfo rolemapping;
+    protected AclInfo acl;
+    protected MappingInfo rolemapping;
+    protected MappingInfo mapping;
     protected AuditInfo audit;
     @XmlElement(name = "identity-trust")
     protected IdentityTrustInfo identityTrust;
@@ -142,14 +148,38 @@
     }
 
     /**
+     * Gets the value of the acl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link AclInfo }
+     *     
+     */
+    public AclInfo getAcl() {
+        return acl;
+    }
+
+    /**
+     * Sets the value of the acl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link AclInfo }
+     *     
+     */
+    public void setAcl(AclInfo value) {
+        this.acl = value;
+    }
+
+    /**
      * Gets the value of the rolemapping property.
      * 
      * @return
      *     possible object is
-     *     {@link RoleMappingInfo }
+     *     {@link MappingInfo }
      *     
      */
-    public RoleMappingInfo getRolemapping() {
+    public MappingInfo getRolemapping() {
         return rolemapping;
     }
 
@@ -158,14 +188,38 @@
      * 
      * @param value
      *     allowed object is
-     *     {@link RoleMappingInfo }
+     *     {@link MappingInfo }
      *     
      */
-    public void setRolemapping(RoleMappingInfo value) {
+    public void setRolemapping(MappingInfo value) {
         this.rolemapping = value;
     }
 
     /**
+     * Gets the value of the mapping property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link MappingInfo }
+     *     
+     */
+    public MappingInfo getMapping() {
+        return mapping;
+    }
+
+    /**
+     * Sets the value of the mapping property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link MappingInfo }
+     *     
+     */
+    public void setMapping(MappingInfo value) {
+        this.mapping = value;
+    }
+
+    /**
      * Gets the value of the audit property.
      * 
      * @return

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuditInfo.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuditInfo.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuditInfo.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthModuleInfo.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthModuleInfo.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthModuleInfo.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthenticationInfo.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthenticationInfo.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthenticationInfo.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthenticationJaspiInfo.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthenticationJaspiInfo.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthenticationJaspiInfo.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthorizationInfo.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthorizationInfo.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/AuthorizationInfo.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/IdentityTrustInfo.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/IdentityTrustInfo.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/IdentityTrustInfo.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/LoginModuleInfo.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/LoginModuleInfo.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/LoginModuleInfo.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/LoginModuleStack.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/LoginModuleStack.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/LoginModuleStack.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Added: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/MappingInfo.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/MappingInfo.java	                        (rev 0)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/MappingInfo.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -0,0 +1,76 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
+// Any modifications to this file will be lost upon recompilation of the source schema. 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
+//
+
+
+package org.jboss.security.config.jaxb;
+
+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;
+
+
+/**
+ * <p>Java class for mappingInfo complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="mappingInfo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:jboss:security-config:5.0}mapping-module" maxOccurs="unbounded"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+ at XmlAccessorType(XmlAccessType.FIELD)
+ at XmlType(name = "mappingInfo", propOrder = {
+    "mappingModule"
+})
+public class MappingInfo {
+
+    @XmlElement(name = "mapping-module", required = true)
+    protected List<MappingModule> mappingModule;
+
+    /**
+     * Gets the value of the mappingModule property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the mappingModule property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getMappingModule().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link MappingModule }
+     * 
+     * 
+     */
+    public List<MappingModule> getMappingModule() {
+        if (mappingModule == null) {
+            mappingModule = new ArrayList<MappingModule>();
+        }
+        return this.mappingModule;
+    }
+
+}

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/MappingModule.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/MappingModule.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/MappingModule.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 
@@ -30,6 +30,7 @@
  *       &lt;sequence>
  *         &lt;element ref="{urn:jboss:security-config:5.0}module-option" maxOccurs="unbounded" minOccurs="0"/>
  *       &lt;/sequence>
+ *       &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
  *       &lt;attribute name="code" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
  *     &lt;/restriction>
  *   &lt;/complexContent>
@@ -47,6 +48,8 @@
 
     @XmlElement(name = "module-option")
     protected List<ModuleOption> moduleOption;
+    @XmlAttribute
+    protected String type;
     @XmlAttribute(required = true)
     protected String code;
 
@@ -80,6 +83,30 @@
     }
 
     /**
+     * Gets the value of the type property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getType() {
+        return type;
+    }
+
+    /**
+     * Sets the value of the type property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setType(String value) {
+        this.type = value;
+    }
+
+    /**
      * Gets the value of the code property.
      * 
      * @return

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ModuleOption.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ModuleOption.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ModuleOption.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 
@@ -70,8 +70,8 @@
      * 
      * <p>
      * Objects of the following type(s) are allowed in the list
+     * {@link Object }
      * {@link String }
-     * {@link Object }
      * 
      * 
      */

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ModuleOptionFlag.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ModuleOptionFlag.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ModuleOptionFlag.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ObjectFactory.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ObjectFactory.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ObjectFactory.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 
@@ -31,15 +31,17 @@
 @XmlRegistry
 public class ObjectFactory {
 
+    private final static QName _Policy_QNAME = new QName("urn:jboss:security-config:5.0", "policy");
+    private final static QName _Acl_QNAME = new QName("urn:jboss:security-config:5.0", "acl");
+    private final static QName _IdentityTrust_QNAME = new QName("urn:jboss:security-config:5.0", "identity-trust");
+    private final static QName _Authentication_QNAME = new QName("urn:jboss:security-config:5.0", "authentication");
+    private final static QName _Audit_QNAME = new QName("urn:jboss:security-config:5.0", "audit");
+    private final static QName _Authorization_QNAME = new QName("urn:jboss:security-config:5.0", "authorization");
     private final static QName _Rolemapping_QNAME = new QName("urn:jboss:security-config:5.0", "rolemapping");
     private final static QName _AuthModule_QNAME = new QName("urn:jboss:security-config:5.0", "auth-module");
     private final static QName _AuthenticationJaspi_QNAME = new QName("urn:jboss:security-config:5.0", "authentication-jaspi");
-    private final static QName _Audit_QNAME = new QName("urn:jboss:security-config:5.0", "audit");
-    private final static QName _Policy_QNAME = new QName("urn:jboss:security-config:5.0", "policy");
-    private final static QName _Authorization_QNAME = new QName("urn:jboss:security-config:5.0", "authorization");
-    private final static QName _IdentityTrust_QNAME = new QName("urn:jboss:security-config:5.0", "identity-trust");
-    private final static QName _Authentication_QNAME = new QName("urn:jboss:security-config:5.0", "authentication");
     private final static QName _LoginModule_QNAME = new QName("urn:jboss:security-config:5.0", "login-module");
+    private final static QName _Mapping_QNAME = new QName("urn:jboss:security-config:5.0", "mapping");
 
     /**
      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.jboss.security.config.jaxb
@@ -49,54 +51,46 @@
     }
 
     /**
-     * Create an instance of {@link AuthorizationInfo }
+     * Create an instance of {@link LoginModuleStack }
      * 
      */
-    public AuthorizationInfo createAuthorizationInfo() {
-        return new AuthorizationInfo();
+    public LoginModuleStack createLoginModuleStack() {
+        return new LoginModuleStack();
     }
 
     /**
-     * Create an instance of {@link PolicyModule }
+     * Create an instance of {@link AclModule }
      * 
      */
-    public PolicyModule createPolicyModule() {
-        return new PolicyModule();
+    public AclModule createAclModule() {
+        return new AclModule();
     }
 
     /**
-     * Create an instance of {@link AuditInfo }
+     * Create an instance of {@link PolicyConfig }
      * 
      */
-    public AuditInfo createAuditInfo() {
-        return new AuditInfo();
+    public PolicyConfig createPolicyConfig() {
+        return new PolicyConfig();
     }
 
     /**
-     * Create an instance of {@link ModuleOption }
+     * Create an instance of {@link TrustModule }
      * 
      */
-    public ModuleOption createModuleOption() {
-        return new ModuleOption();
+    public TrustModule createTrustModule() {
+        return new TrustModule();
     }
 
     /**
-     * Create an instance of {@link ApplicationPolicy }
+     * Create an instance of {@link MappingModule }
      * 
      */
-    public ApplicationPolicy createApplicationPolicy() {
-        return new ApplicationPolicy();
+    public MappingModule createMappingModule() {
+        return new MappingModule();
     }
 
     /**
-     * Create an instance of {@link IdentityTrustInfo }
-     * 
-     */
-    public IdentityTrustInfo createIdentityTrustInfo() {
-        return new IdentityTrustInfo();
-    }
-
-    /**
      * Create an instance of {@link ProviderModule }
      * 
      */
@@ -105,14 +99,6 @@
     }
 
     /**
-     * Create an instance of {@link AuthenticationInfo }
-     * 
-     */
-    public AuthenticationInfo createAuthenticationInfo() {
-        return new AuthenticationInfo();
-    }
-
-    /**
      * Create an instance of {@link AuthModuleInfo }
      * 
      */
@@ -121,95 +107,91 @@
     }
 
     /**
-     * Create an instance of {@link PolicyConfig }
+     * Create an instance of {@link LoginModuleInfo }
      * 
      */
-    public PolicyConfig createPolicyConfig() {
-        return new PolicyConfig();
+    public LoginModuleInfo createLoginModuleInfo() {
+        return new LoginModuleInfo();
     }
 
     /**
-     * Create an instance of {@link LoginModuleStack }
+     * Create an instance of {@link AuthorizationInfo }
      * 
      */
-    public LoginModuleStack createLoginModuleStack() {
-        return new LoginModuleStack();
+    public AuthorizationInfo createAuthorizationInfo() {
+        return new AuthorizationInfo();
     }
 
     /**
-     * Create an instance of {@link AuthenticationJaspiInfo }
+     * Create an instance of {@link AuthenticationInfo }
      * 
      */
-    public AuthenticationJaspiInfo createAuthenticationJaspiInfo() {
-        return new AuthenticationJaspiInfo();
+    public AuthenticationInfo createAuthenticationInfo() {
+        return new AuthenticationInfo();
     }
 
     /**
-     * Create an instance of {@link RoleMappingInfo }
+     * Create an instance of {@link ModuleOption }
      * 
      */
-    public RoleMappingInfo createRoleMappingInfo() {
-        return new RoleMappingInfo();
+    public ModuleOption createModuleOption() {
+        return new ModuleOption();
     }
 
     /**
-     * Create an instance of {@link MappingModule }
+     * Create an instance of {@link AuditInfo }
      * 
      */
-    public MappingModule createMappingModule() {
-        return new MappingModule();
+    public AuditInfo createAuditInfo() {
+        return new AuditInfo();
     }
 
     /**
-     * Create an instance of {@link LoginModuleInfo }
+     * Create an instance of {@link PolicyModule }
      * 
      */
-    public LoginModuleInfo createLoginModuleInfo() {
-        return new LoginModuleInfo();
+    public PolicyModule createPolicyModule() {
+        return new PolicyModule();
     }
 
     /**
-     * Create an instance of {@link TrustModule }
+     * Create an instance of {@link MappingInfo }
      * 
      */
-    public TrustModule createTrustModule() {
-        return new TrustModule();
+    public MappingInfo createMappingInfo() {
+        return new MappingInfo();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link RoleMappingInfo }{@code >}}
+     * Create an instance of {@link ApplicationPolicy }
      * 
      */
-    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "rolemapping")
-    public JAXBElement<RoleMappingInfo> createRolemapping(RoleMappingInfo value) {
-        return new JAXBElement<RoleMappingInfo>(_Rolemapping_QNAME, RoleMappingInfo.class, null, value);
+    public ApplicationPolicy createApplicationPolicy() {
+        return new ApplicationPolicy();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link AuthModuleInfo }{@code >}}
+     * Create an instance of {@link AuthenticationJaspiInfo }
      * 
      */
-    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "auth-module")
-    public JAXBElement<AuthModuleInfo> createAuthModule(AuthModuleInfo value) {
-        return new JAXBElement<AuthModuleInfo>(_AuthModule_QNAME, AuthModuleInfo.class, null, value);
+    public AuthenticationJaspiInfo createAuthenticationJaspiInfo() {
+        return new AuthenticationJaspiInfo();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link AuthenticationJaspiInfo }{@code >}}
+     * Create an instance of {@link IdentityTrustInfo }
      * 
      */
-    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "authentication-jaspi")
-    public JAXBElement<AuthenticationJaspiInfo> createAuthenticationJaspi(AuthenticationJaspiInfo value) {
-        return new JAXBElement<AuthenticationJaspiInfo>(_AuthenticationJaspi_QNAME, AuthenticationJaspiInfo.class, null, value);
+    public IdentityTrustInfo createIdentityTrustInfo() {
+        return new IdentityTrustInfo();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link AuditInfo }{@code >}}
+     * Create an instance of {@link AclInfo }
      * 
      */
-    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "audit")
-    public JAXBElement<AuditInfo> createAudit(AuditInfo value) {
-        return new JAXBElement<AuditInfo>(_Audit_QNAME, AuditInfo.class, null, value);
+    public AclInfo createAclInfo() {
+        return new AclInfo();
     }
 
     /**
@@ -222,12 +204,12 @@
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link AuthorizationInfo }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link AclInfo }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "authorization")
-    public JAXBElement<AuthorizationInfo> createAuthorization(AuthorizationInfo value) {
-        return new JAXBElement<AuthorizationInfo>(_Authorization_QNAME, AuthorizationInfo.class, null, value);
+    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "acl")
+    public JAXBElement<AclInfo> createAcl(AclInfo value) {
+        return new JAXBElement<AclInfo>(_Acl_QNAME, AclInfo.class, null, value);
     }
 
     /**
@@ -249,6 +231,51 @@
     }
 
     /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AuditInfo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "audit")
+    public JAXBElement<AuditInfo> createAudit(AuditInfo value) {
+        return new JAXBElement<AuditInfo>(_Audit_QNAME, AuditInfo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AuthorizationInfo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "authorization")
+    public JAXBElement<AuthorizationInfo> createAuthorization(AuthorizationInfo value) {
+        return new JAXBElement<AuthorizationInfo>(_Authorization_QNAME, AuthorizationInfo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link MappingInfo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "rolemapping")
+    public JAXBElement<MappingInfo> createRolemapping(MappingInfo value) {
+        return new JAXBElement<MappingInfo>(_Rolemapping_QNAME, MappingInfo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AuthModuleInfo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "auth-module")
+    public JAXBElement<AuthModuleInfo> createAuthModule(AuthModuleInfo value) {
+        return new JAXBElement<AuthModuleInfo>(_AuthModule_QNAME, AuthModuleInfo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AuthenticationJaspiInfo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "authentication-jaspi")
+    public JAXBElement<AuthenticationJaspiInfo> createAuthenticationJaspi(AuthenticationJaspiInfo value) {
+        return new JAXBElement<AuthenticationJaspiInfo>(_AuthenticationJaspi_QNAME, AuthenticationJaspiInfo.class, null, value);
+    }
+
+    /**
      * Create an instance of {@link JAXBElement }{@code <}{@link LoginModuleInfo }{@code >}}
      * 
      */
@@ -257,4 +284,13 @@
         return new JAXBElement<LoginModuleInfo>(_LoginModule_QNAME, LoginModuleInfo.class, null, value);
     }
 
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link MappingInfo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:jboss:security-config:5.0", name = "mapping")
+    public JAXBElement<MappingInfo> createMapping(MappingInfo value) {
+        return new JAXBElement<MappingInfo>(_Mapping_QNAME, MappingInfo.class, null, value);
+    }
+
 }

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/PolicyConfig.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/PolicyConfig.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/PolicyConfig.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/PolicyModule.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/PolicyModule.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/PolicyModule.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ProviderModule.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ProviderModule.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/ProviderModule.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/TrustModule.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/TrustModule.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/TrustModule.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 

Modified: projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/package-info.java
===================================================================
--- projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/package-info.java	2009-03-11 00:36:56 UTC (rev 85704)
+++ projects/security/security-standalone/trunk/idtrust-config/src/main/java/org/jboss/security/config/jaxb/package-info.java	2009-03-11 04:12:56 UTC (rev 85705)
@@ -1,8 +1,8 @@
 //
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2008.05.31 at 09:44:23 PM CDT 
+// Generated on: 2009.03.10 at 11:05:46 PM CDT 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "urn:jboss:security-config:5.0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)




More information about the jboss-cvs-commits mailing list