You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2006/03/08 14:24:55 UTC

svn commit: r384210 - /directory/trunks/apacheds/core/src/main/schema/apache.schema

Author: ersiner
Date: Wed Mar  8 05:24:54 2006
New Revision: 384210

URL: http://svn.apache.org/viewcvs?rev=384210&view=rev
Log:
Updated and added some schema definitions for Ldap Class Loader.

Modified:
    directory/trunks/apacheds/core/src/main/schema/apache.schema

Modified: directory/trunks/apacheds/core/src/main/schema/apache.schema
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/core/src/main/schema/apache.schema?rev=384210&r1=384209&r2=384210&view=diff
==============================================================================
--- directory/trunks/apacheds/core/src/main/schema/apache.schema (original)
+++ directory/trunks/apacheds/core/src/main/schema/apache.schema Wed Mar  8 05:24:54 2006
@@ -197,19 +197,43 @@
     STRUCTURAL
     MUST ( unixFilePath ) )
 
+#attributetype ( 1.2.6.1.4.1.18060.1.1.1.3.21
+#    NAME 'fqcn'
+#    DESC 'The fully qualified class name of a java class'
+#	 EQUALITY caseExactIA5Match
+#	 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE )
+#
+#attributetype ( 1.2.6.1.4.1.18060.1.1.1.3.22
+#    NAME 'byteCode'
+#	 DESC 'The actual byte code for a java class'
+#	 SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 SINGLE-VALUE )
+#
+#objectclass ( 1.2.6.1.4.1.18060.1.1.1.4.8
+#    NAME 'javaClass'
+#    SUP top
+#    STRUCTURAL
+#    MUST ( fqcn $ byteCode ) )
+
 attributetype ( 1.2.6.1.4.1.18060.1.1.1.3.21
-    NAME 'fqcn'
-	DESC 'The fully qualified class name of a java class'
-	EQUALITY caseExactIA5Match
-	SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE )
+    NAME 'fullyQualifiedClassName'
+    DESC 'The fully qualified name for a (Java) class'
+	 EQUALITY caseExactIA5Match
+	 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE )
 
 attributetype ( 1.2.6.1.4.1.18060.1.1.1.3.22
     NAME 'byteCode'
-	DESC 'The actual byte code for a java class'
-	SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 SINGLE-VALUE )
+	 DESC 'The actual byte code for a (Java) class'
+	 SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 SINGLE-VALUE )
 
 objectclass ( 1.2.6.1.4.1.18060.1.1.1.4.8
     NAME 'javaClass'
     SUP top
     STRUCTURAL
-    MUST ( fqcn $ byteCode ) )
+    MUST ( fullyQualifiedClassName $ byteCode ) )
+
+attributetype ( 1.2.6.1.4.1.18060.1.1.1.3.23
+    NAME 'classLoaderDefaultSearchContext'
+    DESC 'The default search context for the Ldap Class Loader'
+    SUP distinguishedName
+    EQUALITY distinguishedNameMatch
+    SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 )
\ No newline at end of file