adc 2004/05/29 18:26:15
Modified: modules/security/src/schema geronimo-security.xsd
Log:
Changed schema name space.
Revision Changes Path
1.4 +8 -10
incubator-geronimo/modules/security/src/schema/geronimo-security.xsd
Index: geronimo-security.xsd
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/security/src/schema/geronimo-security.xsd,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- geronimo-security.xsd 10 Mar 2004 09:59:27 -0000 1.3
+++ geronimo-security.xsd 30 May 2004 01:26:15 -0000 1.4
@@ -17,8 +17,6 @@
-->
<xsd:schema
- targetNamespace="http://geronimo.apache.org/xml/ns/security"
- xmlns:ger="http://geronimo.apache.org/xml/ns/security"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:j2ee="http://java.sun.com/xml/ns/j2ee"
elementFormDefault="qualified"
@@ -27,7 +25,7 @@
<xsd:import namespace="http://java.sun.com/xml/ns/j2ee"
schemaLocation="j2ee_1_4.xsd"/>
- <xsd:element name="security" type="ger:securityType"/>
+ <xsd:element name="security" type="securityType"/>
<xsd:complexType name="securityType">
<xsd:annotation>
@@ -40,14 +38,14 @@
</xsd:annotation>
<xsd:sequence>
<xsd:element name="description" type="j2ee:descriptionType"
minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element name="default-principal"
type="ger:default-principalType"/>
- <xsd:element name="role-mappings" type="ger:role-mappingsType"
minOccurs="0"/>
+ <xsd:element name="default-principal"
type="default-principalType"/>
+ <xsd:element name="role-mappings" type="role-mappingsType"
minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="use-context-handler" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation>
Set this attribute to "true" if the installed JACC policy
- contexts willuse PolicyContextHandlers.
+ contexts will use PolicyContextHandlers.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
@@ -55,26 +53,26 @@
<xsd:complexType name="default-principalType">
<xsd:sequence>
<xsd:element name="description" type="j2ee:descriptionType"
minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element name="principal" type="ger:principalType"/>
+ <xsd:element name="principal" type="principalType"/>
</xsd:sequence>
<xsd:attribute name="realm-name" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="role-mappingsType">
<xsd:sequence>
- <xsd:element name="role" type="ger:roleType" minOccurs="1"
maxOccurs="unbounded"/>
+ <xsd:element name="role" type="roleType" minOccurs="1"
maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="roleType">
<xsd:sequence>
<xsd:element name="description" type="j2ee:descriptionType"
minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element name="realm" type="ger:realmType" minOccurs="1"
maxOccurs="unbounded"/>
+ <xsd:element name="realm" type="realmType" minOccurs="1"
maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="role-name" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="realmType">
<xsd:sequence>
<xsd:element name="description" type="j2ee:descriptionType"
minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element name="principal" type="ger:principalType"
minOccurs="1" maxOccurs="unbounded"/>
+ <xsd:element name="principal" type="principalType" minOccurs="1"
maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="realm-name" type="xsd:string"/>
</xsd:complexType>