JBoss Identity SVN: r228 - idm/trunk/idm/src/test/resources.
by jboss-identity-commits@lists.jboss.org
Author: bdaw
Date: 2009-01-17 16:42:22 -0500 (Sat, 17 Jan 2009)
New Revision: 228
Modified:
idm/trunk/idm/src/test/resources/organization-test-config.xml
Log:
small cleanup
Modified: idm/trunk/idm/src/test/resources/organization-test-config.xml
===================================================================
--- idm/trunk/idm/src/test/resources/organization-test-config.xml 2009-01-17 21:38:06 UTC (rev 227)
+++ idm/trunk/idm/src/test/resources/organization-test-config.xml 2009-01-17 21:42:22 UTC (rev 228)
@@ -69,8 +69,6 @@
<identity-store-mapping>
<identity-store-id>Hibernate Identity Store</identity-store-id>
<identity-object-types>
- <identity-object-type>ORGANIZATION</identity-object-type>
- <identity-object-type>ORGANIZATION_UNIT</identity-object-type>
<identity-object-type>DIVISION</identity-object-type>
<identity-object-type>PROJECT</identity-object-type>
<identity-object-type>PEOPLE</identity-object-type>
17 years, 4 months
JBoss Identity SVN: r227 - in idm/trunk/example/maven2/src/test: resources and 1 other directory.
by jboss-identity-commits@lists.jboss.org
Author: bdaw
Date: 2009-01-17 16:38:06 -0500 (Sat, 17 Jan 2009)
New Revision: 227
Modified:
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/DBTestCase.java
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/LDAPTestCase.java
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/MixedTestCase.java
idm/trunk/example/maven2/src/test/resources/example-db-config.xml
Log:
++
Modified: idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/DBTestCase.java
===================================================================
--- idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/DBTestCase.java 2009-01-17 00:40:28 UTC (rev 226)
+++ idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/DBTestCase.java 2009-01-17 21:38:06 UTC (rev 227)
@@ -23,12 +23,23 @@
package org.jboss.identity.idm.example;
import java.util.logging.Logger;
+import java.util.Random;
+import java.util.Map;
+import java.util.Arrays;
import java.io.File;
import org.jboss.identity.idm.api.IdentitySessionFactory;
import org.jboss.identity.idm.api.IdentitySession;
import org.jboss.identity.idm.api.Identity;
+import org.jboss.identity.idm.api.GroupType;
+import org.jboss.identity.idm.api.Group;
+import org.jboss.identity.idm.api.RoleType;
+import org.jboss.identity.idm.api.AttributeDescription;
+import org.jboss.identity.idm.api.Attribute;
import org.jboss.identity.idm.impl.api.IdentitySessionFactoryImpl;
+import org.jboss.identity.idm.impl.api.SimpleAttribute;
+import org.jboss.identity.idm.impl.api.model.SimpleGroupType;
+import org.jboss.identity.idm.p3p.P3PConstants;
/**
@@ -62,10 +73,62 @@
IdentitySessionFactory identitySessionFactory = new IdentitySessionFactoryImpl(new File("src/test/resources/example-db-config.xml"));
IdentitySession identitySession = identitySessionFactory.createIdentitySession("realm://JBossIdentityExample/SampleRealm");
- identitySession.getTransaction().start();
+ identitySession.beginTransaction();
- Identity jonnDoe = identitySession.getPersistenceManager().createIdentity("John Doe");
+ GroupType ORGANIZATION = new SimpleGroupType("ORGANIZATION");
+ GroupType GROUP = new SimpleGroupType("GROUP");
+ Identity johnDoe = identitySession.getPersistenceManager().createIdentity("John Doe");
+ Identity alice = identitySession.getPersistenceManager().createIdentity("Alice");
+ Identity eva = identitySession.getPersistenceManager().createIdentity("Eva");
+
+ Group acmeOrg = identitySession.getPersistenceManager().createGroup("ACME", ORGANIZATION);
+
+ Group itGroup = identitySession.getPersistenceManager().createGroup("IT", GROUP);
+ Group hrGroup = identitySession.getPersistenceManager().createGroup("HR", GROUP);
+
+ identitySession.getRelationshipManager().associateGroups(acmeOrg, itGroup);
+ identitySession.getRelationshipManager().associateGroups(acmeOrg, hrGroup);
+
+ identitySession.getRelationshipManager().associateIdentities(itGroup, johnDoe);
+ identitySession.getRelationshipManager().associateIdentities(itGroup, alice);
+
+ identitySession.getRelationshipManager().associateIdentities(hrGroup, eva);
+
+ RoleType managerRT = identitySession.getRoleManager().createRoleType("manager");
+
+ identitySession.getRoleManager().createRole(managerRT, johnDoe, itGroup);
+
+ // John belongs to IT and not HR
+ assertTrue(identitySession.getRelationshipManager().isAssociated(itGroup, johnDoe));
+ assertFalse(identitySession.getRelationshipManager().isAssociated(hrGroup, johnDoe));
+
+ // John is manager of IT and not HR
+ assertTrue(identitySession.getRoleManager().hasRole(johnDoe, itGroup, managerRT));
+ assertFalse(identitySession.getRoleManager().hasRole(johnDoe, hrGroup, managerRT));
+
+ // Check that binary attribute picture is mapped
+
+ AttributeDescription attributeDescription = identitySession.getAttributesManager().getAttributeDescription(johnDoe, "picture");
+ assertNotNull(attributeDescription);
+ assertEquals("binary", attributeDescription.getType());
+
+
+ // Generate random binary data for binary attribute
+ Random random = new Random();
+
+ byte[] picture = new byte[5120];
+ random.nextBytes(picture);
+
+ identitySession.getAttributesManager().addAttributes(johnDoe, new Attribute[] {new SimpleAttribute("picture", new byte[][]{picture})});
+
+ // Assert picture
+
+ Map<String, Attribute> attributes = identitySession.getAttributesManager().getAttributes(johnDoe);
+ assertEquals(1, attributes.keySet().size());
+ assertTrue(Arrays.equals((byte[])attributes.get("picture").getValue(), picture));
+
+
identitySession.getTransaction().commit();
identitySession.close();
Modified: idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/LDAPTestCase.java
===================================================================
--- idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/LDAPTestCase.java 2009-01-17 00:40:28 UTC (rev 226)
+++ idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/LDAPTestCase.java 2009-01-17 21:38:06 UTC (rev 227)
@@ -25,11 +25,15 @@
import junit.framework.TestCase;
import java.io.File;
+import java.util.Map;
+import java.util.Arrays;
import org.jboss.identity.idm.api.IdentitySessionFactory;
import org.jboss.identity.idm.api.IdentitySession;
import org.jboss.identity.idm.api.Identity;
+import org.jboss.identity.idm.api.Attribute;
import org.jboss.identity.idm.impl.api.IdentitySessionFactoryImpl;
+import org.jboss.identity.idm.impl.api.SimpleAttribute;
/**
@@ -66,10 +70,23 @@
IdentitySessionFactory identitySessionFactory = new IdentitySessionFactoryImpl(new File("src/test/resources/example-ldap-config.xml"));
IdentitySession identitySession = identitySessionFactory.createIdentitySession("realm://JBossIdentityExample/SampleRealm");
- identitySession.getTransaction().start();
+ identitySession.beginTransaction();
- Identity jonnDoe = identitySession.getPersistenceManager().createIdentity("John Doe");
+ Identity johnDoe = identitySession.getPersistenceManager().createIdentity("John Doe");
+ Attribute[] userInfo = new Attribute[] {
+ new SimpleAttribute("phone", "777 77 77"),
+ new SimpleAttribute("description", "ordinary john doe"),
+ new SimpleAttribute("carLicense", "xxx-xx-xxx")
+ };
+
+ identitySession.getAttributesManager().addAttributes(johnDoe, userInfo);
+
+ // Assert
+ Map<String, Attribute> attributes = identitySession.getAttributesManager().getAttributes(johnDoe);
+ assertEquals(3, attributes.keySet().size());
+ assertEquals("777 77 77", (attributes.get("phone")).getValue());
+
identitySession.getTransaction().commit();
identitySession.close();
}
Modified: idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/MixedTestCase.java
===================================================================
--- idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/MixedTestCase.java 2009-01-17 00:40:28 UTC (rev 226)
+++ idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/MixedTestCase.java 2009-01-17 21:38:06 UTC (rev 227)
@@ -68,8 +68,10 @@
IdentitySession identitySession = identitySessionFactory.createIdentitySession("realm://JBossIdentityExample/SampleRealm");
identitySession.getTransaction().start();
- Identity jonnDoe = identitySession.getPersistenceManager().createIdentity("John Doe");
+ Identity johnDoe = identitySession.getPersistenceManager().createIdentity("John Doe");
+ // Play with the API...
+
identitySession.getTransaction().commit();
identitySession.close();
}
Modified: idm/trunk/example/maven2/src/test/resources/example-db-config.xml
===================================================================
--- idm/trunk/example/maven2/src/test/resources/example-db-config.xml 2009-01-17 00:40:28 UTC (rev 226)
+++ idm/trunk/example/maven2/src/test/resources/example-db-config.xml 2009-01-17 21:38:06 UTC (rev 227)
@@ -113,10 +113,6 @@
<name>isRealmAware</name>
<value>true</value>
</option>
- <option>
- <name>allowNotDefinedAttributes</name>
- <value>true</value>
- </option>
</options>
</identity-store>
</identity-stores>
17 years, 4 months
JBoss Identity SVN: r226 - idm/trunk/idm/src/main/java/org/jboss/identity/idm/impl/api/session.
by jboss-identity-commits@lists.jboss.org
Author: bdaw
Date: 2009-01-16 19:40:28 -0500 (Fri, 16 Jan 2009)
New Revision: 226
Modified:
idm/trunk/idm/src/main/java/org/jboss/identity/idm/impl/api/session/IdentitySessionImpl.java
Log:
start transaction in beginTransaction() method
Modified: idm/trunk/idm/src/main/java/org/jboss/identity/idm/impl/api/session/IdentitySessionImpl.java
===================================================================
--- idm/trunk/idm/src/main/java/org/jboss/identity/idm/impl/api/session/IdentitySessionImpl.java 2009-01-17 00:37:52 UTC (rev 225)
+++ idm/trunk/idm/src/main/java/org/jboss/identity/idm/impl/api/session/IdentitySessionImpl.java 2009-01-17 00:40:28 UTC (rev 226)
@@ -125,7 +125,9 @@
public Transaction beginTransaction()
{
- return new SimpleTransactionImpl(sessionContext.resolveStoreInvocationContext().getIdentityStoreSession());
+ Transaction transaction = new SimpleTransactionImpl(sessionContext.resolveStoreInvocationContext().getIdentityStoreSession());
+ transaction.start();
+ return transaction;
}
public Transaction getTransaction()
17 years, 4 months
JBoss Identity SVN: r225 - in idm/trunk: example and 22 other directories.
by jboss-identity-commits@lists.jboss.org
Author: bdaw
Date: 2009-01-16 19:37:52 -0500 (Fri, 16 Jan 2009)
New Revision: 225
Added:
idm/trunk/example/
idm/trunk/example/maven2/
idm/trunk/example/maven2/pom.xml
idm/trunk/example/maven2/src/
idm/trunk/example/maven2/src/main/
idm/trunk/example/maven2/src/main/java/
idm/trunk/example/maven2/src/main/resources/
idm/trunk/example/maven2/src/test/
idm/trunk/example/maven2/src/test/java/
idm/trunk/example/maven2/src/test/java/org/
idm/trunk/example/maven2/src/test/java/org/jboss/
idm/trunk/example/maven2/src/test/java/org/jboss/identity/
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/DBTestCase.java
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/LDAPTestCase.java
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/MixedTestCase.java
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/OpenDSService.java
idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/TestBase.java
idm/trunk/example/maven2/src/test/resources/
idm/trunk/example/maven2/src/test/resources/META-INF/
idm/trunk/example/maven2/src/test/resources/META-INF/persistence.xml
idm/trunk/example/maven2/src/test/resources/example-db-config.xml
idm/trunk/example/maven2/src/test/resources/example-ldap-config.xml
idm/trunk/example/maven2/src/test/resources/example-mixed-config.xml
idm/trunk/example/maven2/src/test/resources/identity-config.xsd
idm/trunk/example/maven2/src/test/resources/ldap/
idm/trunk/example/maven2/src/test/resources/ldap/initial-empty-opends.ldif
idm/trunk/example/maven2/src/test/resources/opends/
idm/trunk/example/maven2/src/test/resources/opends/config/
idm/trunk/example/maven2/src/test/resources/opends/config/admin-backend.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/config.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/
idm/trunk/example/maven2/src/test/resources/opends/config/schema/00-core.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/01-pwpolicy.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/02-config.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-changelog.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2713.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2714.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2739.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2926.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc3112.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc3712.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-uddiv3.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/schema/04-rfc2307bis.ldif
idm/trunk/example/maven2/src/test/resources/opends/config/upgrade/
idm/trunk/example/maven2/src/test/resources/opends/config/upgrade/config.ldif.4337
idm/trunk/example/maven2/src/test/resources/opends/config/upgrade/schema.ldif.4337
idm/trunk/example/maven2/src/test/resources/opends/db/
idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/
idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/00000000.jdb
idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/je.info.0
idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/je.lck
idm/trunk/example/maven2/src/test/resources/opends/locks/
idm/trunk/example/maven2/src/test/resources/opends/locks/backend-userRoot.lock
idm/trunk/example/maven2/src/test/resources/opends/locks/server.lock
idm/trunk/example/maven2/src/test/resources/opends/logs/
idm/trunk/example/maven2/src/test/resources/opends/logs/access
idm/trunk/example/maven2/src/test/resources/opends/logs/server
Modified:
idm/trunk/parent/pom.xml
Log:
example maven2 project with ready to use API playground
Added: idm/trunk/example/maven2/pom.xml
===================================================================
--- idm/trunk/example/maven2/pom.xml (rev 0)
+++ idm/trunk/example/maven2/pom.xml 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,102 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.identity</groupId>
+ <version>1.0.0-SNAPSHOT</version>
+ <artifactId>idm-maven2-example</artifactId>
+ <packaging>jar</packaging>
+ <name>JBoss Identity IDM Maven2 example project</name>
+ <url>http://labs.jboss.org/portal/jbosssecurity/</url>
+ <description>Example maven2 project using JBoss Identity IDM component.</description>
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+
+ <repositories>
+ <repository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <layout>default</layout>
+ <url>http://repository.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+
+ <repository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshots Repository</name>
+ <layout>default</layout>
+ <url>http://snapshots.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </repository>
+ </repositories>
+
+
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.identity</groupId>
+ <artifactId>idm</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ <version>1.8.0.7</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>sun-opends</groupId>
+ <artifactId>OpenDS</artifactId>
+ <version>1.0.0</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>berkeleydb</groupId>
+ <artifactId>je</artifactId>
+ <version>3.2.76</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <target>1.5</target>
+ <source>1.5</source>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <printSummary>true</printSummary>
+ <disableXmlReport>false</disableXmlReport>
+ <testFailureIgnore>false</testFailureIgnore>
+ <includes>
+ <include>**/*TestCase.java</include>
+ </includes>
+ <forkMode>pertest</forkMode>
+ <argLine>${surefire.jvm.args}</argLine>
+ <useFile>false</useFile>
+ <trimStackTrace>false</trimStackTrace>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/DBTestCase.java
===================================================================
--- idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/DBTestCase.java (rev 0)
+++ idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/DBTestCase.java 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,75 @@
+/*
+* JBoss, a division of Red Hat
+* Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+
+package org.jboss.identity.idm.example;
+
+import java.util.logging.Logger;
+import java.io.File;
+
+import org.jboss.identity.idm.api.IdentitySessionFactory;
+import org.jboss.identity.idm.api.IdentitySession;
+import org.jboss.identity.idm.api.Identity;
+import org.jboss.identity.idm.impl.api.IdentitySessionFactoryImpl;
+
+
+/**
+ * @author <a href="mailto:boleslaw.dawidowicz at redhat.com">Boleslaw Dawidowicz</a>
+ * @version : 0.1 $
+ */
+public class DBTestCase extends TestBase
+{
+
+ private static Logger logger = Logger.getLogger(DBTestCase.class.getName());
+
+ @Override
+ protected void setUp() throws Exception
+ {
+ super.setUp();
+
+ startDatabase();
+ }
+
+ @Override
+ protected void tearDown() throws Exception
+ {
+ super.tearDown();
+
+ stopDatabase();
+ }
+
+
+ public void testJBossIdentity() throws Exception
+ {
+ IdentitySessionFactory identitySessionFactory = new IdentitySessionFactoryImpl(new File("src/test/resources/example-db-config.xml"));
+
+ IdentitySession identitySession = identitySessionFactory.createIdentitySession("realm://JBossIdentityExample/SampleRealm");
+ identitySession.getTransaction().start();
+
+ Identity jonnDoe = identitySession.getPersistenceManager().createIdentity("John Doe");
+
+ identitySession.getTransaction().commit();
+ identitySession.close();
+
+
+ }
+
+}
Added: idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/LDAPTestCase.java
===================================================================
--- idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/LDAPTestCase.java (rev 0)
+++ idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/LDAPTestCase.java 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,77 @@
+/*
+* JBoss, a division of Red Hat
+* Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+
+package org.jboss.identity.idm.example;
+
+import junit.framework.TestCase;
+
+import java.io.File;
+
+import org.jboss.identity.idm.api.IdentitySessionFactory;
+import org.jboss.identity.idm.api.IdentitySession;
+import org.jboss.identity.idm.api.Identity;
+import org.jboss.identity.idm.impl.api.IdentitySessionFactoryImpl;
+
+
+/**
+ * @author <a href="mailto:boleslaw.dawidowicz at redhat.com">Boleslaw Dawidowicz</a>
+ * @version : 0.1 $
+ */
+public class LDAPTestCase extends TestBase
+{
+
+
+ @Override
+ protected void setUp() throws Exception
+ {
+ super.setUp();
+
+ startLDAP();
+
+ populateLDIF("target/test-classes/ldap/initial-empty-opends.ldif");
+
+ }
+
+ @Override
+ protected void tearDown() throws Exception
+ {
+ super.tearDown();
+
+ cleanUpDN("o=test,dc=example,dc=com");
+
+ stopLDAP();
+ }
+
+ public void testJBossIdentity() throws Exception
+ {
+ IdentitySessionFactory identitySessionFactory = new IdentitySessionFactoryImpl(new File("src/test/resources/example-ldap-config.xml"));
+
+ IdentitySession identitySession = identitySessionFactory.createIdentitySession("realm://JBossIdentityExample/SampleRealm");
+ identitySession.getTransaction().start();
+
+ Identity jonnDoe = identitySession.getPersistenceManager().createIdentity("John Doe");
+
+ identitySession.getTransaction().commit();
+ identitySession.close();
+ }
+
+}
Added: idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/MixedTestCase.java
===================================================================
--- idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/MixedTestCase.java (rev 0)
+++ idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/MixedTestCase.java 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,76 @@
+/*
+* JBoss, a division of Red Hat
+* Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+
+package org.jboss.identity.idm.example;
+
+import org.jboss.identity.idm.api.IdentitySessionFactory;
+import org.jboss.identity.idm.api.IdentitySession;
+import org.jboss.identity.idm.api.Identity;
+import org.jboss.identity.idm.impl.api.IdentitySessionFactoryImpl;
+
+import java.io.File;
+
+/**
+ * @author <a href="mailto:boleslaw.dawidowicz at redhat.com">Boleslaw Dawidowicz</a>
+ * @version : 0.1 $
+ */
+public class MixedTestCase extends TestBase
+{
+
+ @Override
+ protected void setUp() throws Exception
+ {
+ super.setUp();
+
+ startDatabase();
+
+ startLDAP();
+
+ populateLDIF("target/test-classes/ldap/initial-empty-opends.ldif");
+
+ }
+
+ @Override
+ protected void tearDown() throws Exception
+ {
+ super.tearDown();
+
+ cleanUpDN("o=test,dc=example,dc=com");
+
+ stopDatabase();
+
+ stopLDAP();
+ }
+
+ public void testJBossIdentity() throws Exception
+ {
+ IdentitySessionFactory identitySessionFactory = new IdentitySessionFactoryImpl(new File("src/test/resources/example-mixed-config.xml"));
+
+ IdentitySession identitySession = identitySessionFactory.createIdentitySession("realm://JBossIdentityExample/SampleRealm");
+ identitySession.getTransaction().start();
+
+ Identity jonnDoe = identitySession.getPersistenceManager().createIdentity("John Doe");
+
+ identitySession.getTransaction().commit();
+ identitySession.close();
+ }
+}
Added: idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/OpenDSService.java
===================================================================
--- idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/OpenDSService.java (rev 0)
+++ idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/OpenDSService.java 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,105 @@
+package org.jboss.identity.idm.example;/*
+* JBoss, a division of Red Hat
+* Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+
+import org.opends.server.types.DirectoryEnvironmentConfig;
+import org.opends.server.types.InitializationException;
+import org.opends.server.util.EmbeddedUtils;
+
+import java.io.File;
+
+/**
+ * @author <a href="mailto:boleslaw.dawidowicz at redhat.com">Boleslaw Dawidowicz</a>
+ * @version : 0.1 $
+ */
+public class OpenDSService
+{
+ private String serverRoot = "";
+
+ public OpenDSService(String serverRoot)
+ {
+ this.serverRoot = serverRoot;
+ }
+
+ public DirectoryEnvironmentConfig getConfig()
+ {
+ DirectoryEnvironmentConfig config = new DirectoryEnvironmentConfig();
+
+ try
+ {
+ File root = new File(getServerRoot());
+
+ if (root == null || !root.exists())
+ {
+ throw new IllegalStateException("opends root doesn't exist: " + getServerRoot());
+ }
+ if (!root.isDirectory())
+ {
+ throw new IllegalStateException("opends root is not a directory: " + getServerRoot());
+ }
+
+ // Server root points to the directory with opends configuration
+ config.setServerRoot(new File(getServerRoot()));
+ config.setForceDaemonThreads(true);
+
+ }
+ catch (InitializationException e)
+ {
+ e.printStackTrace();
+ }
+
+ return config;
+ }
+
+
+ public void start()
+ {
+ if (!EmbeddedUtils.isRunning())
+ {
+ try
+ {
+ EmbeddedUtils.startServer(getConfig());
+ }
+ catch (Exception e)
+ {
+ e.printStackTrace();
+ }
+ }
+ }
+
+ public void stop()
+ {
+ if (EmbeddedUtils.isRunning())
+ {
+ EmbeddedUtils.stopServer(this.getClass().getName(), null);
+ }
+ }
+
+ public String getServerRoot()
+ {
+ return serverRoot;
+ }
+
+ public void setServerRoot(String serverRoot)
+ {
+ this.serverRoot = serverRoot;
+ }
+}
Added: idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/TestBase.java
===================================================================
--- idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/TestBase.java (rev 0)
+++ idm/trunk/example/maven2/src/test/java/org/jboss/identity/idm/example/TestBase.java 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,172 @@
+/*
+* JBoss, a division of Red Hat
+* Copyright 2006, Red Hat Middleware, LLC, and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+
+package org.jboss.identity.idm.example;
+
+import junit.framework.TestCase;
+
+import java.sql.Connection;
+import java.sql.DriverManager;
+import java.util.logging.Logger;
+import java.util.Hashtable;
+import java.io.File;
+
+import org.opends.server.tools.LDAPModify;
+
+import javax.naming.Context;
+import javax.naming.NamingEnumeration;
+import javax.naming.Binding;
+import javax.naming.directory.DirContext;
+import javax.naming.ldap.LdapContext;
+import javax.naming.ldap.InitialLdapContext;
+
+/**
+ * @author <a href="mailto:boleslaw.dawidowicz at redhat.com">Boleslaw Dawidowicz</a>
+ * @version : 0.1 $
+ */
+public class TestBase extends TestCase
+{
+ private static Logger logger = Logger.getLogger(TestBase.class.getName());
+
+ private Connection connection;
+
+ private OpenDSService openDSService;
+
+ public static final String LDAP_HOST = "localhost";
+
+ public static final String LDAP_PORT = "10389";
+
+ public static final String LDAP_PROVIDER_URL = "ldap://" + LDAP_HOST + ":" + LDAP_PORT;
+
+ public static final String LDAP_PRINCIPAL = "cn=Directory Manager";
+
+ public static final String LDAP_CREDENTIALS = "password";
+
+
+ protected void startDatabase() throws Exception
+ {
+ try {
+ logger.info("Starting in-memory HSQL database for unit tests");
+ Class.forName("org.hsqldb.jdbcDriver");
+ connection = DriverManager.getConnection("jdbc:hsqldb:mem:sample-test-db", "sa", "");
+ }
+ catch (Exception ex)
+ {
+ ex.printStackTrace();
+ logger.fine("Exception during HSQL database startup.");
+ throw ex;
+ }
+ }
+
+ protected void stopDatabase() throws Exception
+ {
+ logger.info("Stopping in-memory HSQL database.");
+ try
+ {
+ connection.createStatement().execute("SHUTDOWN");
+ }
+ catch (Exception ex) {
+ throw ex;
+ }
+ }
+
+ protected void startLDAP() throws Exception
+ {
+ super.setUp();
+
+ openDSService = new OpenDSService("target/test-classes/opends");
+ openDSService.start();
+ }
+
+ protected void stopLDAP() throws Exception
+ {
+ openDSService.stop();
+ }
+
+ public void populateLDIF(String ldifRelativePath) throws Exception
+ {
+ File ldif = new File(ldifRelativePath);
+
+ System.out.println("LDIF: " + ldif.getAbsolutePath());
+
+ String[] cmd = new String[] {"-h", LDAP_HOST,
+ "-p", LDAP_PORT,
+ "-D", LDAP_PRINCIPAL,
+ "-w", LDAP_CREDENTIALS,
+ "-a", "-f", ldif.getPath()};
+
+ logger.fine("Populate success: " + (LDAPModify.mainModify(cmd, false, System.out, System.err) == 0));
+
+ }
+
+ protected void cleanUpDN(String dn) throws Exception
+ {
+ DirContext ldapCtx = getLdapContext();
+
+ try
+ {
+ logger.fine("Removing: " + dn);
+
+ removeContext(ldapCtx, dn);
+ }
+ catch (Exception e)
+ {
+ //
+ }
+ finally
+ {
+ ldapCtx.close();
+ }
+ }
+
+ //subsequent remove of javax.naming.Context
+ private void removeContext(Context mainCtx, String name) throws Exception
+ {
+ Context deleteCtx = (Context)mainCtx.lookup(name);
+ NamingEnumeration subDirs = mainCtx.listBindings(name);
+
+ while (subDirs.hasMoreElements())
+ {
+ Binding binding = (Binding)subDirs.nextElement();
+ String subName = binding.getName();
+
+ removeContext(deleteCtx, subName);
+ }
+
+ mainCtx.unbind(name);
+ }
+
+
+
+ private LdapContext getLdapContext() throws Exception
+ {
+ Hashtable<String,String> env = new Hashtable<String,String>();
+ env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
+ env.put(Context.PROVIDER_URL, LDAP_PROVIDER_URL);
+ env.put(Context.SECURITY_AUTHENTICATION, "simple");
+ env.put(Context.SECURITY_PRINCIPAL, LDAP_PRINCIPAL);
+ env.put(Context.SECURITY_CREDENTIALS, LDAP_CREDENTIALS);
+
+ return new InitialLdapContext(env, null);
+ }
+
+}
Added: idm/trunk/example/maven2/src/test/resources/META-INF/persistence.xml
===================================================================
--- idm/trunk/example/maven2/src/test/resources/META-INF/persistence.xml (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/META-INF/persistence.xml 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<persistence xmlns="http://java.sun.com/xml/ns/persistence"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
+ http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
+ version="1.0">
+
+ <persistence-unit name="sample-persistence-unit" transaction-type="RESOURCE_LOCAL">
+
+ <provider>org.hibernate.ejb.HibernatePersistence</provider>
+
+ <class>org.jboss.identity.idm.impl.model.hibernate.HibernateRealm</class>
+ <class>org.jboss.identity.idm.impl.model.hibernate.HibernateIdentityObject</class>
+ <class>org.jboss.identity.idm.impl.model.hibernate.HibernateIdentityObjectCredential</class>
+ <class>org.jboss.identity.idm.impl.model.hibernate.HibernateIdentityObjectCredentialType</class>
+ <class>org.jboss.identity.idm.impl.model.hibernate.HibernateIdentityObjectAttribute</class>
+ <class>org.jboss.identity.idm.impl.model.hibernate.HibernateIdentityObjectType</class>
+ <class>org.jboss.identity.idm.impl.model.hibernate.HibernateIdentityObjectRelationship</class>
+ <class>org.jboss.identity.idm.impl.model.hibernate.HibernateIdentityObjectRelationshipType</class>
+ <class>org.jboss.identity.idm.impl.model.hibernate.HibernateIdentityObjectRelationshipName</class>
+
+ <exclude-unlisted-classes>true</exclude-unlisted-classes>
+
+ <properties>
+ <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:sample-test-db"/>
+ <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver"/>
+ <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
+ <property name="hibernate.hbm2ddl.auto" value="create"/>
+ <property name="hibernate.connection.username" value="sa"/>
+ <property name="hibernate.connection.password" value=""/>
+ </properties>
+
+ </persistence-unit>
+
+</persistence>
\ No newline at end of file
Added: idm/trunk/example/maven2/src/test/resources/example-db-config.xml
===================================================================
--- idm/trunk/example/maven2/src/test/resources/example-db-config.xml (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/example-db-config.xml 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,124 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<jboss-identity xmlns="urn:jboss:identity:idm:config:v1_0_alpha"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="urn:jboss:identity:idm:config:v1_0_alpha identity-config.xsd">
+ <realms>
+ <realm>
+ <id>realm://JBossIdentityExample/SampleRealm</id>
+ <repository-id-ref>Sample Repository</repository-id-ref>
+ <identity-type-mappings>
+ <identity-mapping>IDENTITY</identity-mapping>
+ </identity-type-mappings>
+ </realm>
+ </realms>
+ <repositories>
+ <repository>
+ <id>Sample Repository</id>
+ <class>org.jboss.identity.idm.impl.repository.WrapperIdentityStoreRepository</class>
+ <external-config/>
+ <default-identity-store-id>Sample DB Store</default-identity-store-id>
+ <default-attribute-store-id>Sample DB Store</default-attribute-store-id>
+ </repository>
+ </repositories>
+ <stores>
+ <attribute-stores/>
+ <identity-stores>
+ <identity-store>
+ <id>Sample DB Store</id>
+ <class>org.jboss.identity.idm.impl.store.hibernate.HibernateIdentityStoreImpl</class>
+ <external-config/>
+ <supported-relationship-types>
+ <relationship-type>JBOSS_IDENTITY_MEMBERSHIP</relationship-type>
+ <relationship-type>JBOSS_IDENTITY_ROLE</relationship-type>
+ </supported-relationship-types>
+ <supported-identity-object-types>
+ <identity-object-type>
+ <name>IDENTITY</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_ROLE</relationship-type-ref>
+ <identity-object-type-ref>ORGANIZATION</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_ROLE</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials>
+ <credential-type>PASSWORD</credential-type>
+ </credentials>
+ <attributes>
+ <attribute>
+ <name>picture</name>
+ <mapping>user.picture</mapping>
+ <type>binary</type>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
+ </attribute>
+ </attributes>
+ <options/>
+ </identity-object-type>
+ <identity-object-type>
+ <name>ORGANIZATION</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>IDENTITY</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials/>
+ <attributes/>
+ <options/>
+ </identity-object-type>
+ <identity-object-type>
+ <name>GROUP</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>IDENTITY</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials/>
+ <attributes/>
+ <options/>
+ </identity-object-type>
+ </supported-identity-object-types>
+ <options>
+ <option>
+ <name>persistenceUnit</name>
+ <value>sample-persistence-unit</value>
+ </option>
+ <option>
+ <name>populateRelationshipTypes</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>populateIdentityObjectTypes</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>allowNotDefinedAttributes</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>isRealmAware</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>allowNotDefinedAttributes</name>
+ <value>true</value>
+ </option>
+ </options>
+ </identity-store>
+ </identity-stores>
+ </stores>
+</jboss-identity>
\ No newline at end of file
Added: idm/trunk/example/maven2/src/test/resources/example-ldap-config.xml
===================================================================
--- idm/trunk/example/maven2/src/test/resources/example-ldap-config.xml (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/example-ldap-config.xml 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,218 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<jboss-identity xmlns="urn:jboss:identity:idm:config:v1_0_alpha"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="urn:jboss:identity:idm:config:v1_0_alpha identity-config.xsd">
+ <realms>
+ <realm>
+ <id>realm://JBossIdentityExample/SampleRealm</id>
+ <repository-id-ref>Sample Repository</repository-id-ref>
+ <identity-type-mappings>
+ <identity-mapping>IDENTITY</identity-mapping>
+ </identity-type-mappings>
+ </realm>
+ </realms>
+ <repositories>
+ <repository>
+ <id>Sample Repository</id>
+ <class>org.jboss.identity.idm.impl.repository.WrapperIdentityStoreRepository</class>
+ <external-config/>
+ <default-identity-store-id>Sample LDAP Store</default-identity-store-id>
+ <default-attribute-store-id>Sample LDAP Store</default-attribute-store-id>
+ </repository>
+ </repositories>
+ <stores>
+ <attribute-stores/>
+ <identity-stores>
+ <identity-store>
+ <id>Sample LDAP Store</id>
+ <class>org.jboss.identity.idm.impl.store.ldap.LDAPIdentityStoreImpl</class>
+ <external-config/>
+ <supported-relationship-types>
+ <relationship-type>JBOSS_IDENTITY_MEMBERSHIP</relationship-type>
+ </supported-relationship-types>
+ <supported-identity-object-types>
+ <identity-object-type>
+ <name>IDENTITY</name>
+ <relationships/>
+ <credentials>
+ <credential-type>PASSWORD</credential-type>
+ </credentials>
+ <attributes>
+ <attribute>
+ <name>phone</name>
+ <mapping>telephoneNumber</mapping>
+ <type>text</type>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
+ </attribute>
+ <attribute>
+ <name>description</name>
+ <mapping>description</mapping>
+ <type>text</type>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
+ </attribute>
+ <attribute>
+ <name>carLicense</name>
+ <mapping>carLicense</mapping>
+ <type>text</type>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
+ </attribute>
+ </attributes>
+ <options>
+ <option>
+ <name>idAttributeName</name>
+ <value>uid</value>
+ </option>
+ <option>
+ <name>passwordAttributeName</name>
+ <value>password</value>
+ </option>
+ <option>
+ <name>ctxDNs</name>
+ <value>ou=People,o=test,dc=example,dc=com</value>
+ </option>
+ <option>
+ <name>allowCreateEntry</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>createEntryAttributeValues</name>
+ <value>objectClass=top</value>
+ <value>objectClass=inetOrgPerson</value>
+ <value>sn= </value>
+ <value>cn= </value>
+ </option>
+ </options>
+ </identity-object-type>
+ <identity-object-type>
+ <name>ORGANIZATION</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>IDENTITY</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>ORGANIZATION</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials/>
+ <attributes/>
+ <options>
+ <option>
+ <name>idAttributeName</name>
+ <value>cn</value>
+ </option>
+ <option>
+ <name>ctxDNs</name>
+ <value>ou=Organizations,o=test,dc=example,dc=com</value>
+ </option>
+ <!--<option>-->
+ <!--<name>entrySearchFilter</name>-->
+ <!--<value></value>-->
+ <!--</option>-->
+ <option>
+ <name>allowCreateEntry</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>membershipAttributeName</name>
+ <value>member</value>
+ </option>
+ <option>
+ <name>isMembershipAttributeDN</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>allowEmptyMemberships</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>createEntryAttributeValues</name>
+ <value>objectClass=top</value>
+ <value>objectClass=groupOfNames</value>
+ </option>
+ </options>
+ </identity-object-type>
+ <identity-object-type>
+ <name>GROUP</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>IDENTITY</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials/>
+ <attributes/>
+ <options>
+ <option>
+ <name>idAttributeName</name>
+ <value>cn</value>
+ </option>
+ <option>
+ <name>ctxDNs</name>
+ <value>ou=Groups,o=test,dc=example,dc=com</value>
+ </option>
+ <!--<option>-->
+ <!--<name>entrySearchFilter</name>-->
+ <!--<value></value>-->
+ <!--</option>-->
+ <option>
+ <name>allowCreateEntry</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>membershipAttributeName</name>
+ <value>member</value>
+ </option>
+ <option>
+ <name>isMembershipAttributeDN</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>allowEmptyMemberships</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>createEntryAttributeValues</name>
+ <value>objectClass=top</value>
+ <value>objectClass=groupOfNames</value>
+ </option>
+ </options>
+ </identity-object-type>
+ </supported-identity-object-types>
+ <options>
+ <option>
+ <name>providerURL</name>
+ <value>ldap://localhost:10389</value>
+ </option>
+ <option>
+ <name>adminDN</name>
+ <value>cn=Directory Manager</value>
+ </option>
+ <option>
+ <name>adminPassword</name>
+ <value>password</value>
+ </option>
+ <option>
+ <name>searchTimeLimit</name>
+ <value>10000</value>
+ </option>
+ </options>
+ </identity-store>
+ </identity-stores>
+ </stores>
+</jboss-identity>
\ No newline at end of file
Added: idm/trunk/example/maven2/src/test/resources/example-mixed-config.xml
===================================================================
--- idm/trunk/example/maven2/src/test/resources/example-mixed-config.xml (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/example-mixed-config.xml 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,337 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<jboss-identity xmlns="urn:jboss:identity:idm:config:v1_0_alpha"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="urn:jboss:identity:idm:config:v1_0_alpha identity-config.xsd">
+ <realms>
+ <realm>
+ <id>realm://JBossIdentityExample/SampleRealm</id>
+ <repository-id-ref>Sample Repository</repository-id-ref>
+ <identity-type-mappings>
+ <identity-mapping>IDENTITY</identity-mapping>
+ </identity-type-mappings>
+ </realm>
+ </realms>
+ <repositories>
+ <repository>
+ <id>Sample Repository</id>
+ <class>org.jboss.identity.idm.impl.repository.WrapperIdentityStoreRepository</class>
+ <external-config/>
+ <default-identity-store-id>Sample DB Store</default-identity-store-id>
+ <default-attribute-store-id>Sample DB Store</default-attribute-store-id>
+ <identity-store-mappings>
+ <identity-store-mapping>
+ <identity-store-id>Sample DB Store</identity-store-id>
+ <identity-object-types>
+ <identity-object-type>ORGANIZATION</identity-object-type>
+ <identity-object-type>GROUP</identity-object-type>
+ </identity-object-types>
+ <options/>
+ </identity-store-mapping>
+ <identity-store-mapping>
+ <identity-store-id>Sample LDAP Store</identity-store-id>
+ <identity-object-types>
+ <identity-object-type>IDENTITY</identity-object-type>
+ </identity-object-types>
+ <options/>
+ </identity-store-mapping>
+ </identity-store-mappings>
+ <options>
+ <option>
+ <name>allowNotDefinedAttributes</name>
+ <value>true</value>
+ </option>
+ </options>
+ </repository>
+ </repositories>
+ <stores>
+ <attribute-stores/>
+ <identity-stores>
+ <identity-store>
+ <id>Sample DB Store</id>
+ <class>org.jboss.identity.idm.impl.store.hibernate.HibernateIdentityStoreImpl</class>
+ <external-config/>
+ <supported-relationship-types>
+ <relationship-type>JBOSS_IDENTITY_MEMBERSHIP</relationship-type>
+ <relationship-type>JBOSS_IDENTITY_ROLE</relationship-type>
+ </supported-relationship-types>
+ <supported-identity-object-types>
+ <identity-object-type>
+ <name>IDENTITY</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_ROLE</relationship-type-ref>
+ <identity-object-type-ref>ORGANIZATION</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_ROLE</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials>
+ <credential-type>PASSWORD</credential-type>
+ </credentials>
+ <attributes>
+ <attribute>
+ <name>picture</name>
+ <mapping>user.picture</mapping>
+ <type>binary</type>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
+ </attribute>
+ </attributes>
+ <options/>
+ </identity-object-type>
+ <identity-object-type>
+ <name>ORGANIZATION</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>IDENTITY</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials/>
+ <attributes/>
+ <options/>
+ </identity-object-type>
+ <identity-object-type>
+ <name>GROUP</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>IDENTITY</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials/>
+ <attributes/>
+ <options/>
+ </identity-object-type>
+ </supported-identity-object-types>
+ <options>
+ <option>
+ <name>persistenceUnit</name>
+ <value>sample-persistence-unit</value>
+ </option>
+ <option>
+ <name>populateRelationshipTypes</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>populateIdentityObjectTypes</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>allowNotDefinedAttributes</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>isRealmAware</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>allowNotDefinedAttributes</name>
+ <value>true</value>
+ </option>
+ </options>
+ </identity-store>
+ <identity-store>
+ <id>Sample LDAP Store</id>
+ <class>org.jboss.identity.idm.impl.store.ldap.LDAPIdentityStoreImpl</class>
+ <external-config/>
+ <supported-relationship-types>
+ <relationship-type>JBOSS_IDENTITY_MEMBERSHIP</relationship-type>
+ </supported-relationship-types>
+ <supported-identity-object-types>
+ <identity-object-type>
+ <name>IDENTITY</name>
+ <relationships/>
+ <credentials>
+ <credential-type>PASSWORD</credential-type>
+ </credentials>
+ <attributes>
+ <attribute>
+ <name>phone</name>
+ <mapping>telephoneNumber</mapping>
+ <type>text</type>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
+ </attribute>
+ <attribute>
+ <name>description</name>
+ <mapping>description</mapping>
+ <type>text</type>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
+ </attribute>
+ <attribute>
+ <name>carLicense</name>
+ <mapping>carLicense</mapping>
+ <type>text</type>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
+ </attribute>
+ </attributes>
+ <options>
+ <option>
+ <name>idAttributeName</name>
+ <value>uid</value>
+ </option>
+ <option>
+ <name>passwordAttributeName</name>
+ <value>password</value>
+ </option>
+ <option>
+ <name>ctxDNs</name>
+ <value>ou=People,o=test,dc=example,dc=com</value>
+ </option>
+ <option>
+ <name>allowCreateEntry</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>createEntryAttributeValues</name>
+ <value>objectClass=top</value>
+ <value>objectClass=inetOrgPerson</value>
+ <value>sn= </value>
+ <value>cn= </value>
+ </option>
+ </options>
+ </identity-object-type>
+ <identity-object-type>
+ <name>ORGANIZATION</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>IDENTITY</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>ORGANIZATION</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials/>
+ <attributes/>
+ <options>
+ <option>
+ <name>idAttributeName</name>
+ <value>cn</value>
+ </option>
+ <option>
+ <name>ctxDNs</name>
+ <value>ou=Organizations,o=test,dc=example,dc=com</value>
+ </option>
+ <!--<option>-->
+ <!--<name>entrySearchFilter</name>-->
+ <!--<value></value>-->
+ <!--</option>-->
+ <option>
+ <name>allowCreateEntry</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>membershipAttributeName</name>
+ <value>member</value>
+ </option>
+ <option>
+ <name>isMembershipAttributeDN</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>allowEmptyMemberships</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>createEntryAttributeValues</name>
+ <value>objectClass=top</value>
+ <value>objectClass=groupOfNames</value>
+ </option>
+ </options>
+ </identity-object-type>
+ <identity-object-type>
+ <name>GROUP</name>
+ <relationships>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>IDENTITY</identity-object-type-ref>
+ </relationship>
+ <relationship>
+ <relationship-type-ref>JBOSS_IDENTITY_MEMBERSHIP</relationship-type-ref>
+ <identity-object-type-ref>GROUP</identity-object-type-ref>
+ </relationship>
+ </relationships>
+ <credentials/>
+ <attributes/>
+ <options>
+ <option>
+ <name>idAttributeName</name>
+ <value>cn</value>
+ </option>
+ <option>
+ <name>ctxDNs</name>
+ <value>ou=Groups,o=test,dc=example,dc=com</value>
+ </option>
+ <!--<option>-->
+ <!--<name>entrySearchFilter</name>-->
+ <!--<value></value>-->
+ <!--</option>-->
+ <option>
+ <name>allowCreateEntry</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>membershipAttributeName</name>
+ <value>member</value>
+ </option>
+ <option>
+ <name>isMembershipAttributeDN</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>allowEmptyMemberships</name>
+ <value>true</value>
+ </option>
+ <option>
+ <name>createEntryAttributeValues</name>
+ <value>objectClass=top</value>
+ <value>objectClass=groupOfNames</value>
+ </option>
+ </options>
+ </identity-object-type>
+ </supported-identity-object-types>
+ <options>
+ <option>
+ <name>providerURL</name>
+ <value>ldap://localhost:10389</value>
+ </option>
+ <option>
+ <name>adminDN</name>
+ <value>cn=Directory Manager</value>
+ </option>
+ <option>
+ <name>adminPassword</name>
+ <value>password</value>
+ </option>
+ <option>
+ <name>searchTimeLimit</name>
+ <value>10000</value>
+ </option>
+ </options>
+ </identity-store>
+ </identity-stores>
+ </stores>
+</jboss-identity>
\ No newline at end of file
Added: idm/trunk/example/maven2/src/test/resources/identity-config.xsd
===================================================================
--- idm/trunk/example/maven2/src/test/resources/identity-config.xsd (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/identity-config.xsd 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,208 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="urn:jboss:identity:idm:config:v1_0_alpha" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+ <xs:element name="jboss-identity" type="urn:jboss-identityType" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha">
+ <xs:annotation>
+ <xs:documentation><xs:schemaattributeFormDefault="unqualified"elementFormDefault="qualified"xmlns:xs="http://www.w3.org/2001/XMLSchema"targetNamespace="urn:jboss:identity:idm:config:v1_0_alpha"xmlns="urn:jboss:identity:idm:config:v1_0_alpha"xmlns:xml="http://www.w3.org/XML/1998/namespace"xmlns:wcc="urn:jboss:identity:idm:config:v1_0_alpha"></xs:documentation>
+ </xs:annotation>
+ </xs:element>
+ <xs:complexType name="identity-object-typesType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="identity-object-type" maxOccurs="unbounded" minOccurs="0"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="repositoryType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="id"/>
+ <xs:element type="xs:string" name="class"/>
+ <xs:element type="urn:external-configType" name="external-config" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ <xs:element type="xs:string" name="default-identity-store-id" minOccurs="0"/>
+ <xs:element type="xs:string" name="default-attribute-store-id" minOccurs="0"/>
+ <xs:element type="urn:identity-store-mappingsType" name="identity-store-mappings" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ <xs:element type="urn:optionsType" name="options" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="identity-storeType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="id"/>
+ <xs:element type="xs:string" name="class"/>
+ <xs:element type="urn:external-configType" name="external-config" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ <xs:element type="urn:supported-relationship-typesType" name="supported-relationship-types" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ <xs:element type="urn:supported-identity-object-typesType" name="supported-identity-object-types" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ <xs:element name="options">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element type="urn:optionType" name="option" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="external-configType">
+ <xs:simpleContent>
+ <xs:extension base="xs:string">
+ <xs:attribute type="xs:string" name="override" use="optional"/>
+ </xs:extension>
+ </xs:simpleContent>
+ </xs:complexType>
+ <xs:complexType name="identity-store-mappingsType">
+ <xs:sequence>
+ <xs:element type="urn:identity-store-mappingType" name="identity-store-mapping" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="storesType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="attribute-stores"/>
+ <xs:element type="urn:identity-storesType" name="identity-stores" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="jboss-identityType">
+ <xs:sequence>
+ <xs:element type="urn:realmsType" name="realms" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ <xs:element type="urn:repositoriesType" name="repositories" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ <xs:element type="urn:storesType" name="stores" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="supported-identity-object-typesType">
+ <xs:sequence>
+ <xs:element type="urn:identity-object-typeType" name="identity-object-type" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="optionType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="name"/>
+ <xs:element type="xs:string" name="value" maxOccurs="unbounded" minOccurs="0"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="group-type-mappingType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="group-type-name"/>
+ <xs:element type="xs:string" name="identity-object-type-name"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="credentialsType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="credential-type" maxOccurs="unbounded" minOccurs="0"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="repositoriesType">
+ <xs:sequence>
+ <xs:element type="urn:repositoryType" name="repository" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="realmType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="id"/>
+ <xs:element type="xs:string" name="repository-id-ref"/>
+ <xs:element type="urn:identity-type-mappingsType" name="identity-type-mappings" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ <xs:element type="urn:optionsType" name="options" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="relationshipsType">
+ <xs:sequence>
+ <xs:element type="urn:relationshipType" name="relationship" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="realmsType">
+ <xs:sequence>
+ <xs:element type="urn:realmType" name="realm" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="identity-type-mappingsType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="identity-mapping"/>
+ <xs:element type="urn:group-type-mappingType" name="group-type-mapping" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="supported-relationship-typesType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="relationship-type" maxOccurs="unbounded" minOccurs="0"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="identity-storesType">
+ <xs:sequence>
+ <xs:element type="urn:identity-storeType" name="identity-store" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="attributesType">
+ <xs:sequence>
+ <xs:element type="urn:attributeType" name="attribute" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="identity-store-mappingType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="identity-store-id"/>
+ <xs:element type="urn:identity-object-typesType" name="identity-object-types" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ <xs:element type="urn:optionsType" name="options" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="relationshipType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="relationship-type-ref"/>
+ <xs:element type="xs:string" name="identity-object-type-ref"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="optionsType">
+ <xs:sequence>
+ <xs:element type="urn:optionType" name="option" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="identity-object-typeType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="name"/>
+ <xs:element name="relationships">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element type="urn:relationshipType" name="relationship" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="credentials">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element type="xs:string" name="credential-type" maxOccurs="unbounded" minOccurs="0"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="attributes">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element type="urn:attributeType" name="attribute" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="options">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element type="urn:optionType" name="option" maxOccurs="unbounded" minOccurs="0" xmlns:urn="urn:jboss:identity:idm:config:v1_0_alpha"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="attributeType">
+ <xs:sequence>
+ <xs:element type="xs:string" name="name"/>
+ <xs:element type="xs:string" name="mapping"/>
+ <xs:element type="xs:string" name="type"/>
+ <xs:element name="isRequired">
+ <xs:simpleType>
+ <xs:restriction base="xs:string">
+ <xs:enumeration value=""/>
+ <xs:enumeration value="true"/>
+ <xs:enumeration value="false"/>
+ </xs:restriction>
+ </xs:simpleType>
+ </xs:element>
+ <xs:element name="isMultivalued">
+ <xs:simpleType>
+ <xs:restriction base="xs:string">
+ <xs:enumeration value=""/>
+ <xs:enumeration value="true"/>
+ <xs:enumeration value="false"/>
+ </xs:restriction>
+ </xs:simpleType>
+ </xs:element>
+ <xs:element type="xs:string" name="isReadOnly" minOccurs="0"/>
+ </xs:sequence>
+ </xs:complexType>
+</xs:schema>
\ No newline at end of file
Added: idm/trunk/example/maven2/src/test/resources/ldap/initial-empty-opends.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/ldap/initial-empty-opends.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/ldap/initial-empty-opends.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,22 @@
+dn: o=test,dc=example,dc=com
+objectclass: top
+objectclass: organization
+o: test
+
+dn: ou=People,o=test,dc=example,dc=com
+objectclass: top
+objectclass: organizationalUnit
+ou: People
+
+dn: ou=Groups,o=test,dc=example,dc=com
+objectclass: top
+objectclass: organizationalUnit
+ou: Groups
+
+dn: ou=Organizations,o=test,dc=example,dc=com
+objectclass: top
+objectclass: organizationalUnit
+ou: Organizations
+
+
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/admin-backend.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/admin-backend.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/admin-backend.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,32 @@
+dn: cn=admin data
+objectClass: ds-cfg-branch
+objectClass: top
+cn: admin data
+
+dn: cn=instance keys,cn=admin data
+objectClass: ds-cfg-branch
+objectClass: top
+cn: instance keys
+
+dn: cn=secret keys,cn=admin data
+objectClass: ds-cfg-branch
+objectClass: top
+cn: secret keys
+
+dn: cn=Administrators,cn=admin data
+objectClass: top
+objectClass: groupofurls
+memberURL: ldap:///cn=Administrators,cn=admin data??one?(objectclass=*)
+description: Group of identities which have full access.
+cn: Administrators
+
+dn: cn=Server Groups,cn=admin data
+objectClass: ds-cfg-branch
+objectClass: top
+cn: Server Groups
+
+dn: cn=all-servers,cn=Server Groups,cn=admin data
+objectClass: groupOfUniqueNames
+objectClass: top
+cn: all-servers
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/config.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/config.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/config.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,2206 @@
+# This file contains the primary Directory Server configuration. It must not
+# be directly edited while the server is online. The server configuration
+# should only be managed using the administration utilities provided with the
+# Directory Server
+dn: cn=config
+objectClass: top
+objectClass: ds-cfg-root-config
+ds-cfg-reject-unauthenticated-requests: false
+ds-cfg-single-structural-objectclass-behavior: reject
+ds-cfg-add-missing-rdn-attributes: true
+ds-cfg-allowed-task: org.opends.server.tasks.AddSchemaFileTask
+ds-cfg-allowed-task: org.opends.server.tasks.BackupTask
+ds-cfg-allowed-task: org.opends.server.tasks.DisconnectClientTask
+ds-cfg-allowed-task: org.opends.server.tasks.EnterLockdownModeTask
+ds-cfg-allowed-task: org.opends.server.tasks.ExportTask
+ds-cfg-allowed-task: org.opends.server.tasks.ImportTask
+ds-cfg-allowed-task: org.opends.server.tasks.InitializeTargetTask
+ds-cfg-allowed-task: org.opends.server.tasks.InitializeTask
+ds-cfg-allowed-task: org.opends.server.tasks.SetGenerationIdTask
+ds-cfg-allowed-task: org.opends.server.tasks.LeaveLockdownModeTask
+ds-cfg-allowed-task: org.opends.server.tasks.RebuildTask
+ds-cfg-allowed-task: org.opends.server.tasks.RestoreTask
+ds-cfg-allowed-task: org.opends.server.tasks.ShutdownTask
+ds-cfg-writability-mode: enabled
+ds-cfg-check-schema: true
+ds-cfg-save-config-on-successful-startup: true
+ds-cfg-idle-time-limit: 0 seconds
+ds-cfg-time-limit: 60 seconds
+ds-cfg-entry-cache-preload: false
+ds-cfg-return-bind-error-messages: false
+ds-cfg-bind-with-dn-requires-password: true
+ds-cfg-default-password-policy: cn=Default Password Policy,cn=Password Policies,cn=config
+ds-cfg-proxied-authorization-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+ds-cfg-max-allowed-client-connections: 0
+ds-cfg-invalid-attribute-syntax-behavior: reject
+ds-cfg-size-limit: 1000
+ds-cfg-etime-resolution: milliseconds
+cn: config
+ds-cfg-allow-attribute-name-exceptions: false
+ds-cfg-lookthrough-limit: 5000
+ds-cfg-notify-abandoned-operations: false
+
+dn: cn=Access Control Handler,cn=config
+objectClass: ds-cfg-dsee-compat-access-control-handler
+objectClass: ds-cfg-access-control-handler
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.authorization.dseecompat.AciHandler
+ds-cfg-global-aci: (extop="1.3.6.1.4.1.26027.1.6.1 || 1.3.6.1.4.1.26027.1.6.3 || 1.3.6.1.4.1.4203.1.11.1 || 1.3.6.1.4.1.1466.20037 || 1.3.6.1.4.1.4203.1.11.3") (version 3.0; acl "Anonymous extended operation access"; allow(read) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (targetcontrol="2.16.840.1.113730.3.4.2 || 2.16.840.1.113730.3.4.17 || 2.16.840.1.113730.3.4.19 || 1.3.6.1.4.1.4203.1.10.2 || 1.3.6.1.4.1.42.2.27.8.5.1 || 2.16.840.1.113730.3.4.16") (version 3.0; acl "Anonymous control access"; allow(read) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (targetattr!="userPassword||authPassword")(version 3.0; acl "Anonymous read access"; allow (read,search,compare) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (targetattr="*")(version 3.0; acl "Self entry modification"; allow (write) userdn="ldap:///self";)
+ds-cfg-global-aci: (target="ldap:///cn=schema")(targetscope="base")(targetattr="objectClass||attributeTypes||dITContentRules||dITStructureRules||ldapSyntaxes||matchingRules||matchingRuleUse||nameForms||objectClasses")(version 3.0; acl "User-Visible Schema Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (target="ldap:///")(targetscope="base")(targetattr="objectClass||namingContexts||supportedAuthPasswordSchemes||supportedControl||supportedExtension||supportedFeatures||supportedLDAPVersion||supportedSASLMechanisms||vendorName||vendorVersion")(version 3.0; acl "User-Visible Root DSE Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (targetattr="createTimestamp||creatorsName||modifiersName||modifyTimestamp||entryDN||entryUUID||subschemaSubentry")(version 3.0; acl "User-Visible Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (target="ldap:///dc=replicationchanges")(targetattr="*")(version 3.0; acl "Replication backend access"; deny (all) userdn="ldap:///anyone";)
+cn: Access Control Handler
+
+dn: cn=Account Status Notification Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Account Status Notification Handlers
+
+dn: cn=Error Log Handler,cn=Account Status Notification Handlers,cn=config
+objectClass: ds-cfg-error-log-account-status-notification-handler
+objectClass: top
+objectClass: ds-cfg-account-status-notification-handler
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.ErrorLogAccountStatusNotificationHandler
+cn: Error Log Handler
+ds-cfg-account-status-notification-type: account-temporarily-locked
+ds-cfg-account-status-notification-type: account-permanently-locked
+ds-cfg-account-status-notification-type: account-unlocked
+ds-cfg-account-status-notification-type: account-idle-locked
+ds-cfg-account-status-notification-type: account-reset-locked
+ds-cfg-account-status-notification-type: account-disabled
+ds-cfg-account-status-notification-type: account-enabled
+ds-cfg-account-status-notification-type: account-expired
+ds-cfg-account-status-notification-type: password-expired
+ds-cfg-account-status-notification-type: password-expiring
+ds-cfg-account-status-notification-type: password-reset
+ds-cfg-account-status-notification-type: password-changed
+
+dn: cn=SMTP Handler,cn=Account Status Notification Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-smtp-account-status-notification-handler
+objectClass: ds-cfg-account-status-notification-handler
+ds-cfg-sender-address: opends-notifications(a)example.com
+ds-cfg-send-message-without-end-user-address: false
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.extensions.SMTPAccountStatusNotificationHandler
+ds-cfg-email-address-attribute-type: mail
+ds-cfg-message-template-file: account-temporarily-locked:config/messages/account-temporarily-locked.template
+ds-cfg-message-template-file: account-permanently-locked:config/messages/account-permanently-locked.template
+ds-cfg-message-template-file: account-unlocked:config/messages/account-unlocked.template
+ds-cfg-message-template-file: account-idle-locked:config/messages/account-idle-locked.template
+ds-cfg-message-template-file: account-reset-locked:config/messages/account-reset-locked.template
+ds-cfg-message-template-file: account-disabled:config/messages/account-disabled.template
+ds-cfg-message-template-file: account-enabled:config/messages/account-enabled.template
+ds-cfg-message-template-file: account-expired:config/messages/account-expired.template
+ds-cfg-message-template-file: password-expired:config/messages/password-expired.template
+ds-cfg-message-template-file: password-expiring:config/messages/password-expiring.template
+ds-cfg-message-template-file: password-reset:config/messages/password-reset.template
+ds-cfg-message-template-file: password-changed:config/messages/password-changed.template
+cn: SMTP Handler
+ds-cfg-message-subject: account-temporarily-locked:Your directory account has been locked
+ds-cfg-message-subject: account-permanently-locked:Your directory account has been locked
+ds-cfg-message-subject: account-unlocked:Your directory account has been unlocked
+ds-cfg-message-subject: account-idle-locked:Your directory account has been locked
+ds-cfg-message-subject: account-reset-locked:Your directory account has been locked
+ds-cfg-message-subject: account-disabled:Your directory account has been disabled
+ds-cfg-message-subject: account-enabled:Your directory account has been re-enabled
+ds-cfg-message-subject: account-expired:Your directory account has expired
+ds-cfg-message-subject: password-expired:Your directory password has expired
+ds-cfg-message-subject: password-expiring:Your directory password is going to expire
+ds-cfg-message-subject: password-reset:Your directory password has been reset
+ds-cfg-message-subject: password-changed:Your directory password has been changed
+
+dn: cn=Alert Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Alert Handlers
+
+dn: cn=JMX Alert Handler,cn=Alert Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-jmx-alert-handler
+objectClass: ds-cfg-alert-handler
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.extensions.JMXAlertHandler
+cn: JMX Alert Handler
+
+dn: cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Backends
+
+dn: ds-cfg-backend-id=adminRoot,cn=Backends,cn=config
+objectClass: ds-cfg-ldif-backend
+objectClass: top
+objectClass: ds-cfg-backend
+ds-cfg-is-private-backend: true
+ds-cfg-backend-id: adminRoot
+ds-cfg-base-dn: cn=admin data
+ds-cfg-enabled: true
+ds-cfg-writability-mode: enabled
+ds-cfg-ldif-file: config/admin-backend.ldif
+ds-cfg-java-class: org.opends.server.backends.LDIFBackend
+
+dn: ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config
+objectClass: ds-cfg-trust-store-backend
+objectClass: top
+objectClass: ds-cfg-backend
+ds-cfg-trust-store-file: config/ads-truststore
+ds-cfg-backend-id: ads-truststore
+ds-cfg-trust-store-pin-file: config/ads-truststore.pin
+ds-cfg-base-dn: cn=ads-truststore
+ds-cfg-enabled: true
+ds-cfg-writability-mode: enabled
+ds-cfg-trust-store-type: JKS
+ds-cfg-java-class: org.opends.server.backends.TrustStoreBackend
+
+dn: ds-cfg-backend-id=backup,cn=Backends,cn=config
+objectClass: ds-cfg-backup-backend
+objectClass: top
+objectClass: ds-cfg-backend
+ds-cfg-backend-id: backup
+ds-cfg-base-dn: cn=backups
+ds-cfg-enabled: true
+ds-cfg-backup-directory: bak
+ds-cfg-writability-mode: disabled
+ds-cfg-java-class: org.opends.server.backends.BackupBackend
+
+dn: ds-cfg-backend-id=config,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-backend
+objectClass: ds-cfg-config-file-handler-backend
+ds-cfg-backend-id: config
+ds-cfg-base-dn: cn=config
+ds-cfg-enabled: true
+ds-cfg-writability-mode: enabled
+ds-cfg-java-class: org.opends.server.extensions.ConfigFileHandler
+
+dn: ds-cfg-backend-id=monitor,cn=Backends,cn=config
+objectClass: ds-cfg-monitor-backend
+objectClass: top
+objectClass: ds-cfg-backend
+ds-cfg-backend-id: monitor
+ds-cfg-base-dn: cn=monitor
+ds-cfg-enabled: true
+ds-cfg-writability-mode: disabled
+ds-cfg-java-class: org.opends.server.backends.MonitorBackend
+
+dn: ds-cfg-backend-id=schema,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-schema-backend
+objectClass: ds-cfg-backend
+ds-cfg-backend-id: schema
+ds-cfg-base-dn: cn=schema
+ds-cfg-enabled: true
+ds-cfg-writability-mode: enabled
+ds-cfg-java-class: org.opends.server.backends.SchemaBackend
+ds-cfg-show-all-attributes: false
+
+dn: ds-cfg-backend-id=tasks,cn=Backends,cn=config
+objectClass: ds-cfg-task-backend
+objectClass: top
+objectClass: ds-cfg-backend
+ds-cfg-task-retention-time: 24 hours
+ds-cfg-backend-id: tasks
+ds-cfg-base-dn: cn=tasks
+ds-cfg-enabled: true
+ds-cfg-writability-mode: enabled
+ds-cfg-task-backing-file: config/tasks.ldif
+ds-cfg-java-class: org.opends.server.backends.task.TaskBackend
+
+dn: ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-backend
+objectClass: top
+objectClass: ds-cfg-backend
+ds-cfg-entries-compressed: false
+ds-cfg-import-thread-count: 8
+ds-cfg-db-logging-file-handler-on: true
+ds-cfg-db-num-cleaner-threads: 1
+ds-cfg-backend-id: userRoot
+ds-cfg-db-cache-percent: 10
+ds-cfg-writability-mode: enabled
+ds-cfg-db-checkpointer-bytes-interval: 20 megabytes
+ds-cfg-db-checkpointer-wakeup-interval: 30 seconds
+ds-cfg-preload-time-limit: 0 seconds
+ds-cfg-base-dn: dc=example,dc=com
+ds-cfg-enabled: true
+ds-cfg-db-cache-size: 0 megabytes
+ds-cfg-db-run-cleaner: true
+ds-cfg-db-num-lock-tables: 19
+ds-cfg-db-cleaner-min-utilization: 75
+ds-cfg-import-queue-size: 100
+ds-cfg-db-txn-no-sync: false
+ds-cfg-db-logging-level: CONFIG
+ds-cfg-db-log-file-max: 50 megabytes
+ds-cfg-compact-encoding: true
+ds-cfg-java-class: org.opends.server.backends.jeb.BackendImpl
+ds-cfg-db-evictor-nodes-per-scan: 10
+ds-cfg-index-entry-limit: 4000
+ds-cfg-db-directory: db
+ds-cfg-db-directory-permissions: 700
+ds-cfg-db-txn-write-no-sync: true
+ds-cfg-db-evictor-lru-only: true
+
+dn: cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Index
+
+dn: ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: aci
+ds-cfg-index-type: presence
+
+dn: ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: cn
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: ds-sync-hist
+ds-cfg-index-type: ordering
+
+dn: ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: entryUUID
+ds-cfg-index-type: equality
+
+dn: ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: givenName
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: mail
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: member
+ds-cfg-index-type: equality
+
+dn: ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: objectClass
+ds-cfg-index-type: equality
+
+dn: ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: sn
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: telephoneNumber
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: uid
+ds-cfg-index-type: equality
+
+dn: ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: ds-cfg-local-db-index
+objectClass: top
+ds-cfg-attribute: uniqueMember
+ds-cfg-index-type: equality
+
+dn: cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: VLV Index
+
+dn: cn=Certificate Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Certificate Mappers
+
+dn: cn=Fingerprint Mapper,cn=Certificate Mappers,cn=config
+objectClass: ds-cfg-certificate-mapper
+objectClass: top
+objectClass: ds-cfg-fingerprint-certificate-mapper
+ds-cfg-fingerprint-algorithm: MD5
+ds-cfg-fingerprint-attribute: ds-certificate-fingerprint
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.FingerprintCertificateMapper
+cn: Fingerprint Mapper
+
+dn: cn=Subject Attribute to User Attribute,cn=Certificate Mappers,cn=config
+objectClass: ds-cfg-subject-attribute-to-user-attribute-certificate-mapper
+objectClass: ds-cfg-certificate-mapper
+objectClass: top
+ds-cfg-subject-attribute-mapping: cn:cn
+ds-cfg-subject-attribute-mapping: e:mail
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SubjectAttributeToUserAttributeCertificateMapper
+cn: Subject Attribute to User Attribute
+
+dn: cn=Subject DN to User Attribute,cn=Certificate Mappers,cn=config
+objectClass: ds-cfg-certificate-mapper
+objectClass: top
+objectClass: ds-cfg-subject-dn-to-user-attribute-certificate-mapper
+ds-cfg-subject-attribute: ds-certificate-subject-dn
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SubjectDNToUserAttributeCertificateMapper
+cn: Subject DN to User Attribute
+
+dn: cn=Subject Equals DN,cn=Certificate Mappers,cn=config
+objectClass: ds-cfg-certificate-mapper
+objectClass: top
+objectClass: ds-cfg-subject-equals-dn-certificate-mapper
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SubjectEqualsDNCertificateMapper
+cn: Subject Equals DN
+
+dn: cn=Connection Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Connection Handlers
+
+dn: cn=JMX Connection Handler,cn=Connection Handlers,cn=config
+objectClass: ds-cfg-jmx-connection-handler
+objectClass: top
+objectClass: ds-cfg-connection-handler
+ds-cfg-listen-port: 1689
+ds-cfg-enabled: false
+ds-cfg-use-ssl: false
+ds-cfg-ssl-cert-nickname: server-cert
+ds-cfg-java-class: org.opends.server.protocols.jmx.JmxConnectionHandler
+cn: JMX Connection Handler
+
+dn: cn=LDAP Connection Handler,cn=Connection Handlers,cn=config
+objectClass: ds-cfg-ldap-connection-handler
+objectClass: top
+objectClass: ds-cfg-connection-handler
+ds-cfg-ssl-client-auth-policy: optional
+ds-cfg-allow-ldap-v2: true
+ds-cfg-allow-start-tls: false
+ds-cfg-use-tcp-keep-alive: true
+ds-cfg-max-request-size: 5 megabytes
+ds-cfg-use-tcp-no-delay: true
+ds-cfg-use-ssl: false
+ds-cfg-num-request-handlers: 2
+ds-cfg-ssl-cert-nickname: server-cert
+ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler
+ds-cfg-max-blocked-write-time-limit: 2 minutes
+ds-cfg-listen-address: 0.0.0.0
+ds-cfg-enabled: true
+ds-cfg-listen-port: 10389
+ds-cfg-send-rejection-notice: true
+ds-cfg-keep-stats: true
+ds-cfg-allow-tcp-reuse-address: true
+cn: LDAP Connection Handler
+ds-cfg-accept-backlog: 128
+
+dn: cn=LDAPS Connection Handler,cn=Connection Handlers,cn=config
+objectClass: ds-cfg-ldap-connection-handler
+objectClass: top
+objectClass: ds-cfg-connection-handler
+ds-cfg-key-manager-provider: cn=JKS,cn=Key Manager Providers,cn=config
+ds-cfg-ssl-client-auth-policy: optional
+ds-cfg-allow-ldap-v2: true
+ds-cfg-allow-start-tls: false
+ds-cfg-use-tcp-keep-alive: true
+ds-cfg-max-request-size: 5 megabytes
+ds-cfg-use-tcp-no-delay: true
+ds-cfg-trust-manager-provider: cn=JKS,cn=Trust Manager Providers,cn=config
+ds-cfg-use-ssl: true
+ds-cfg-num-request-handlers: 2
+ds-cfg-ssl-cert-nickname: server-cert
+ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler
+ds-cfg-max-blocked-write-time-limit: 2 minutes
+ds-cfg-listen-address: 0.0.0.0
+ds-cfg-enabled: true
+ds-cfg-listen-port: 1636
+ds-cfg-send-rejection-notice: true
+ds-cfg-keep-stats: true
+ds-cfg-allow-tcp-reuse-address: true
+cn: LDAPS Connection Handler
+ds-cfg-accept-backlog: 128
+
+dn: cn=LDIF Connection Handler,cn=Connection Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-ldif-connection-handler
+objectClass: ds-cfg-connection-handler
+ds-cfg-poll-interval: 5 seconds
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.protocols.LDIFConnectionHandler
+ds-cfg-ldif-directory: config/auto-process-ldif
+cn: LDIF Connection Handler
+
+#dn: cn=SNMP Connection Handler,cn=Connection Handlers,cn=config
+#objectClass: top
+#objectClass: ds-cfg-snmp-connection-handler
+#objectClass: ds-cfg-connection-handler
+#ds-cfg-listen-port: 161
+#ds-cfg-enabled: false
+#ds-cfg-trap-port: 162
+#ds-cfg-java-class: org.opends.server.snmp.SNMPConnectionHandler
+#cn: SNMP Connection Handler
+
+dn: cn=Crypto Manager,cn=config
+objectClass: top
+objectClass: ds-cfg-crypto-manager
+ds-cfg-ssl-encryption: false
+ds-cfg-ssl-cert-nickname: ads-certificate
+cn: Crypto Manager
+
+dn: cn=Entry Caches,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Entry Caches
+
+dn: cn=FIFO,cn=Entry Caches,cn=config
+objectClass: ds-cfg-fifo-entry-cache
+objectClass: top
+objectClass: ds-cfg-entry-cache
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.extensions.FIFOEntryCache
+ds-cfg-cache-level: 1
+cn: FIFO
+
+dn: cn=File System,cn=Entry Caches,cn=config
+objectClass: top
+objectClass: ds-cfg-entry-cache
+objectClass: ds-cfg-file-system-entry-cache
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.extensions.FileSystemEntryCache
+ds-cfg-cache-level: 3
+cn: File System
+
+dn: cn=Soft Reference,cn=Entry Caches,cn=config
+objectClass: top
+objectClass: ds-cfg-entry-cache
+objectClass: ds-cfg-soft-reference-entry-cache
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.extensions.SoftReferenceEntryCache
+ds-cfg-cache-level: 2
+cn: Soft Reference
+
+dn: cn=Extended Operations,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Extended Operations
+
+dn: cn=Cancel,cn=Extended Operations,cn=config
+objectClass: ds-cfg-extended-operation-handler
+objectClass: top
+objectClass: ds-cfg-cancel-extended-operation-handler
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.CancelExtendedOperation
+cn: Cancel
+
+dn: cn=Get Connection ID,cn=Extended Operations,cn=config
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-get-connection-id-extended-operation-handler
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.GetConnectionIDExtendedOperation
+cn: Get Connection ID
+
+dn: cn=Get Symmetric Key,cn=Extended Operations,cn=config
+objectClass: ds-cfg-extended-operation-handler
+objectClass: top
+objectClass: ds-cfg-get-symmetric-key-extended-operation-handler
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.crypto.GetSymmetricKeyExtendedOperation
+cn: Get Symmetric Key
+
+dn: cn=Password Modify,cn=Extended Operations,cn=config
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-password-modify-extended-operation-handler
+objectClass: top
+ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.PasswordModifyExtendedOperation
+cn: Password Modify
+
+dn: cn=Password Policy State,cn=Extended Operations,cn=config
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-password-policy-state-extended-operation-handler
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.PasswordPolicyStateExtendedOperation
+cn: Password Policy State
+
+dn: cn=StartTLS,cn=Extended Operations,cn=config
+objectClass: ds-cfg-extended-operation-handler
+objectClass: top
+objectClass: ds-cfg-start-tls-extended-operation-handler
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.StartTLSExtendedOperation
+cn: StartTLS
+
+dn: cn=Who Am I,cn=Extended Operations,cn=config
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-who-am-i-extended-operation-handler
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.WhoAmIExtendedOperation
+cn: Who Am I
+
+dn: cn=Group Implementations,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Group Implementations
+
+dn: cn=Dynamic,cn=Group Implementations,cn=config
+objectClass: top
+objectClass: ds-cfg-dynamic-group-implementation
+objectClass: ds-cfg-group-implementation
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.DynamicGroup
+cn: Dynamic
+
+dn: cn=Static,cn=Group Implementations,cn=config
+objectClass: top
+objectClass: ds-cfg-group-implementation
+objectClass: ds-cfg-static-group-implementation
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.StaticGroup
+cn: Static
+
+dn: cn=Virtual Static,cn=Group Implementations,cn=config
+objectClass: ds-cfg-virtual-static-group-implementation
+objectClass: top
+objectClass: ds-cfg-group-implementation
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.VirtualStaticGroup
+cn: Virtual Static
+
+dn: cn=Identity Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Identity Mappers
+
+dn: cn=Exact Match,cn=Identity Mappers,cn=config
+objectClass: ds-cfg-identity-mapper
+objectClass: top
+objectClass: ds-cfg-exact-match-identity-mapper
+ds-cfg-match-attribute: uid
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.ExactMatchIdentityMapper
+cn: Exact Match
+
+dn: cn=Regular Expression,cn=Identity Mappers,cn=config
+objectClass: ds-cfg-regular-expression-identity-mapper
+objectClass: ds-cfg-identity-mapper
+objectClass: top
+ds-cfg-match-pattern: ^([^@]+)@.+$
+ds-cfg-match-attribute: uid
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.RegularExpressionIdentityMapper
+cn: Regular Expression
+ds-cfg-replace-pattern: $1
+
+dn: cn=Key Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Key Manager Providers
+
+dn: cn=JKS,cn=Key Manager Providers,cn=config
+objectClass: ds-cfg-file-based-key-manager-provider
+objectClass: top
+objectClass: ds-cfg-key-manager-provider
+ds-cfg-key-store-pin-file: config/keystore.pin
+ds-cfg-enabled: true
+ds-cfg-key-store-file: config/keystore
+ds-cfg-java-class: org.opends.server.extensions.FileBasedKeyManagerProvider
+ds-cfg-key-store-type: JKS
+cn: JKS
+
+dn: cn=PKCS11,cn=Key Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-key-manager-provider
+objectClass: ds-cfg-pkcs11-key-manager-provider
+ds-cfg-key-store-pin-file: config/keystore.pin
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.extensions.PKCS11KeyManagerProvider
+cn: PKCS11
+
+dn: cn=PKCS12,cn=Key Manager Providers,cn=config
+objectClass: ds-cfg-file-based-key-manager-provider
+objectClass: top
+objectClass: ds-cfg-key-manager-provider
+ds-cfg-key-store-pin-file: config/keystore.pin
+ds-cfg-enabled: false
+ds-cfg-key-store-file: config/keystore.p12
+ds-cfg-java-class: org.opends.server.extensions.FileBasedKeyManagerProvider
+ds-cfg-key-store-type: PKCS12
+cn: PKCS12
+
+dn: cn=Log Retention Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Log Retention Policies
+
+dn: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-file-count-log-retention-policy
+objectClass: ds-cfg-log-retention-policy
+ds-cfg-number-of-files: 10
+ds-cfg-java-class: org.opends.server.loggers.FileNumberRetentionPolicy
+cn: File Count Retention Policy
+
+dn: cn=Free Disk Space Retention Policy,cn=Log Retention Policies,cn=config
+objectClass: ds-cfg-free-disk-space-log-retention-policy
+objectClass: top
+objectClass: ds-cfg-log-retention-policy
+ds-cfg-java-class: org.opends.server.loggers.FreeDiskSpaceRetentionPolicy
+cn: Free Disk Space Retention Policy
+ds-cfg-free-disk-space: 500 megabytes
+
+dn: cn=Size Limit Retention Policy,cn=Log Retention Policies,cn=config
+objectClass: ds-cfg-size-limit-log-retention-policy
+objectClass: top
+objectClass: ds-cfg-log-retention-policy
+ds-cfg-disk-space-used: 500 megabytes
+ds-cfg-java-class: org.opends.server.loggers.SizeBasedRetentionPolicy
+cn: Size Limit Retention Policy
+
+dn: cn=Log Rotation Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Log Rotation Policies
+
+dn: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-log-rotation-policy
+objectClass: ds-cfg-time-limit-log-rotation-policy
+ds-cfg-rotation-interval: 24 hours
+ds-cfg-java-class: org.opends.server.loggers.TimeLimitRotationPolicy
+cn: Time Limit Rotation Policy
+
+dn: cn=7 Days Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-log-rotation-policy
+objectClass: ds-cfg-time-limit-log-rotation-policy
+ds-cfg-rotation-interval: 7 days
+ds-cfg-java-class: org.opends.server.loggers.TimeLimitRotationPolicy
+cn: Time Limit Rotation Policy
+
+dn: cn=Fixed Time Rotation Policy,cn=Log Rotation Policies,cn=config
+objectClass: ds-cfg-fixed-time-log-rotation-policy
+objectClass: top
+objectClass: ds-cfg-log-rotation-policy
+ds-cfg-java-class: org.opends.server.loggers.FixedTimeRotationPolicy
+cn: Fixed Time Rotation Policy
+ds-cfg-time-of-day: 2359
+
+dn: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+objectClass: ds-cfg-size-limit-log-rotation-policy
+objectClass: top
+objectClass: ds-cfg-log-rotation-policy
+ds-cfg-file-size-limit: 100 megabytes
+ds-cfg-java-class: org.opends.server.loggers.SizeBasedRotationPolicy
+cn: Size Limit Rotation Policy
+
+dn: cn=Loggers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Loggers
+
+dn: cn=File-Based Access Logger,cn=Loggers,cn=config
+objectClass: ds-cfg-access-log-publisher
+objectClass: top
+objectClass: ds-cfg-file-based-access-log-publisher
+objectClass: ds-cfg-log-publisher
+ds-cfg-log-file: logs/access
+ds-cfg-log-file-permissions: 640
+ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-suppress-internal-operations: true
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.loggers.TextAccessLogPublisher
+ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+ds-cfg-asynchronous: true
+cn: File-Based Access Logger
+ds-cfg-suppress-synchronization-operations: false
+
+dn: cn=File-Based Audit Logger,cn=Loggers,cn=config
+objectClass: ds-cfg-access-log-publisher
+objectClass: top
+objectClass: ds-cfg-file-based-access-log-publisher
+objectClass: ds-cfg-log-publisher
+ds-cfg-log-file: logs/audit
+ds-cfg-log-file-permissions: 640
+ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-suppress-internal-operations: true
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.loggers.TextAuditLogPublisher
+ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+ds-cfg-asynchronous: true
+cn: File-Based Audit Logger
+ds-cfg-suppress-synchronization-operations: false
+
+dn: cn=File-Based Debug Logger,cn=Loggers,cn=config
+objectClass: ds-cfg-file-based-debug-log-publisher
+objectClass: ds-cfg-debug-log-publisher
+objectClass: top
+objectClass: ds-cfg-log-publisher
+ds-cfg-log-file: logs/debug
+ds-cfg-log-file-permissions: 640
+ds-cfg-enabled: false
+ds-cfg-default-debug-level: error
+ds-cfg-java-class: org.opends.server.loggers.debug.TextDebugLogPublisher
+ds-cfg-asynchronous: false
+cn: File-Based Debug Logger
+
+dn: cn=File-Based Error Logger,cn=Loggers,cn=config
+objectClass: ds-cfg-file-based-error-log-publisher
+objectClass: top
+objectClass: ds-cfg-error-log-publisher
+objectClass: ds-cfg-log-publisher
+ds-cfg-log-file: logs/errors
+ds-cfg-log-file-permissions: 640
+ds-cfg-rotation-policy: cn=7 Days Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-enabled: true
+ds-cfg-default-severity: severe-warning
+ds-cfg-default-severity: severe-error
+ds-cfg-default-severity: fatal-error
+ds-cfg-default-severity: notice
+ds-cfg-java-class: org.opends.server.loggers.TextErrorLogPublisher
+ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+ds-cfg-asynchronous: false
+cn: File-Based Error Logger
+
+dn: cn=Replication Repair Logger,cn=Loggers,cn=config
+objectClass: ds-cfg-file-based-error-log-publisher
+objectClass: top
+objectClass: ds-cfg-error-log-publisher
+objectClass: ds-cfg-log-publisher
+ds-cfg-log-file: logs/replication
+ds-cfg-log-file-permissions: 640
+ds-cfg-rotation-policy: cn=7 Days Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-enabled: true
+ds-cfg-default-severity: none
+ds-cfg-override-severity: SYNC=INFO,MILD_ERROR,MILD_WARNING,NOTICE
+ds-cfg-java-class: org.opends.server.loggers.TextErrorLogPublisher
+ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+ds-cfg-asynchronous: false
+cn: Replication Repair Logger
+
+dn: cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Matching Rules
+
+dn: cn=Auth Password Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.AuthPasswordEqualityMatchingRule
+cn: Auth Password Equality Matching Rule
+
+dn: cn=Auth Password Exact Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.AuthPasswordExactEqualityMatchingRule
+cn: Auth Password Exact Equality Matching Rule
+
+dn: cn=Bit String Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.BitStringEqualityMatchingRule
+cn: Bit String Equality Matching Rule
+
+dn: cn=Boolean Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.BooleanEqualityMatchingRule
+cn: Boolean Equality Matching Rule
+
+dn: cn=Case Exact Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseExactEqualityMatchingRule
+cn: Case Exact Equality Matching Rule
+
+dn: cn=Case Exact IA5 Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseExactIA5EqualityMatchingRule
+cn: Case Exact IA5 Equality Matching Rule
+
+dn: cn=Case Exact IA5 Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-substring-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseExactIA5SubstringMatchingRule
+cn: Case Exact IA5 Substring Matching Rule
+
+dn: cn=Case Exact Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-ordering-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseExactOrderingMatchingRule
+cn: Case Exact Ordering Matching Rule
+
+dn: cn=Case Exact Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-substring-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseExactSubstringMatchingRule
+cn: Case Exact Substring Matching Rule
+
+dn: cn=Case Ignore Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreEqualityMatchingRule
+cn: Case Ignore Equality Matching Rule
+
+dn: cn=Case Ignore IA5 Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreIA5EqualityMatchingRule
+cn: Case Ignore IA5 Equality Matching Rule
+
+dn: cn=Case Ignore IA5 Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-substring-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreIA5SubstringMatchingRule
+cn: Case Ignore IA5 Substring Matching Rule
+
+dn: cn=Case Ignore List Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreListEqualityMatchingRule
+cn: Case Ignore List Equality Matching Rule
+
+dn: cn=Case Ignore List Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-substring-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreListSubstringMatchingRule
+cn: Case Ignore List Substring Matching Rule
+
+dn: cn=Case Ignore Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-ordering-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreOrderingMatchingRule
+cn: Case Ignore Ordering Matching Rule
+
+dn: cn=Case Ignore Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-substring-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreSubstringMatchingRule
+cn: Case Ignore Substring Matching Rule
+
+dn: cn=Directory String First Component Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.DirectoryStringFirstComponentEqualityMatchingRule
+cn: Directory String First Component Equality Matching Rule
+
+dn: cn=Distinguished Name Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.DistinguishedNameEqualityMatchingRule
+cn: Distinguished Name Equality Matching Rule
+
+dn: cn=Double Metaphone Approximate Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-approximate-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.DoubleMetaphoneApproximateMatchingRule
+cn: Double Metaphone Approximate Matching Rule
+
+dn: cn=Generalized Time Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.GeneralizedTimeEqualityMatchingRule
+cn: Generalized Time Equality Matching Rule
+
+dn: cn=Generalized Time Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-ordering-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.GeneralizedTimeOrderingMatchingRule
+cn: Generalized Time Ordering Matching Rule
+
+dn: cn=Historical CSN Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-ordering-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.replication.plugin.HistoricalCsnOrderingMatchingRule
+cn: Historical CSN Ordering Matching Rule
+
+dn: cn=Integer Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.IntegerEqualityMatchingRule
+cn: Integer Equality Matching Rule
+
+dn: cn=Integer First Component Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.IntegerFirstComponentEqualityMatchingRule
+cn: Integer First Component Equality Matching Rule
+
+dn: cn=Integer Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-ordering-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.IntegerOrderingMatchingRule
+cn: Integer Ordering Matching Rule
+
+dn: cn=Keyword Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.KeywordEqualityMatchingRule
+cn: Keyword Equality Matching Rule
+
+dn: cn=Numeric String Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.NumericStringEqualityMatchingRule
+cn: Numeric String Equality Matching Rule
+
+dn: cn=Numeric String Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-ordering-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.NumericStringOrderingMatchingRule
+cn: Numeric String Ordering Matching Rule
+
+dn: cn=Numeric String Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-substring-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.NumericStringSubstringMatchingRule
+cn: Numeric String Substring Matching Rule
+
+dn: cn=Object Identifier Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.ObjectIdentifierEqualityMatchingRule
+cn: Object Identifier Equality Matching Rule
+
+dn: cn=Object Identifier First Component Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.ObjectIdentifierFirstComponentEqualityMatchingRule
+cn: Object Identifier First Component Equality Matching Rule
+
+dn: cn=Octet String Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.OctetStringEqualityMatchingRule
+cn: Octet String Equality Matching Rule
+
+dn: cn=Octet String Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-ordering-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.OctetStringOrderingMatchingRule
+cn: Octet String Ordering Matching Rule
+
+dn: cn=Octet String Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-substring-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.OctetStringSubstringMatchingRule
+cn: Octet String Substring Matching Rule
+
+dn: cn=Presentation Address Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.PresentationAddressEqualityMatchingRule
+cn: Presentation Address Equality Matching Rule
+
+dn: cn=Protocol Information Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.ProtocolInformationEqualityMatchingRule
+cn: Protocol Information Equality Matching Rule
+
+dn: cn=Telephone Number Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.TelephoneNumberEqualityMatchingRule
+cn: Telephone Number Equality Matching Rule
+
+dn: cn=Telephone Number Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-substring-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.TelephoneNumberSubstringMatchingRule
+cn: Telephone Number Substring Matching Rule
+
+dn: cn=Unique Member Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.UniqueMemberEqualityMatchingRule
+cn: Unique Member Equality Matching Rule
+
+dn: cn=User Password Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.UserPasswordEqualityMatchingRule
+cn: User Password Equality Matching Rule
+
+dn: cn=User Password Exact Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.UserPasswordExactEqualityMatchingRule
+cn: User Password Exact Equality Matching Rule
+
+dn: cn=UUID Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.UUIDEqualityMatchingRule
+cn: UUID Equality Matching Rule
+
+dn: cn=UUID Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-ordering-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.UUIDOrderingMatchingRule
+cn: UUID Ordering Matching Rule
+
+dn: cn=Word Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-equality-matching-rule
+objectClass: ds-cfg-matching-rule
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.WordEqualityMatchingRule
+cn: Word Equality Matching Rule
+
+dn: cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Monitor Providers
+
+dn: cn=Client Connections,cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-client-connection-monitor-provider
+objectClass: ds-cfg-monitor-provider
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.monitors.ClientConnectionMonitorProvider
+cn: Client Connections
+
+dn: cn=Entry Caches,cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-entry-cache-monitor-provider
+objectClass: ds-cfg-monitor-provider
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.monitors.EntryCacheMonitorProvider
+cn: Entry Caches
+
+dn: cn=JVM Memory Usage,cn=Monitor Providers,cn=config
+objectClass: ds-cfg-memory-usage-monitor-provider
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.monitors.MemoryUsageMonitorProvider
+cn: JVM Memory Usage
+
+dn: cn=JVM Stack Trace,cn=Monitor Providers,cn=config
+objectClass: ds-cfg-stack-trace-monitor-provider
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.monitors.StackTraceMonitorProvider
+cn: JVM Stack Trace
+
+dn: cn=System Info,cn=Monitor Providers,cn=config
+objectClass: ds-cfg-system-info-monitor-provider
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.monitors.SystemInfoMonitorProvider
+cn: System Info
+
+dn: cn=Version,cn=Monitor Providers,cn=config
+objectClass: ds-cfg-version-monitor-provider
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.monitors.VersionMonitorProvider
+cn: Version
+
+dn: cn=Password Generators,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Password Generators
+
+dn: cn=Random Password Generator,cn=Password Generators,cn=config
+objectClass: ds-cfg-random-password-generator
+objectClass: top
+objectClass: ds-cfg-password-generator
+ds-cfg-enabled: true
+ds-cfg-password-character-set: alpha:abcdefghijklmnopqrstuvwxyz
+ds-cfg-password-character-set: numeric:0123456789
+ds-cfg-java-class: org.opends.server.extensions.RandomPasswordGenerator
+ds-cfg-password-format: alpha:3,numeric:2,alpha:3
+cn: Random Password Generator
+
+dn: cn=Password Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Password Policies
+
+dn: cn=Default Password Policy,cn=Password Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-password-policy
+ds-cfg-password-expiration-warning-interval: 5 days
+ds-cfg-expire-passwords-without-warning: false
+ds-cfg-force-change-on-add: false
+ds-cfg-lockout-duration: 0 seconds
+ds-cfg-password-generator: cn=Random Password Generator,cn=Password Generators,cn=config
+ds-cfg-allow-multiple-password-values: false
+ds-cfg-password-change-requires-current-password: false
+ds-cfg-require-secure-password-changes: false
+ds-cfg-force-change-on-reset: false
+ds-cfg-skip-validation-for-administrators: false
+ds-cfg-max-password-reset-age: 0 seconds
+ds-cfg-password-history-duration: 0 seconds
+ds-cfg-grace-login-count: 0
+ds-cfg-allow-expired-password-changes: false
+ds-cfg-password-attribute: userPassword
+ds-cfg-default-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config
+ds-cfg-max-password-age: 0 seconds
+ds-cfg-lockout-failure-count: 0
+ds-cfg-allow-pre-encoded-passwords: false
+ds-cfg-min-password-age: 0 seconds
+ds-cfg-idle-lockout-interval: 0 seconds
+ds-cfg-require-secure-authentication: false
+ds-cfg-state-update-failure-policy: reactive
+ds-cfg-password-history-count: 0
+ds-cfg-lockout-failure-expiration-interval: 0 seconds
+ds-cfg-allow-user-password-changes: true
+cn: Default Password Policy
+
+dn: cn=Root Password Policy,cn=Password Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-password-policy
+ds-cfg-password-expiration-warning-interval: 5 days
+ds-cfg-expire-passwords-without-warning: false
+ds-cfg-force-change-on-add: false
+ds-cfg-lockout-duration: 0 seconds
+ds-cfg-allow-multiple-password-values: false
+ds-cfg-password-change-requires-current-password: true
+ds-cfg-require-secure-password-changes: false
+ds-cfg-force-change-on-reset: false
+ds-cfg-skip-validation-for-administrators: false
+ds-cfg-max-password-reset-age: 0 seconds
+ds-cfg-password-history-duration: 0 seconds
+ds-cfg-grace-login-count: 0
+ds-cfg-allow-expired-password-changes: false
+ds-cfg-password-attribute: userPassword
+ds-cfg-default-password-storage-scheme: cn=Salted SHA-512,cn=Password Storage Schemes,cn=config
+ds-cfg-max-password-age: 0 seconds
+ds-cfg-lockout-failure-count: 0
+ds-cfg-allow-pre-encoded-passwords: false
+ds-cfg-min-password-age: 0 seconds
+ds-cfg-idle-lockout-interval: 0 seconds
+ds-cfg-require-secure-authentication: false
+ds-cfg-state-update-failure-policy: ignore
+ds-cfg-lockout-failure-expiration-interval: 0 seconds
+ds-cfg-password-history-count: 0
+ds-cfg-allow-user-password-changes: true
+cn: Root Password Policy
+
+dn: cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Password Storage Schemes
+
+dn: cn=3DES,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: top
+objectClass: ds-cfg-triple-des-password-storage-scheme
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.TripleDESPasswordStorageScheme
+cn: 3DES
+
+dn: cn=AES,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-aes-password-storage-scheme
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.AESPasswordStorageScheme
+cn: AES
+
+dn: cn=Base64,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: top
+objectClass: ds-cfg-base64-password-storage-scheme
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.Base64PasswordStorageScheme
+cn: Base64
+
+dn: cn=Blowfish,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: top
+objectClass: ds-cfg-blowfish-password-storage-scheme
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.BlowfishPasswordStorageScheme
+cn: Blowfish
+
+dn: cn=Clear,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-clear-password-storage-scheme
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.ClearPasswordStorageScheme
+cn: Clear
+
+dn: cn=CRYPT,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: top
+objectClass: ds-cfg-crypt-password-storage-scheme
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.CryptPasswordStorageScheme
+cn: CRYPT
+
+dn: cn=MD5,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-md5-password-storage-scheme
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.MD5PasswordStorageScheme
+cn: MD5
+
+dn: cn=RC4,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-rc4-password-storage-scheme
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.RC4PasswordStorageScheme
+cn: RC4
+
+dn: cn=Salted MD5,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-salted-md5-password-storage-scheme
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SaltedMD5PasswordStorageScheme
+cn: Salted MD5
+
+dn: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-salted-sha1-password-storage-scheme
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SaltedSHA1PasswordStorageScheme
+cn: Salted SHA-1
+
+dn: cn=Salted SHA-256,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: top
+objectClass: ds-cfg-salted-sha256-password-storage-scheme
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SaltedSHA256PasswordStorageScheme
+cn: Salted SHA-256
+
+dn: cn=Salted SHA-384,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-salted-sha384-password-storage-scheme
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SaltedSHA384PasswordStorageScheme
+cn: Salted SHA-384
+
+dn: cn=Salted SHA-512,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: top
+objectClass: ds-cfg-salted-sha512-password-storage-scheme
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SaltedSHA512PasswordStorageScheme
+cn: Salted SHA-512
+
+dn: cn=SHA-1,cn=Password Storage Schemes,cn=config
+objectClass: ds-cfg-password-storage-scheme
+objectClass: top
+objectClass: ds-cfg-sha1-password-storage-scheme
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SHA1PasswordStorageScheme
+cn: SHA-1
+
+dn: cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Password Validators
+
+dn: cn=Attribute Value,cn=Password Validators,cn=config
+objectClass: ds-cfg-attribute-value-password-validator
+objectClass: top
+objectClass: ds-cfg-password-validator
+ds-cfg-enabled: true
+ds-cfg-test-reversed-password: true
+ds-cfg-java-class: org.opends.server.extensions.AttributeValuePasswordValidator
+cn: Attribute Value
+
+dn: cn=Character Set,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-password-validator
+objectClass: ds-cfg-character-set-password-validator
+ds-cfg-enabled: true
+ds-cfg-allow-unclassified-characters: true
+ds-cfg-java-class: org.opends.server.extensions.CharacterSetPasswordValidator
+cn: Character Set
+ds-cfg-character-set: 1:abcdefghijklmnopqrstuvwxyz
+ds-cfg-character-set: 1:ABCDEFGHIJKLMNOPQRSTUVWXYZ
+ds-cfg-character-set: 1:0123456789
+ds-cfg-character-set: 1:~!@#$%^&*()-_=+[]{}|;:,.<>/?
+
+dn: cn=Dictionary,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-dictionary-password-validator
+objectClass: ds-cfg-password-validator
+ds-cfg-enabled: false
+ds-cfg-test-reversed-password: true
+ds-cfg-dictionary-file: config/wordlist.txt
+ds-cfg-java-class: org.opends.server.extensions.DictionaryPasswordValidator
+cn: Dictionary
+ds-cfg-case-sensitive-validation: false
+
+dn: cn=Length-Based Password Validator,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-length-based-password-validator
+objectClass: ds-cfg-password-validator
+ds-cfg-enabled: true
+ds-cfg-min-password-length: 6
+ds-cfg-java-class: org.opends.server.extensions.LengthBasedPasswordValidator
+cn: Length-Based Password Validator
+ds-cfg-max-password-length: 0
+
+dn: cn=Repeated Characters,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-repeated-characters-password-validator
+objectClass: ds-cfg-password-validator
+ds-cfg-max-consecutive-length: 2
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.RepeatedCharactersPasswordValidator
+cn: Repeated Characters
+ds-cfg-case-sensitive-validation: false
+
+dn: cn=Similarity-Based Password Validator,cn=Password Validators,cn=config
+objectClass: ds-cfg-similarity-based-password-validator
+objectClass: top
+objectClass: ds-cfg-password-validator
+ds-cfg-min-password-difference: 3
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.SimilarityBasedPasswordValidator
+cn: Similarity-Based Password Validator
+
+dn: cn=Unique Characters,cn=Password Validators,cn=config
+objectClass: ds-cfg-unique-characters-password-validator
+objectClass: top
+objectClass: ds-cfg-password-validator
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.UniqueCharactersPasswordValidator
+cn: Unique Characters
+ds-cfg-case-sensitive-validation: false
+ds-cfg-min-unique-characters: 5
+
+dn: cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-plugin-root
+objectClass: ds-cfg-branch
+cn: Plugins
+
+dn: cn=7-Bit Clean,cn=Plugins,cn=config
+objectClass: ds-cfg-plugin
+objectClass: top
+objectClass: ds-cfg-seven-bit-clean-plugin
+ds-cfg-plugin-type: ldifImport
+ds-cfg-plugin-type: preParseAdd
+ds-cfg-plugin-type: preParseModify
+ds-cfg-plugin-type: preParseModifyDN
+ds-cfg-enabled: false
+ds-cfg-invoke-for-internal-operations: true
+ds-cfg-attribute-type: uid
+ds-cfg-attribute-type: mail
+ds-cfg-attribute-type: userPassword
+ds-cfg-java-class: org.opends.server.plugins.SevenBitCleanPlugin
+cn: 7-Bit Clean
+
+dn: cn=Entry UUID,cn=Plugins,cn=config
+objectClass: ds-cfg-plugin
+objectClass: top
+objectClass: ds-cfg-entry-uuid-plugin
+ds-cfg-plugin-type: ldifImport
+ds-cfg-plugin-type: preOperationAdd
+ds-cfg-enabled: true
+ds-cfg-invoke-for-internal-operations: true
+ds-cfg-java-class: org.opends.server.plugins.EntryUUIDPlugin
+cn: Entry UUID
+
+dn: cn=LastMod,cn=Plugins,cn=config
+objectClass: ds-cfg-last-mod-plugin
+objectClass: ds-cfg-plugin
+objectClass: top
+ds-cfg-plugin-type: preOperationAdd
+ds-cfg-plugin-type: preOperationModify
+ds-cfg-plugin-type: preOperationModifyDN
+ds-cfg-enabled: true
+ds-cfg-invoke-for-internal-operations: true
+ds-cfg-java-class: org.opends.server.plugins.LastModPlugin
+cn: LastMod
+
+dn: cn=LDAP Attribute Description List,cn=Plugins,cn=config
+objectClass: ds-cfg-ldap-attribute-description-list-plugin
+objectClass: ds-cfg-plugin
+objectClass: top
+ds-cfg-plugin-type: preParseSearch
+ds-cfg-enabled: true
+ds-cfg-invoke-for-internal-operations: true
+ds-cfg-java-class: org.opends.server.plugins.LDAPADListPlugin
+cn: LDAP Attribute Description List
+
+dn: cn=Password Policy Import,cn=Plugins,cn=config
+objectClass: ds-cfg-password-policy-import-plugin
+objectClass: ds-cfg-plugin
+objectClass: top
+ds-cfg-plugin-type: ldifImport
+ds-cfg-default-auth-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config
+ds-cfg-enabled: true
+ds-cfg-invoke-for-internal-operations: false
+ds-cfg-java-class: org.opends.server.plugins.PasswordPolicyImportPlugin
+cn: Password Policy Import
+ds-cfg-default-user-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config
+
+dn: cn=Profiler,cn=Plugins,cn=config
+objectClass: ds-cfg-plugin
+objectClass: top
+objectClass: ds-cfg-profiler-plugin
+ds-cfg-plugin-type: startup
+ds-cfg-enabled: true
+ds-cfg-invoke-for-internal-operations: false
+ds-cfg-enable-profiling-on-startup: false
+ds-cfg-java-class: org.opends.server.plugins.profiler.ProfilerPlugin
+ds-cfg-profile-sample-interval: 10 milliseconds
+cn: Profiler
+ds-cfg-profile-directory: logs
+
+dn: cn=Referential Integrity,cn=Plugins,cn=config
+objectClass: ds-cfg-plugin
+objectClass: top
+objectClass: ds-cfg-referential-integrity-plugin
+ds-cfg-plugin-type: postOperationDelete
+ds-cfg-plugin-type: postOperationModifyDN
+ds-cfg-plugin-type: subordinateModifyDN
+ds-cfg-enabled: false
+ds-cfg-invoke-for-internal-operations: true
+ds-cfg-attribute-type: member
+ds-cfg-attribute-type: uniqueMember
+ds-cfg-java-class: org.opends.server.plugins.ReferentialIntegrityPlugin
+cn: Referential Integrity
+
+dn: cn=UID Unique Attribute,cn=Plugins,cn=config
+objectClass: ds-cfg-plugin
+objectClass: top
+objectClass: ds-cfg-unique-attribute-plugin
+ds-cfg-plugin-type: preOperationAdd
+ds-cfg-plugin-type: preOperationModify
+ds-cfg-plugin-type: preOperationModifyDN
+ds-cfg-plugin-type: postSynchronizationAdd
+ds-cfg-plugin-type: postSynchronizationModify
+ds-cfg-plugin-type: postSynchronizationModifyDN
+ds-cfg-enabled: false
+ds-cfg-invoke-for-internal-operations: true
+ds-cfg-type: uid
+ds-cfg-java-class: org.opends.server.plugins.UniqueAttributePlugin
+cn: UID Unique Attribute
+
+dn: cn=Root DNs,cn=config
+objectClass: top
+objectClass: ds-cfg-root-dn
+ds-cfg-default-root-privilege-name: bypass-acl
+ds-cfg-default-root-privilege-name: modify-acl
+ds-cfg-default-root-privilege-name: config-read
+ds-cfg-default-root-privilege-name: config-write
+ds-cfg-default-root-privilege-name: ldif-import
+ds-cfg-default-root-privilege-name: ldif-export
+ds-cfg-default-root-privilege-name: backend-backup
+ds-cfg-default-root-privilege-name: backend-restore
+ds-cfg-default-root-privilege-name: server-shutdown
+ds-cfg-default-root-privilege-name: server-restart
+ds-cfg-default-root-privilege-name: disconnect-client
+ds-cfg-default-root-privilege-name: cancel-request
+ds-cfg-default-root-privilege-name: password-reset
+ds-cfg-default-root-privilege-name: update-schema
+ds-cfg-default-root-privilege-name: privilege-change
+ds-cfg-default-root-privilege-name: unindexed-search
+cn: Root DNs
+
+dn: cn=Directory Manager,cn=Root DNs,cn=config
+objectClass: inetOrgPerson
+objectClass: person
+objectClass: top
+objectClass: ds-cfg-root-dn-user
+objectClass: organizationalPerson
+sn: Manager
+userpassword: {SSHA512}kjk9s0E39sOgUqNkWSrIE4PDsfSHT0Z+zFbwwSY3d5UTcjk0O4q0W0KAJHnC9p+q0F2IinDdDCtsy8o4Rfdhd8XodMOcoZWF
+cn: Directory Manager
+ds-cfg-alternate-bind-dn: cn=Directory Manager
+givenName: Directory
+ds-rlim-time-limit: 0
+ds-rlim-lookthrough-limit: 0
+ds-rlim-idle-time-limit: 0
+ds-rlim-size-limit: 0
+ds-pwp-password-policy-dn: cn=Root Password Policy,cn=Password Policies,cn=config
+
+dn: cn=Root DSE,cn=config
+objectClass: top
+objectClass: ds-cfg-root-dse-backend
+cn: Root DSE
+ds-cfg-show-all-attributes: false
+
+dn: cn=SASL Mechanisms,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: SASL Mechanisms
+
+dn: cn=ANONYMOUS,cn=SASL Mechanisms,cn=config
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: top
+objectClass: ds-cfg-anonymous-sasl-mechanism-handler
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.extensions.AnonymousSASLMechanismHandler
+cn: ANONYMOUS
+
+dn: cn=CRAM-MD5,cn=SASL Mechanisms,cn=config
+objectClass: ds-cfg-cram-md5-sasl-mechanism-handler
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: top
+ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.CRAMMD5SASLMechanismHandler
+cn: CRAM-MD5
+
+dn: cn=DIGEST-MD5,cn=SASL Mechanisms,cn=config
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: top
+objectClass: ds-cfg-digest-md5-sasl-mechanism-handler
+ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.DigestMD5SASLMechanismHandler
+cn: DIGEST-MD5
+
+dn: cn=EXTERNAL,cn=SASL Mechanisms,cn=config
+objectClass: ds-cfg-external-sasl-mechanism-handler
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: top
+ds-cfg-certificate-validation-policy: ifpresent
+ds-cfg-certificate-attribute: userCertificate
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.ExternalSASLMechanismHandler
+cn: EXTERNAL
+ds-cfg-certificate-mapper: cn=Subject Equals DN,cn=Certificate Mappers,cn=config
+
+dn: cn=GSSAPI,cn=SASL Mechanisms,cn=config
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: top
+objectClass: ds-cfg-gssapi-sasl-mechanism-handler
+ds-cfg-identity-mapper: cn=Regular Expression,cn=Identity Mappers,cn=config
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.extensions.GSSAPISASLMechanismHandler
+cn: GSSAPI
+ds-cfg-keytab: /etc/krb5/krb5.keytab
+
+dn: cn=PLAIN,cn=SASL Mechanisms,cn=config
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: top
+objectClass: ds-cfg-plain-sasl-mechanism-handler
+ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.PlainSASLMechanismHandler
+cn: PLAIN
+
+dn: cn=Synchronization Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Synchronization Providers
+
+dn: cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config
+objectClass: ds-cfg-synchronization-provider
+objectClass: ds-cfg-replication-synchronization-provider
+objectClass: top
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.replication.plugin.MultimasterReplication
+cn: Multimaster Synchronization
+
+dn: cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: domains
+
+dn: cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Syntaxes
+
+dn: cn=Absolute Subtree Specification,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.AbsoluteSubtreeSpecificationSyntax
+cn: Absolute Subtree Specification
+
+dn: cn=Attribute Type Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-type-description-attribute-syntax
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-strip-syntax-min-upper-bound: false
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.AttributeTypeSyntax
+cn: Attribute Type Description
+
+dn: cn=Authentication Password,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.AuthPasswordSyntax
+cn: Authentiation Password
+
+dn: cn=Binary,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.BinarySyntax
+cn: Binary
+
+dn: cn=Bit String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.BitStringSyntax
+cn: Bit String
+
+dn: cn=Boolean,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.BooleanSyntax
+cn: Boolean
+
+dn: cn=Certificate,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CertificateSyntax
+cn: Certificate
+
+dn: cn=Certificate List,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CertificateListSyntax
+cn: Certificate List
+
+dn: cn=Certificate Pair,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CertificatePairSyntax
+cn: Certificate Pair
+
+dn: cn=Country String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.CountryStringSyntax
+cn: Country String
+
+dn: cn=Delivery Method,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.DeliveryMethodSyntax
+cn: Delivery Method
+
+dn: cn=Directory String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-directory-string-attribute-syntax
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-allow-zero-length-values: false
+ds-cfg-java-class: org.opends.server.schema.DirectoryStringSyntax
+cn: Directory String
+
+dn: cn=Distinguished Name,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.DistinguishedNameSyntax
+cn: Distinguished Name
+
+dn: cn=DIT Content Rule Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.DITContentRuleSyntax
+cn: DIT Content Rule Description
+
+dn: cn=DIT Structure Rule Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.DITStructureRuleSyntax
+cn: DIT Structure Rule Description
+
+dn: cn=Enhanced Guide,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.EnhancedGuideSyntax
+cn: Enhanced Guide
+
+dn: cn=Facsimile Telephone Number,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.FaxNumberSyntax
+cn: Facsimile Telephone Number
+
+dn: cn=Fax,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.FaxSyntax
+cn: Fax
+
+dn: cn=Generalized Time,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.GeneralizedTimeSyntax
+cn: Generalized Time
+
+dn: cn=Guide,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.GuideSyntax
+cn: Guide
+
+dn: cn=IA5 String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.IA5StringSyntax
+cn: IA5 String
+
+dn: cn=Integer,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.IntegerSyntax
+cn: Integer
+
+dn: cn=JPEG,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.JPEGSyntax
+cn: JPEG
+
+dn: cn=LDAP Syntax Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.LDAPSyntaxDescriptionSyntax
+cn: LDAP Syntax Description
+
+dn: cn=Matching Rule Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.MatchingRuleSyntax
+cn: Matching Rule Description
+
+dn: cn=Matching Rule Use Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.MatchingRuleUseSyntax
+cn: Matching Rule Use Description
+
+dn: cn=Name and Optional UID,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.NameAndOptionalUIDSyntax
+cn: Name and Optional UID
+
+dn: cn=Name Form Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.NameFormSyntax
+cn: Name Form Description
+
+dn: cn=Numeric String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.NumericStringSyntax
+cn: Numeric String
+
+dn: cn=Object Class Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.ObjectClassSyntax
+cn: Object Class Description
+
+dn: cn=Object Identifier,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.OIDSyntax
+cn: Object Identifier
+
+dn: cn=Octet String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.OctetStringSyntax
+cn: Octet String
+
+dn: cn=Other Mailbox,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.OtherMailboxSyntax
+cn: Other Mailbox
+
+dn: cn=Postal Address,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.PostalAddressSyntax
+cn: Postal Address
+
+dn: cn=Presentation Address,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.PresentationAddressSyntax
+cn: Presentation Address
+
+dn: cn=Printable String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.PrintableStringSyntax
+cn: Printable String
+
+dn: cn=Protocol Information,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.ProtocolInformationSyntax
+cn: Protocol Information
+
+dn: cn=Relative Subtree Specification,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.RelativeSubtreeSpecificationSyntax
+cn: Relative Subtree Specification
+
+dn: cn=Substring Assertion,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.SubstringAssertionSyntax
+cn: Substring Assertion
+
+dn: cn=Subtree Specification,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.RFC3672SubtreeSpecificationSyntax
+cn: Subtree Specification
+
+dn: cn=Sun-defined Access Control Information,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.AciSyntax
+cn: Sun-defined Access Control Information
+
+dn: cn=Supported Algorithm,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.SupportedAlgorithmSyntax
+cn: Supported Algorithm
+
+dn: cn=Telephone Number,cn=Syntaxes,cn=config
+objectClass: ds-cfg-telephone-number-attribute-syntax
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-strict-format: false
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.TelephoneNumberSyntax
+cn: Telephone Number
+
+dn: cn=Teletex Terminal Identifier,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.TeletexTerminalIdentifierSyntax
+cn: Teletex Terminal Identifier
+
+dn: cn=Telex Number,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.TelexNumberSyntax
+cn: Telex Number
+
+dn: cn=User Password,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.UserPasswordSyntax
+cn: User Password
+
+dn: cn=UTC Time,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.UTCTimeSyntax
+cn: UTC Time
+
+dn: cn=UUID,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.schema.UUIDSyntax
+cn: UUID
+
+dn: cn=Trust Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Trust Manager Providers
+
+dn: cn=Blind Trust,cn=Trust Manager Providers,cn=config
+objectClass: ds-cfg-blind-trust-manager-provider
+objectClass: top
+objectClass: ds-cfg-trust-manager-provider
+ds-cfg-enabled: false
+ds-cfg-java-class: org.opends.server.extensions.BlindTrustManagerProvider
+cn: Blind Trust
+
+dn: cn=JKS,cn=Trust Manager Providers,cn=config
+objectClass: ds-cfg-file-based-trust-manager-provider
+objectClass: top
+objectClass: ds-cfg-trust-manager-provider
+ds-cfg-trust-store-file: config/truststore
+ds-cfg-enabled: true
+ds-cfg-trust-store-type: JKS
+ds-cfg-java-class: org.opends.server.extensions.FileBasedTrustManagerProvider
+cn: JKS
+
+dn: cn=PKCS12,cn=Trust Manager Providers,cn=config
+objectClass: ds-cfg-file-based-trust-manager-provider
+objectClass: top
+objectClass: ds-cfg-trust-manager-provider
+ds-cfg-trust-store-file: config/truststore.p12
+ds-cfg-enabled: false
+ds-cfg-trust-store-type: PKCS12
+ds-cfg-java-class: org.opends.server.extensions.FileBasedTrustManagerProvider
+cn: PKCS12
+
+dn: cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Virtual Attributes
+
+dn: cn=entryDN,cn=Virtual Attributes,cn=config
+objectClass: ds-cfg-entry-dn-virtual-attribute
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+ds-cfg-enabled: true
+ds-cfg-attribute-type: entryDN
+ds-cfg-java-class: org.opends.server.extensions.EntryDNVirtualAttributeProvider
+cn: entryDN
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=entryUUID,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-entry-uuid-virtual-attribute
+objectClass: ds-cfg-virtual-attribute
+ds-cfg-enabled: true
+ds-cfg-attribute-type: entryUUID
+ds-cfg-java-class: org.opends.server.extensions.EntryUUIDVirtualAttributeProvider
+cn: entryUUIUD
+ds-cfg-conflict-behavior: real-overrides-virtual
+
+dn: cn=hasSubordinates,cn=Virtual Attributes,cn=config
+objectClass: ds-cfg-has-subordinates-virtual-attribute
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+ds-cfg-enabled: true
+ds-cfg-attribute-type: hasSubordinates
+ds-cfg-java-class: org.opends.server.extensions.HasSubordinatesVirtualAttributeProvider
+cn: hasSubordinates
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=isMemberOf,cn=Virtual Attributes,cn=config
+objectClass: ds-cfg-is-member-of-virtual-attribute
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+ds-cfg-enabled: true
+ds-cfg-attribute-type: isMemberOf
+ds-cfg-java-class: org.opends.server.extensions.IsMemberOfVirtualAttributeProvider
+ds-cfg-filter: (objectClass=person)
+cn: isMemberOf
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=numSubordinates,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-num-subordinates-virtual-attribute
+objectClass: ds-cfg-virtual-attribute
+ds-cfg-enabled: true
+ds-cfg-attribute-type: numSubordinates
+ds-cfg-java-class: org.opends.server.extensions.NumSubordinatesVirtualAttributeProvider
+cn: numSubordinates
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=subschemaSubentry,cn=Virtual Attributes,cn=config
+objectClass: ds-cfg-subschema-subentry-virtual-attribute
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+ds-cfg-enabled: true
+ds-cfg-attribute-type: subschemaSubentry
+ds-cfg-java-class: org.opends.server.extensions.SubschemaSubentryVirtualAttributeProvider
+cn: subschemaSubentry
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=Virtual Static member,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-member-virtual-attribute
+ds-cfg-enabled: true
+ds-cfg-attribute-type: member
+ds-cfg-allow-retrieving-membership: false
+ds-cfg-java-class: org.opends.server.extensions.MemberVirtualAttributeProvider
+ds-cfg-filter: (&(objectClass=groupOfNames)(objectClass=ds-virtual-static-group))
+cn: Virtual Static member
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=Virtual Static uniqueMember,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-member-virtual-attribute
+ds-cfg-enabled: true
+ds-cfg-attribute-type: uniqueMember
+ds-cfg-allow-retrieving-membership: false
+ds-cfg-java-class: org.opends.server.extensions.MemberVirtualAttributeProvider
+ds-cfg-filter: (&(objectClass=groupOfUniqueNames)(objectClass=ds-virtual-static-group))
+cn: Virtual Static uniqueMember
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=Work Queue,cn=config
+objectClass: ds-cfg-work-queue
+objectClass: top
+objectClass: ds-cfg-traditional-work-queue
+ds-cfg-java-class: org.opends.server.extensions.TraditionalWorkQueue
+cn: Work Queue
+ds-cfg-num-worker-threads: 24
+ds-cfg-max-work-queue-capacity: 0
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/00-core.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/00-core.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/00-core.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,628 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains a core set of attribute type and objectlass definitions
+# from several standard LDAP documents (primarily RFCs and IETF Internet
+# Drafts). The X-ORIGIN component of each name should provide the
+# specification in which that attribute type or objectclass is defined.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 2.5.4.41 NAME 'name' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.49 NAME 'distinguishedName'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.0 NAME 'objectClass' EQUALITY objectIdentifierMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.4.1 NAME 'aliasedObjectName'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.4.2 NAME 'knowledgeInformation' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} X-ORIGIN 'RFC 2256' )
+attributeTypes: ( 2.5.4.3 NAME ( 'cn' 'commonName' ) SUP name
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.4 NAME ( 'sn' 'surname' ) SUP name
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.5 NAME 'serialNumber' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44{64}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.6 NAME ( 'c' 'countryName' ) SUP name SINGLE-VALUE
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.7 NAME ( 'l' 'localityName' ) SUP name
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.8 NAME ( 'st' 'stateOrProvinceName' ) SUP name
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.9 NAME ( 'street' 'streetAddress' )
+ EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.10 NAME ( 'o' 'organizationName' ) SUP name
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.11 NAME ( 'ou' 'organizationalUnitName' ) SUP name
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.12 NAME 'title' SUP name X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.13 NAME 'description' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1024}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.14 NAME 'searchGuide'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.25 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.15 NAME 'businessCategory' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.16 NAME 'postalAddress' EQUALITY caseIgnoreListMatch
+ SUBSTR caseIgnoreListSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.41
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.17 NAME 'postalCode' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{40}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.18 NAME 'postOfficeBox' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{40}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.19 NAME 'physicalDeliveryOfficeName'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.20 NAME 'telephoneNumber' EQUALITY telephoneNumberMatch
+ SUBSTR telephoneNumberSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.50{32}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.21 NAME 'telexNumber'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.52 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.22 NAME 'teletexTerminalIdentifier'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.51 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.23 NAME 'facsimileTelephoneNumber'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.22 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.24 NAME 'x121Address' EQUALITY numericStringMatch
+ SUBSTR numericStringSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.36{15}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.25 NAME 'internationaliSDNNumber'
+ EQUALITY numericStringMatch SUBSTR numericStringSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.36{16} X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.26 NAME 'registeredAddress' SUP postalAddress
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.27 NAME 'destinationIndicator' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44{128}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.28 NAME 'preferredDeliveryMethod'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.14 SINGLE-VALUE X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.29 NAME 'presentationAddress'
+ EQUALITY presentationAddressMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.43
+ SINGLE-VALUE X-ORIGIN 'RFC 2256' )
+attributeTypes: ( 2.5.4.30 NAME 'supportedApplicationContext'
+ EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
+ X-ORIGIN 'RFC 2256' )
+attributeTypes: ( 2.5.4.31 NAME 'member' SUP distinguishedName
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.32 NAME 'owner' SUP distinguishedName
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.33 NAME 'roleOccupant' SUP distinguishedName
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.34 NAME 'seeAlso' SUP distinguishedName
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.35 NAME 'userPassword'
+ SYNTAX 1.3.6.1.4.1.26027.1.3.1 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.36 NAME 'userCertificate'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.8 X-ORIGIN 'RFC 4523' )
+attributeTypes: ( 2.5.4.37 NAME 'cACertificate'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.8 X-ORIGIN 'RFC 4523' )
+attributeTypes: ( 2.5.4.38 NAME 'authorityRevocationList'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 X-ORIGIN 'RFC 4523' )
+attributeTypes: ( 2.5.4.39 NAME 'certificateRevocationList'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 X-ORIGIN 'RFC 4523' )
+attributeTypes: ( 2.5.4.40 NAME 'crossCertificatePair'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.10 X-ORIGIN 'RFC 4523' )
+attributeTypes: ( 2.5.4.42 NAME 'givenName' SUP name X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.43 NAME 'initials' SUP name X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.44 NAME 'generationQualifier' SUP name
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.45 NAME 'x500UniqueIdentifier' EQUALITY bitStringMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.6 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.46 NAME 'dnQualifier' EQUALITY caseIgnoreMatch
+ ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.44 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.47 NAME 'enhancedSearchGuide'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.21 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 1.3.6.1.1.16.4 NAME 'entryUUID'
+ DESC 'UUID of the entry' EQUALITY uuidMatch ORDERING uuidOrderingMatch
+ SYNTAX 1.3.6.1.1.16.1 SINGLE-VALUE NO-USER-MODIFICATION
+ USAGE directoryOperation X-ORIGIN 'RFC 4530' )
+attributeTypes: ( 2.5.4.48 NAME 'protocolInformation'
+ EQUALITY protocolInformationMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.42
+ X-ORIGIN 'RFC 2256' )
+attributeTypes: ( 2.5.4.50 NAME 'uniqueMember' EQUALITY uniqueMemberMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.51 NAME 'houseIdentifier' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768}
+ X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.5.4.52 NAME 'supportedAlgorithms'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.49 X-ORIGIN 'RFC 4523' )
+attributeTypes: ( 2.5.4.53 NAME 'deltaRevocationList'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 X-ORIGIN 'RFC 4523' )
+attributeTypes: ( 2.5.4.54 NAME 'dmdName' SUP name X-ORIGIN 'RFC 2256' )
+attributeTypes: ( 2.5.18.1 NAME 'createTimestamp' EQUALITY generalizedTimeMatch
+ ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.18.2 NAME 'modifyTimestamp' EQUALITY generalizedTimeMatch
+ ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.18.3 NAME 'creatorsName' EQUALITY distinguishedNameMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION
+ USAGE directoryOperation X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.18.4 NAME 'modifiersName' EQUALITY distinguishedNameMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION
+ USAGE directoryOperation X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.18.9 NAME 'hasSubordinates' EQUALITY booleanMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE NO-USER-MODIFICATION
+ USAGE directoryOperation X-ORIGIN 'X.501' )
+attributeTypes: ( 2.5.18.10 NAME 'subschemaSubentry'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.21.5 NAME 'attributeTypes' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.3 USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.21.6 NAME 'objectClasses' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.37 USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.21.4 NAME 'matchingRules' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.30 USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.21.8 NAME 'matchingRuleUse' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.31 USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.5 NAME 'namingContexts'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE dSAOperation X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.6 NAME 'altServer'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE dSAOperation X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.7 NAME 'supportedExtension'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 USAGE dSAOperation X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.13 NAME 'supportedControl'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 USAGE dSAOperation X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.14 NAME 'supportedSASLMechanisms'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE dSAOperation X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.15 NAME 'supportedLDAPVersion'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 USAGE dSAOperation X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 1.3.6.1.4.1.4203.1.3.5 NAME 'supportedFeatures'
+ EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
+ USAGE dSAOperation X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.16 NAME 'ldapSyntaxes'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.54 USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.21.1 NAME 'dITStructureRules' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.17 USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.21.7 NAME 'nameForms' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.35 USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 2.5.21.2 NAME 'dITContentRules' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.16 USAGE directoryOperation
+ X-ORIGIN 'RFC 4512' )
+attributeTypes: ( 0.9.2342.19200300.100.1.25 NAME ( 'dc' 'domainComponent' )
+ EQUALITY caseIgnoreIA5Match SUBSTR caseIgnoreIA5SubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 2.16.840.1.113730.3.1.1 NAME 'carLicense'
+ DESC 'vehicle license or registration plate' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 2.16.840.1.113730.3.1.2 NAME 'departmentNumber'
+ DESC 'identifies a department within an organization'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 2.16.840.1.113730.3.1.241 NAME 'displayName'
+ DESC 'preferred name of a person to be used when displaying entries'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 2.16.840.1.113730.3.1.3 NAME 'employeeNumber'
+ DESC 'numerically identifies an employee within an organization'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 2.16.840.1.113730.3.1.4 NAME 'employeeType'
+ DESC 'type of employment for a person' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 0.9.2342.19200300.100.1.60 NAME 'jpegPhoto'
+ DESC 'a JPEG image' SYNTAX 1.3.6.1.4.1.1466.115.121.1.28
+ X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 2.16.840.1.113730.3.1.39 NAME 'preferredLanguage'
+ DESC 'preferred written or spoken language for a person'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 2.16.840.1.113730.3.1.40 NAME 'userSMIMECertificate'
+ DESC 'PKCS#7 SignedData used to support S/MIME'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 2.16.840.1.113730.3.1.216 NAME 'userPKCS12'
+ DESC 'PKCS #12 PFX PDU for exchange of personal identity information'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 0.9.2342.19200300.100.1.37 NAME 'associatedDomain'
+ EQUALITY caseIgnoreIA5Match SUBSTR caseIgnoreIA5SubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.38 NAME 'associatedName'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.48 NAME 'buildingName'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.43 NAME ('co' 'friendlyCountryName' )
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.14 NAME 'documentAuthor'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.11 NAME 'documentIdentifier'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.15 NAME 'documentLocation'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.56 NAME 'documentPublisher'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.12 NAME 'documentTitle'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.13 NAME 'documentVersion'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.5 NAME ( 'drink' 'favouriteDrink' )
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.20
+ NAME ( 'homePhone' 'homeTelephoneNumber' ) EQUALITY telephoneNumberMatch
+ SUBSTR telephoneNumberSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.50
+ X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.39 NAME 'homePostalAddress'
+ EQUALITY caseIgnoreListMatch SUBSTR caseIgnoreListSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.9 NAME 'host' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256}
+ X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.4 NAME 'info' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{2048}
+ X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.3 NAME ( 'mail' 'rfc822Mailbox' )
+ EQUALITY caseIgnoreIA5Match SUBSTR caseIgnoreIA5SubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.10 NAME 'manager'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.41
+ NAME ( 'mobile' 'mobileTelephoneNumber' ) EQUALITY telephoneNumberMatch
+ SUBSTR telephoneNumberSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.50
+ X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.45 NAME 'organizationalStatus'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.42
+ NAME ( 'pager' 'pagerTelephoneNumber' ) EQUALITY telephoneNumberMatch
+ SUBSTR telephoneNumberSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.50
+ X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.40 NAME 'personalTitle'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.6 NAME 'roomNumber'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.21 NAME 'secretary'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.44 NAME 'uniqueIdentifier'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 0.9.2342.19200300.100.1.8 NAME 'userClass'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' )
+attributeTypes: ( 1.3.6.1.4.1.250.1.57 NAME 'labeledURI'
+ DESC 'Uniform Resource Identifier with optional label'
+ EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2079' )
+attributeTypes: ( 1.3.6.1.4.1.250.1.41 NAME 'labeledURL'
+ DESC 'Uniform Resource Locator with optional label'
+ EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2079' )
+attributeTypes: ( 0.9.2342.19200300.100.1.55 NAME 'audio'
+ EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40{250000}
+ X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 0.9.2342.19200300.100.1.7 NAME 'photo'
+ EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
+ X-ORIGIN 'RFC 2798' )
+attributeTypes: ( 0.9.2342.19200300.100.1.1 NAME ( 'uid' 'userid' )
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4519' )
+attributeTypes: ( 1.3.6.1.1.4 NAME 'vendorName'
+ EQUALITY 1.3.6.1.4.1.1466.109.114.1 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE dSAOperation X-ORIGIN 'RFC 3045' )
+attributeTypes: ( 1.3.6.1.1.5 NAME 'vendorVersion'
+ EQUALITY 1.3.6.1.4.1.1466.109.114.1 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE dSAOperation X-ORIGIN 'RFC 3045' )
+attributeTypes: ( 2.16.840.1.113730.3.1.34 NAME 'ref'
+ DESC 'named reference - a labeledURI' EQUALITY caseExactMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE distributedOperation
+ X-ORIGIN 'RFC 3296' )
+attributeTypes: ( 1.3.6.1.4.1.7628.5.4.1 NAME 'inheritable'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE NO-USER-MODIFICATION
+ USAGE dSAOperation X-ORIGIN 'draft-ietf-ldup-subentry' )
+attributeTypes: ( 1.3.6.1.4.1.7628.5.4.2 NAME 'blockInheritance'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE NO-USER-MODIFICATION
+ USAGE dSAOperation X-ORIGIN 'draft-ietf-ldup-subentry' )
+attributeTypes: ( 2.16.840.1.113730.3.1.55 NAME 'aci'
+ DESC 'Sun-defined access control information attribute type'
+ SYNTAX 1.3.6.1.4.1.26027.1.3.4 USAGE directoryOperation
+ X-ORIGIN 'Sun Java System Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.39 NAME 'aclRights'
+ DESC 'Sun-defined access control effective rights attribute type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'Sun Java System Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.40 NAME 'aclRightsInfo'
+ DESC 'Sun-defined access control effective rights information attribute type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'Sun Java System Directory Server' )
+attributeTypes: ( 2.16.840.1.113730.3.1.542 NAME 'nsUniqueId'
+ DESC 'Sun-defined unique identifier' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'Sun Java System Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.1 NAME 'administratorsAddress'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE directoryOperation
+ X-ORIGIN 'draft-wahl-ldap-adminaddr' )
+attributeTypes: ( 2.16.840.1.113730.3.1.198 NAME 'memberURL'
+ DESC 'Sun-defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ X-ORIGIN 'Sun Java System Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.792 NAME 'isMemberOf'
+ DESC 'Sun-defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'Sun Java System Directory Server' )
+attributeTypes: ( 0.9.2342.19200300.100.1.54 NAME 'dITRedirect'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.49 NAME 'dSAQuality'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.46 NAME 'janetMailbox'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.24 NAME 'lastModifiedBy'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.23 NAME 'lastModifiedTime'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.47 NAME 'mailPreferenceOption'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.53 NAME 'personalSignature'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.50 NAME 'singleLevelQuality'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.51 NAME 'subtreeMinimumQuality'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.52 NAME 'subtreeMaximumQuality'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.2 NAME 'textEncodedORAddress'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.22 NAME 'otherMailbox'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.26 NAME 'aRecord'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.27 NAME 'mDRecord'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.28 NAME 'mxRecord'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.29 NAME 'nSRecord'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.30 NAME 'sOARecord'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 0.9.2342.19200300.100.1.31 NAME 'cNAMERecord'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' )
+attributeTypes: ( 1.3.6.1.1.20 NAME 'entryDN' DESC 'DN of the entry'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'RFC 5020' )
+attributeTypes: ( 1.3.6.1.4.1.453.16.2.103 NAME 'numSubordinates'
+ DESC 'Count of immediate subordinates'
+ EQUALITY integerMatch ORDERING integerOrderingMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'draft-ietf-boreham-numsubordinates' )
+objectClasses: ( 2.5.6.0 NAME 'top' ABSTRACT MUST objectClass
+ X-ORIGIN 'RFC 4512' )
+objectClasses: ( 2.5.6.1 NAME 'alias' SUP top STRUCTURAL MUST aliasedObjectName
+ X-ORIGIN 'RFC 4512' )
+objectClasses: ( 2.5.6.2 NAME 'country' SUP top STRUCTURAL MUST c
+ MAY ( searchGuide $ description ) X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.3 NAME 'locality' SUP top STRUCTURAL
+ MAY ( street $ seeAlso $ searchGuide $ st $ l $ description )
+ X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.4 NAME 'organization' SUP top STRUCTURAL MUST o
+ MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $ x121Address $
+ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $
+ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $
+ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $
+ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $
+ description ) X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.5 NAME 'organizationalUnit' SUP top STRUCTURAL MUST ou
+ MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $ x121Address $
+ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $
+ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $
+ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $
+ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $
+ description ) X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.6 NAME 'person' SUP top STRUCTURAL MUST ( sn $ cn )
+ MAY ( userPassword $ telephoneNumber $ seeAlso $ description )
+ X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.7 NAME 'organizationalPerson' SUP person STRUCTURAL
+ MAY ( title $ x121Address $ registeredAddress $ destinationIndicator $
+ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $
+ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $
+ street $ postOfficeBox $ postalCode $ postalAddress $
+ physicalDeliveryOfficeName $ ou $ st $ l ) X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.8 NAME 'organizationalRole' SUP top STRUCTURAL MUST cn
+ MAY ( x121Address $ registeredAddress $ destinationIndicator $
+ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $
+ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $
+ seeAlso $ roleOccupant $ preferredDeliveryMethod $ street $ postOfficeBox $
+ postalCode $ postalAddress $ physicalDeliveryOfficeName $ ou $ st $ l $
+ description ) X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.9 NAME 'groupOfNames' SUP top STRUCTURAL
+ MUST cn MAY ( member $ businessCategory $ seeAlso $ owner $ ou $ o $
+ description ) X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.10 NAME 'residentialPerson' SUP person STRUCTURAL MUST l
+ MAY ( businessCategory $ x121Address $ registeredAddress $
+ destinationIndicator $ preferredDeliveryMethod $ telexNumber $
+ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $
+ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $
+ postalAddress $ physicalDeliveryOfficeName $ st $ l ) X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.11 NAME 'applicationProcess' SUP top STRUCTURAL MUST cn
+ MAY ( seeAlso $ ou $ l $ description ) X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.12 NAME 'applicationEntity' SUP top STRUCTURAL
+ MUST ( presentationAddress $ cn ) MAY ( supportedApplicationContext $
+ seeAlso $ ou $ o $ l $ description ) X-ORIGIN 'RFC 2256' )
+objectClasses: ( 2.5.6.13 NAME 'dSA' SUP applicationEntity STRUCTURAL
+ MAY knowledgeInformation X-ORIGIN 'RFC 2256' )
+objectClasses: ( 2.5.6.14 NAME 'device' SUP top STRUCTURAL MUST cn
+ MAY ( serialNumber $ seeAlso $ owner $ ou $ o $ l $ description )
+ X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.15 NAME 'strongAuthenticationUser' SUP top AUXILIARY
+ MUST userCertificate X-ORIGIN 'RFC 4523' )
+objectClasses: ( 2.5.6.16 NAME 'certificationAuthority' SUP top AUXILIARY
+ MUST ( authorityRevocationList $ certificateRevocationList $ caCertificate )
+ MAY crossCertificatePair X-ORIGIN 'RFC 4523' )
+objectClasses: ( 2.5.6.16.2 NAME 'certificationAuthority-V2'
+ SUP certificationAuthority AUXILIARY MAY deltaRevocationList
+ X-ORIGIN 'RFC 4523' )
+objectClasses: ( 2.5.6.17 NAME 'groupOfUniqueNames' SUP top STRUCTURAL
+ MUST cn MAY ( uniqueMember $ businessCategory $ seeAlso $ owner $ ou $ o $
+ description ) X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.5.6.18 NAME 'userSecurityInformation' SUP top AUXILIARY
+ MAY ( supportedAlgorithms ) X-ORIGIN 'RFC 4523' )
+objectClasses: ( 2.5.6.19 NAME 'cRLDistributionPoint' SUP top STRUCTURAL
+ MUST cn MAY ( certificateRevocationList $ authorityRevocationList $
+ deltaRevocationList ) X-ORIGIN 'RFC 4523' )
+objectClasses: ( 2.5.6.20 NAME 'dmd' SUP top STRUCTURAL MUST dmdName
+ MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $ x121Address $
+ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $
+ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $
+ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $
+ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $
+ description ) X-ORIGIN 'RFC 2256' )
+objectClasses: ( 1.3.6.1.4.1.1466.101.120.111 NAME 'extensibleObject' SUP top
+ AUXILIARY X-ORIGIN 'RFC 4512' )
+objectClasses: ( 2.5.20.1 NAME 'subschema' AUXILIARY MAY ( dITStructureRules $
+ nameForms $ ditContentRules $ objectClasses $ attributeTypes $ matchingRules $
+ matchingRuleUse ) X-ORIGIN 'RFC 4512' )
+objectClasses: ( 0.9.2342.19200300.100.4.5 NAME 'account' SUP top STRUCTURAL
+ MUST uid MAY ( description $ seeAlso $ l $ o $ ou $ host )
+ X-ORIGIN 'RFC 4524' )
+objectClasses: ( 0.9.2342.19200300.100.4.6 NAME 'document' SUP top STRUCTURAL
+ MUST documentIdentifier MAY ( cn $ description $ seeAlso $ l $ o $ ou $
+ documentTitle $ documentVersion $ documentAuthor $ documentLocation $
+ documentPublisher ) X-ORIGIN 'RFC 4524' )
+objectClasses: ( 0.9.2342.19200300.100.4.9 NAME 'documentSeries' SUP top
+ STRUCTURAL MUST cn MAY ( description $ l $ o $ ou $ seeAlso $
+ telephoneNumber ) X-ORIGIN 'RFC 4524' )
+objectClasses: ( 0.9.2342.19200300.100.4.13 NAME 'domain' SUP top STRUCTURAL
+ MUST dc MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $
+ x121Address $ registeredAddress $ destinationIndicator $
+ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $
+ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $
+ street $ postOfficeBox $ postalCode $ postalAddress $
+ physicalDeliveryOfficeName $ st $ l $ description $ o $ associatedName )
+ X-ORIGIN 'RFC 4524' )
+objectClasses: ( 0.9.2342.19200300.100.4.17 NAME 'domainRelatedObject' SUP top
+ AUXILIARY MUST associatedDomain X-ORIGIN 'RFC 4524' )
+objectClasses: ( 0.9.2342.19200300.100.4.18 NAME 'friendlyCountry' SUP country
+ STRUCTURAL MUST co X-ORIGIN 'RFC 4524' )
+objectClasses: ( 0.9.2342.19200300.100.4.14 NAME 'rFC822LocalPart' SUP domain
+ STRUCTURAL MAY ( cn $ description $ destinationIndicator $
+ facsimileTelephoneNumber $ internationaliSDNNumber $
+ physicalDeliveryOfficeName $ postalAddress $ postalCode $ postOfficeBox $
+ preferredDeliveryMethod $ registeredAddress $ seeAlso $ sn $ street $
+ telephoneNumber $ teletexTerminalIdentifier $ telexNumber $ x121Address )
+ X-ORIGIN 'RFC 4524' )
+objectClasses: ( 0.9.2342.19200300.100.4.7 NAME 'room' SUP top STRUCTURAL
+ MUST cn MAY ( roomNumber $ description $ seeAlso $ telephoneNumber )
+ X-ORIGIN 'RFC 4524' )
+objectClasses: ( 0.9.2342.19200300.100.4.19 NAME 'simpleSecurityObject' SUP top
+ AUXILIARY MUST userPassword X-ORIGIN 'RFC 4524' )
+objectClasses: ( 1.3.6.1.4.1.1466.344 NAME 'dcObject' SUP top AUXILIARY MUST dc
+ X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.16.840.1.113730.3.2.2 NAME 'inetOrgPerson'
+ SUP organizationalPerson STRUCTURAL MAY ( audio $ businessCategory $
+ carLicense $ departmentNumber $ displayName $ employeeNumber $ employeeType $
+ givenName $ homePhone $ homePostalAddress $ initials $ jpegPhoto $
+ labeledURI $ mail $ manager $ mobile $ o $ pager $ photo $ roomNumber $
+ secretary $ uid $ userCertificate $ x500UniqueIdentifier $
+ preferredLanguage $ userSMIMECertificate $ userPKCS12 ) X-ORIGIN 'RFC 2798' )
+objectClasses: ( 1.3.6.1.4.1.250.3.15 NAME 'labeledURIObject'
+ DESC 'object that contains the URI attribute type' SUP top AUXILIARY
+ MAY labeledURI X-ORIGIN 'RFC 2079' )
+objectClasses: ( 1.3.6.1.4.1.5322.13.1.1 NAME 'namedObject' SUP top STRUCTURAL
+ MAY cn X-ORIGIN 'draft-howard-namedobject' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.900 NAME 'untypedObject'
+ DESC 'Entry of no particular type' SUP top STRUCTURAL MAY ( c $ cn $ dc $ l $
+ o $ ou $ st $ street $ uid $ description $ owner $ seeAlso )
+ X-ORIGIN 'draft-furuseth-ldap-untypedobject' )
+objectClasses: ( 1.3.6.1.1.3.1 NAME 'uidObject' SUP top AUXILIARY MUST uid
+ X-ORIGIN 'RFC 4519' )
+objectClasses: ( 2.16.840.1.113730.3.2.6 NAME 'referral'
+ DESC 'named subordinate reference object' STRUCTURAL MUST ref
+ X-ORIGIN 'RFC 3296' )
+objectClasses: ( 2.16.840.1.113719.2.142.6.1.1 NAME 'ldapSubEntry'
+ DESC 'LDAP Subentry class, version 1' SUP top STRUCTURAL MAY ( cn )
+ X-ORIGIN 'draft-ietf-ldup-subentry' )
+objectClasses: ( 1.3.6.1.4.1.7628.5.6.1.1 NAME 'inheritableLDAPSubEntry'
+ DESC 'Inheritable LDAP Subentry class, version 1' SUP ldapSubEntry
+ STRUCTURAL MUST ( inheritable ) MAY ( blockInheritance )
+ X-ORIGIN 'draft-ietf-ldup-subentry' )
+objectClasses: ( 2.16.840.1.113730.3.2.33 NAME 'groupOfURLs'
+ DESC 'Sun-defined objectclass' SUP top STRUCTURAL MUST ( cn )
+ MAY ( memberURL $ businessCategory $ description $ o $ ou $ owner $ seeAlso )
+ X-ORIGIN 'Sun Java System Directory Server' )
+objectClasses: ( 0.9.2342.19200300.100.4.3 NAME 'pilotObject'
+ SUP top MAY ( audio $ dITRedirect $ info $ jpegPhoto $ lastModifiedBy $
+ lastModifiedTime $ manager $ photo $ uniqueIdentifier ) X-ORIGIN 'RFC 1274' )
+objectClasses: ( 0.9.2342.19200300.100.4.4 NAME 'pilotPerson'
+ SUP person MAY ( userid $ textEncodedORAddress $ rfc822Mailbox $
+ favouriteDrink $ roomNumber $ userClass $ homeTelephoneNumber $
+ homePostalAddress $ secretary $ personalTitle $ preferredDeliveryMethod $
+ businessCategory $ janetMailbox $ otherMailbox $ mobileTelephoneNumber $
+ pagerTelephoneNumber $ organizationalStatus $ mailPreferenceOption $
+ personalSignature ) X-ORIGIN 'RFC 1274' )
+objectClasses: ( 0.9.2342.19200300.100.4.20 NAME 'pilotOrganization' SUP top
+ MUST ( ou $ o ) MAY ( buildingName $ businessCategory $ description $
+ destinationIndicator $ facsimileTelephoneNumber $ internationaliSDNNumber $
+ l $ physicalDeliveryOfficeName $ postOfficeBox $ postalAddress $ postalCode $
+ preferredDeliveryMethod $ registeredAddress $ searchGuide $ seeAlso $ st $
+ street $ telephoneNumber $ teletexTerminalIdentifier $ telexNumber $
+ userPassword $ x121Address ) X-ORIGIN 'RFC 1274' )
+objectClasses: ( 0.9.2342.19200300.100.4.15 NAME 'dNSDomain' SUP domain
+ MAY ( ARecord $ MDRecord $ MXRecord $ NSRecord $ SOARecord $ CNAMERecord )
+ X-ORIGIN 'RFC 1274' )
+objectClasses: ( 0.9.2342.19200300.100.4.21 NAME 'pilotDSA' SUP dSA
+ MUST dSAQuality X-ORIGIN 'RFC 1274' )
+objectClasses: ( 0.9.2342.19200300.100.4.22 NAME 'qualityLabelledData' SUP top
+ MUST dSAQuality MAY ( subtreeMinimumQuality $ subtreeMaximumQuality )
+ X-ORIGIN 'RFC 1274' )
+objectClasses: ( 1.2.826.0.1.3458854.2.1.1 NAME 'groupOfEntries' SUP top
+ STRUCTURAL MUST cn MAY ( member $ businessCategory $ seeAlso $ owner $ ou $
+ o $ description ) X-ORIGIN 'draft-findlay-ldap-groupofentries' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/01-pwpolicy.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/01-pwpolicy.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/01-pwpolicy.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,118 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from draft-behera-ldap-password-policy,
+# which defines a mechanism for storing password policy information in an LDAP
+# directory server.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.1 NAME 'pwdAttribute'
+ EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.2 NAME 'pwdMinAge'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.3 NAME 'pwdMaxAge'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.4 NAME 'pwdInHistory'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.5 NAME 'pwdCheckQuality'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.6 NAME 'pwdMinLength'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.7 NAME 'pwdExpireWarning'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.8 NAME 'pwdGraceAuthNLimit'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.9 NAME 'pwdLockout'
+ EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.10 NAME 'pwdLockoutDuration'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.11 NAME 'pwdMaxFailure'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.12 NAME 'pwdFailureCountInterval'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.13 NAME 'pwdMustChange'
+ EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.14 NAME 'pwdAllowUserChange'
+ EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.15 NAME 'pwdSafeModify'
+ EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.16 NAME 'pwdChangedTime'
+ DESC 'The time the password was last changed' EQUALITY generalizedTimeMatch
+ ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.17 NAME 'pwdAccountLockedTime'
+ DESC 'The time an user account was locked' EQUALITY generalizedTimeMatch
+ ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.19 NAME 'pwdFailureTime'
+ DESC 'The timestamps of the last consecutive authentication failures'
+ EQUALITY generalizedTimeMatch ORDERING generalizedTimeOrderingMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 NO-USER-MODIFICATION
+ USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.20 NAME 'pwdHistory'
+ DESC 'The history of user s passwords' EQUALITY octetStringMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 NO-USER-MODIFICATION
+ USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.21 NAME 'pwdGraceUseTime'
+ DESC 'The timestamps of the grace authentication after the password has
+ expired' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.22 NAME 'pwdReset'
+ DESC 'The indication that the password has been reset' EQUALITY booleanMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.23 NAME 'pwdPolicySubentry'
+ DESC 'The pwdPolicy subentry in effect for this object'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.8.2.1 NAME 'pwdPolicy' SUP top AUXILIARY
+ MUST ( pwdAttribute ) MAY ( pwdMinAge $ pwdMaxAge $ pwdInHistory $
+ pwdCheckQuality $ pwdMinLength $ pwdExpireWarning $ pwdGraceAuthNLimit $
+ pwdLockout $ pwdLockoutDuration $ pwdMaxFailure $ pwdFailureCountInterval $
+ pwdMustChange $ pwdAllowUserChange $ pwdSafeModify )
+ X-ORIGIN 'draft-behera-ldap-password-policy' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/02-config.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/02-config.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/02-config.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,3739 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains the attribute type and objectclass definitions for use
+# with the Directory Server configuration.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.1
+ NAME 'ds-cfg-java-class'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.2
+ NAME 'ds-cfg-enabled'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.3
+ NAME 'ds-cfg-allow-attribute-name-exceptions'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.4
+ NAME 'ds-cfg-allowed-client'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.5
+ NAME 'ds-cfg-allow-ldap-v2'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.6
+ NAME 'ds-cfg-allow-start-tls'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.7
+ NAME 'ds-cfg-allow-tcp-reuse-address'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.8
+ NAME 'ds-cfg-base-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.9
+ NAME 'ds-cfg-db-directory'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.10
+ NAME 'ds-cfg-backend-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.11
+ NAME 'ds-cfg-index-entry-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.13
+ NAME 'ds-cfg-alternate-bind-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.14
+ NAME 'ds-cfg-certificate-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.15
+ NAME 'ds-cfg-check-schema'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.16
+ NAME 'ds-cfg-certificate-validation-policy'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.17
+ NAME 'ds-cfg-db-cache-percent'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.18
+ NAME 'ds-cfg-db-cleaner-min-utilization'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.19
+ NAME 'ds-cfg-db-cache-size'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.20
+ NAME 'ds-cfg-db-run-cleaner'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.21
+ NAME 'ds-cfg-db-txn-no-sync'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.22
+ NAME 'ds-cfg-db-txn-write-no-sync'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.23
+ NAME 'ds-cfg-default-severity'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.24
+ NAME 'ds-cfg-denied-client'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.25
+ NAME 'ds-cfg-enable-profiling-on-startup'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.26
+ NAME 'ds-cfg-exclude-filter'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.27
+ NAME 'ds-cfg-rotation-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.28
+ NAME 'ds-cfg-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.29
+ NAME 'ds-cfg-index-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.30
+ NAME 'ds-cfg-include-filter'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.31
+ NAME 'ds-cfg-invalid-attribute-syntax-behavior'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.32
+ NAME 'ds-cfg-kdc-address'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.33
+ NAME 'ds-cfg-keytab'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.34
+ NAME 'ds-cfg-keep-stats'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.35
+ NAME 'ds-cfg-key-store-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.36
+ NAME 'ds-cfg-key-store-pin'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.37
+ NAME 'ds-cfg-key-store-pin-environment-variable'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.38
+ NAME 'ds-cfg-key-store-pin-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.39
+ NAME 'ds-cfg-key-store-pin-property'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.40
+ NAME 'ds-cfg-key-store-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.41
+ NAME 'ds-cfg-listen-address'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.42
+ NAME 'ds-cfg-listen-port'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.43
+ NAME 'ds-cfg-lock-timeout'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.44
+ NAME 'ds-cfg-log-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.45
+ NAME 'ds-cfg-max-allowed-client-connections'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.46
+ NAME 'ds-cfg-max-entries'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.47
+ NAME 'ds-cfg-max-memory-percent'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.48
+ NAME 'ds-cfg-max-request-size'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.49
+ NAME 'ds-cfg-max-work-queue-capacity'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.50
+ NAME 'ds-cfg-notify-abandoned-operations'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.51
+ NAME 'ds-cfg-num-request-handlers'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.52
+ NAME 'ds-cfg-num-worker-threads'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.53
+ NAME 'ds-cfg-override-severity'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.54
+ NAME 'ds-cfg-plugin-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.55
+ NAME 'ds-cfg-profile-action'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.56
+ NAME 'ds-cfg-profile-directory'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.57
+ NAME 'ds-cfg-profiler-state'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ NO-USER-MODIFICATION
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.58
+ NAME 'ds-cfg-profile-sample-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.59
+ NAME 'ds-cfg-realm'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.60
+ NAME 'ds-recurring-task-class-name'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.61
+ NAME 'ds-recurring-task-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.62
+ NAME 'ds-cfg-rotation-action'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.63
+ NAME 'ds-cfg-rotation-policy'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.64
+ NAME 'ds-cfg-retention-policy'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.65
+ NAME 'ds-cfg-number-of-files'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.66
+ NAME 'ds-cfg-disk-space-used'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.67
+ NAME 'ds-cfg-free-disk-space'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.68
+ NAME 'ds-task-shutdown-message'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.69
+ NAME 'ds-task-actual-start-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.70
+ NAME 'ds-cfg-task-backing-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.71
+ NAME 'ds-task-class-name'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.72
+ NAME 'ds-task-completion-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.73
+ NAME 'ds-task-dependency-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.74
+ NAME 'ds-task-failed-dependency-action'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.75
+ NAME 'ds-task-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.76
+ NAME 'ds-task-log-message'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.77
+ NAME 'ds-task-notify-on-completion'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.78
+ NAME 'ds-task-notify-on-error'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.79
+ NAME 'ds-cfg-task-retention-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.80
+ NAME 'ds-task-scheduled-start-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.81
+ NAME 'ds-task-state'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.82
+ NAME 'ds-cfg-time-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.83
+ NAME 'ds-cfg-buffer-size'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.84
+ NAME 'ds-cfg-schema-entry-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.85
+ NAME 'ds-cfg-send-rejection-notice'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.86
+ NAME 'ds-cfg-server-fqdn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.87
+ NAME 'ds-task-shutdown-password'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.88
+ NAME 'ds-cfg-single-structural-objectclass-behavior'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.89
+ NAME 'ds-cfg-size-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.90
+ NAME 'ds-cfg-ssl-client-auth-policy'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.91
+ NAME 'ds-cfg-ssl-cert-nickname'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.92
+ NAME 'ds-cfg-strict-format'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.93
+ NAME 'ds-cfg-subordinate-base-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.94
+ NAME 'ds-cfg-suppress-internal-operations'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.95
+ NAME 'ds-cfg-time-of-day'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.36
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.96
+ NAME 'ds-cfg-trust-store-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.97
+ NAME 'ds-cfg-trust-store-pin'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.98
+ NAME 'ds-cfg-trust-store-pin-environment-variable'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.99
+ NAME 'ds-cfg-trust-store-pin-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.100
+ NAME 'ds-cfg-trust-store-pin-property'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.101
+ NAME 'ds-cfg-trust-store-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.102
+ NAME 'ds-cfg-user-base-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.103
+ NAME 'ds-cfg-user-name-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.104
+ NAME 'ds-cfg-use-ssl'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.105
+ NAME 'ds-cfg-use-tcp-keep-alive'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.106
+ NAME 'ds-cfg-use-tcp-no-delay'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.107
+ NAME 'ds-cfg-allow-zero-length-values'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.108
+ NAME 'ds-cfg-show-all-attributes'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.109
+ NAME 'ds-cfg-add-missing-rdn-attributes'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.110
+ NAME 'ds-cfg-server-error-result-code'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.111
+ NAME 'ds-cfg-match-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.112
+ NAME 'ds-cfg-match-base-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.113
+ NAME 'ds-cfg-identity-mapper'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.114
+ NAME 'ds-cfg-proxied-authorization-identity-mapper'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.115
+ NAME 'ds-cfg-time-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.116
+ NAME 'ds-rlim-size-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.117
+ NAME 'ds-rlim-time-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.118
+ NAME 'ds-cfg-accept-backlog'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.119
+ NAME 'ds-sync-hist'
+ ORDERING historicalCsnOrderingMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.120
+ NAME 'ds-cfg-receive-status'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.121
+ NAME 'ds-cfg-replication-port'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.122
+ NAME 'ds-cfg-replication-server'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.123
+ NAME 'ds-cfg-writability-mode'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.124
+ NAME 'ds-cfg-bind-with-dn-requires-password'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.125
+ NAME 'ds-cfg-max-receive-queue'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.126
+ NAME 'ds-cfg-max-receive-delay'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.127
+ NAME 'ds-cfg-max-send-queue'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.128
+ NAME 'ds-cfg-max-send-delay'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.129
+ NAME 'ds-cfg-max-password-length'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.130
+ NAME 'ds-cfg-min-password-length'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.131
+ NAME 'ds-cfg-password-character-set'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.132
+ NAME 'ds-cfg-password-format'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.133
+ NAME 'ds-cfg-account-status-notification-handler'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.134
+ NAME 'ds-cfg-allow-expired-password-changes'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.135
+ NAME 'ds-cfg-allow-pre-encoded-passwords'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.136
+ NAME 'ds-cfg-allow-user-password-changes'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.137
+ NAME 'ds-cfg-default-password-storage-scheme'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.138
+ NAME 'ds-cfg-deprecated-password-storage-scheme'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.139
+ NAME 'ds-cfg-expire-passwords-without-warning'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.140
+ NAME 'ds-cfg-force-change-on-reset'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.141
+ NAME 'ds-cfg-grace-login-count'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.142
+ NAME 'ds-cfg-idle-lockout-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.143
+ NAME 'ds-cfg-last-login-time-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.144
+ NAME 'ds-cfg-last-login-time-format'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.145
+ NAME 'ds-cfg-lockout-duration'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.146
+ NAME 'ds-cfg-lockout-failure-count'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.147
+ NAME 'ds-cfg-lockout-failure-expiration-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.148
+ NAME 'ds-cfg-max-password-age'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.149
+ NAME 'ds-cfg-max-password-reset-age'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.150
+ NAME 'ds-cfg-min-password-age'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.151
+ NAME 'ds-cfg-password-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.152
+ NAME 'ds-cfg-password-expiration-warning-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.153
+ NAME 'ds-cfg-password-generator'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.154
+ NAME 'ds-cfg-password-validator'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.155
+ NAME 'ds-cfg-previous-last-login-time-format'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.156
+ NAME 'ds-cfg-require-change-by-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.157
+ NAME 'ds-cfg-password-change-requires-current-password'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.158
+ NAME 'ds-cfg-require-secure-authentication'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.159
+ NAME 'ds-cfg-require-secure-password-changes'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.160
+ NAME 'ds-cfg-skip-validation-for-administrators'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.161
+ NAME 'ds-cfg-default-password-policy'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.162
+ NAME 'ds-pwp-last-login-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.163
+ NAME 'ds-pwp-password-changed-by-required-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.164
+ NAME 'ds-pwp-reset-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.165
+ NAME 'ds-pwp-warned-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.166
+ NAME 'ds-pwp-account-disabled'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.167
+ NAME 'ds-cfg-force-change-on-add'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.168
+ NAME 'ds-cfg-allow-multiple-password-values'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.169
+ NAME 'ds-task-import-ldif-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.459
+ NAME 'ds-task-import-template-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.460
+ NAME 'ds-task-import-random-seed'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.170
+ NAME 'ds-task-import-append'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.171
+ NAME 'ds-task-import-replace-existing'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.172
+ NAME 'ds-task-import-backend-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.173
+ NAME 'ds-task-import-include-branch'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.174
+ NAME 'ds-task-import-exclude-branch'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.175
+ NAME 'ds-task-import-include-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.176
+ NAME 'ds-task-import-exclude-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.177
+ NAME 'ds-task-import-include-filter'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.178
+ NAME 'ds-task-import-exclude-filter'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.179
+ NAME 'ds-task-import-reject-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.180
+ NAME 'ds-task-import-overwrite-rejects'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.181
+ NAME 'ds-task-import-skip-schema-validation'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.182
+ NAME 'ds-task-import-is-compressed'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.183
+ NAME 'ds-task-import-is-encrypted'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.184
+ NAME 'ds-task-restart-server'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.185
+ NAME 'ds-sync-state'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.186
+ NAME 'ds-cfg-backup-directory'
+ EQUALITY caseExactMatch
+ SUBSTR caseExactSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.187
+ NAME 'ds-backup-compressed'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.188
+ NAME 'ds-backup-date'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.189
+ NAME 'ds-backup-dependency'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.190
+ NAME 'ds-backup-directory-path'
+ EQUALITY caseExactMatch
+ SUBSTR caseExactSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.191
+ NAME 'ds-backup-encrypted'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.192
+ NAME 'ds-backup-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.193
+ NAME 'ds-backup-incremental'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.194
+ NAME 'ds-backup-signed-hash'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.195
+ NAME 'ds-backup-unsigned-hash'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.196
+ NAME 'ds-backup-backend-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.197
+ NAME 'ds-task-export-ldif-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.198
+ NAME 'ds-task-export-append-to-ldif'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.199
+ NAME 'ds-task-export-backend-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.200
+ NAME 'ds-task-export-include-branch'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.201
+ NAME 'ds-task-export-exclude-branch'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.202
+ NAME 'ds-task-export-include-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.203
+ NAME 'ds-task-export-exclude-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.204
+ NAME 'ds-task-export-include-filter'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.205
+ NAME 'ds-task-export-exclude-filter'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.206
+ NAME 'ds-task-export-wrap-column'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.207
+ NAME 'ds-task-export-compress-ldif'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.208
+ NAME 'ds-task-export-encrypt-ldif'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.209
+ NAME 'ds-task-export-sign-hash'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.210
+ NAME 'ds-task-restore-verify-only'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.211
+ NAME 'ds-task-backup-backend-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.212
+ NAME 'ds-task-backup-all'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.213
+ NAME 'ds-task-backup-incremental'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.214
+ NAME 'ds-task-backup-incremental-base-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.215
+ NAME 'ds-task-backup-compress'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.216
+ NAME 'ds-task-backup-encrypt'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.217
+ NAME 'ds-task-backup-hash'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.218
+ NAME 'ds-task-backup-sign-hash'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.219
+ NAME 'ds-cfg-preload-time-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.222
+ NAME 'ds-cfg-import-queue-size'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.223
+ NAME 'ds-cfg-import-thread-count'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.224
+ NAME 'ds-cfg-entries-compressed'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.226
+ NAME 'ds-cfg-db-evictor-lru-only'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.227
+ NAME 'ds-cfg-db-evictor-nodes-per-scan'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.228
+ NAME 'ds-cfg-db-log-file-max'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.229
+ NAME 'ds-cfg-db-logging-file-handler-on'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.230
+ NAME 'ds-cfg-db-logging-level'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.231
+ NAME 'ds-cfg-db-checkpointer-bytes-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.232
+ NAME 'ds-cfg-db-checkpointer-wakeup-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.233
+ NAME 'ds-cfg-db-num-lock-tables'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.235
+ NAME 'ds-cfg-replication-server-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.236
+ NAME 'ds-cfg-server-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.237
+ NAME 'ds-pwp-account-expiration-time'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.238
+ NAME 'ds-cfg-account-status-notification-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.239
+ NAME 'ds-cfg-db-num-cleaner-threads'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.240
+ NAME 'ds-cfg-lookthrough-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.241
+ NAME 'ds-rlim-lookthrough-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.242
+ NAME 'ds-cfg-db-directory-permissions'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.243
+ NAME 'ds-cfg-window-size'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.244
+ NAME 'ds-pwp-password-policy-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.245
+ NAME 'ds-cfg-queue-size'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.246
+ NAME 'ds-private-naming-contexts'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.247
+ NAME 'ds-backend-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.248
+ NAME 'ds-backend-base-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.249
+ NAME 'ds-backend-entry-count'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.250
+ NAME 'ds-backend-writability-mode'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.251
+ NAME 'ds-connectionhandler-connection'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.252
+ NAME 'ds-connectionhandler-listener'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.253
+ NAME 'ds-connectionhandler-num-connections'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.254
+ NAME 'ds-connectionhandler-protocol'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.255
+ NAME 'ds-backend-is-private'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.256
+ NAME 'ds-cfg-reject-unauthenticated-requests'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.257
+ NAME 'ds-task-schema-file-name'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.258
+ NAME 'ds-cfg-heartbeat-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.259
+ NAME 'ds-cfg-replication-db-directory'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.260
+ NAME 'ds-privilege-name'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.261
+ NAME 'ds-cfg-default-root-privilege-name'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.262
+ NAME 'ds-cfg-certificate-mapper'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.263
+ NAME 'ds-cfg-key-manager-provider'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.264
+ NAME 'ds-cfg-trust-manager-provider'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.265
+ NAME 'ds-cfg-subject-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.266
+ NAME 'ds-certificate-subject-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.267
+ NAME 'ds-cfg-subject-attribute-mapping'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.268
+ NAME 'ds-certificate-fingerprint'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.269
+ NAME 'ds-cfg-fingerprint-attribute'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.270
+ NAME 'ds-cfg-fingerprint-algorithm'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.271
+ NAME 'ds-cfg-replication-purge-delay'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.272
+ NAME 'ds-cfg-global-aci'
+ SYNTAX 1.3.6.1.4.1.26027.1.3.4
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.273
+ NAME 'ds-cfg-min-password-difference'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.274
+ NAME 'ds-cfg-min-unique-characters'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.275
+ NAME 'ds-cfg-max-consecutive-length'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.276
+ NAME 'ds-cfg-case-sensitive-validation'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.277
+ NAME 'ds-cfg-attribute-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.278
+ NAME 'ds-cfg-group-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.279
+ NAME 'ds-cfg-filter'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.280
+ NAME 'ds-cfg-conflict-behavior'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.281
+ NAME 'ds-task-initialize-domain-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.282
+ NAME 'ds-task-initialize-replica-server-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.283
+ NAME 'ds-task-unprocessed-entry-count'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.284
+ NAME 'ds-task-processed-entry-count'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.285
+ NAME 'ds-cfg-dictionary-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.286
+ NAME 'ds-cfg-test-reversed-password'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.287
+ NAME 'ds-cfg-character-set'
+ EQUALITY caseExactMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.288
+ NAME 'ds-cfg-allow-unclassified-characters'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.289
+ NAME 'ds-task-rebuild-base-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.290
+ NAME 'ds-task-rebuild-index'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.291
+ NAME 'ds-task-rebuild-max-threads'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.292
+ NAME 'ds-target-group-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.293
+ NAME 'ds-cfg-value'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.294
+ NAME 'ds-cfg-default-debug-level'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.295
+ NAME 'ds-cfg-default-debug-category'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.296
+ NAME 'ds-cfg-default-omit-method-entry-arguments'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.297
+ NAME 'ds-cfg-default-omit-method-return-value'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.298
+ NAME 'ds-cfg-default-include-throwable-cause'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.299
+ NAME 'ds-cfg-default-throwable-stack-frames'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.300
+ NAME 'ds-cfg-debug-scope'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.301
+ NAME 'ds-cfg-debug-level'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.302
+ NAME 'ds-cfg-debug-category'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.303
+ NAME 'ds-cfg-omit-method-entry-arguments'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.304
+ NAME 'ds-cfg-omit-method-return-value'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.305
+ NAME 'ds-cfg-include-throwable-cause'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.306
+ NAME 'ds-cfg-throwable-stack-frames'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.307
+ NAME 'ds-cfg-asynchronous'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.308
+ NAME 'ds-cfg-log-file-permissions'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.309
+ NAME 'ds-cfg-auto-flush'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.310
+ NAME 'ds-cfg-append'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.311
+ NAME 'ds-cfg-max-memory-size'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.312
+ NAME 'ds-cfg-cache-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.313
+ NAME 'ds-cfg-cache-directory'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.314
+ NAME 'ds-cfg-persistent-cache'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.315
+ NAME 'ds-cfg-allow-retrieving-membership'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.316
+ NAME 'ds-cfg-file-size-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.317
+ NAME 'ds-sync-conflict'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.319
+ NAME 'ds-cfg-substring-length'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.320
+ NAME 'ds-cfg-plugin-order-startup'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.321
+ NAME 'ds-cfg-plugin-order-shutdown'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.322
+ NAME 'ds-cfg-plugin-order-post-connect'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.323
+ NAME 'ds-cfg-plugin-order-post-disconnect'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.324
+ NAME 'ds-cfg-plugin-order-ldif-import'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.325
+ NAME 'ds-cfg-plugin-order-ldif-export'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.326
+ NAME 'ds-cfg-plugin-order-pre-parse-abandon'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.327
+ NAME 'ds-cfg-plugin-order-pre-parse-add'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.328
+ NAME 'ds-cfg-plugin-order-pre-parse-bind'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.329
+ NAME 'ds-cfg-plugin-order-pre-parse-compare'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.330
+ NAME 'ds-cfg-plugin-order-pre-parse-delete'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.331
+ NAME 'ds-cfg-plugin-order-pre-parse-extended'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.332
+ NAME 'ds-cfg-plugin-order-pre-parse-modify'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.333
+ NAME 'ds-cfg-plugin-order-pre-parse-modify-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.334
+ NAME 'ds-cfg-plugin-order-pre-parse-search'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.335
+ NAME 'ds-cfg-plugin-order-pre-parse-unbind'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.336
+ NAME 'ds-cfg-plugin-order-pre-operation-add'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.337
+ NAME 'ds-cfg-plugin-order-pre-operation-bind'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.338
+ NAME 'ds-cfg-plugin-order-pre-operation-compare'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.339
+ NAME 'ds-cfg-plugin-order-pre-operation-delete'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.340
+ NAME 'ds-cfg-plugin-order-pre-operation-extended'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.341
+ NAME 'ds-cfg-plugin-order-pre-operation-modify'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.342
+ NAME 'ds-cfg-plugin-order-pre-operation-modify-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.343
+ NAME 'ds-cfg-plugin-order-pre-operation-search'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.344
+ NAME 'ds-cfg-plugin-order-post-operation-abandon'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.345
+ NAME 'ds-cfg-plugin-order-post-operation-add'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.346
+ NAME 'ds-cfg-plugin-order-post-operation-bind'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.347
+ NAME 'ds-cfg-plugin-order-post-operation-compare'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.348
+ NAME 'ds-cfg-plugin-order-post-operation-delete'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.349
+ NAME 'ds-cfg-plugin-order-post-operation-extended'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.350
+ NAME 'ds-cfg-plugin-order-post-operation-modify'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.351
+ NAME 'ds-cfg-plugin-order-post-operation-modify-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.352
+ NAME 'ds-cfg-plugin-order-post-operation-search'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.353
+ NAME 'ds-cfg-plugin-order-post-operation-unbind'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.354
+ NAME 'ds-cfg-plugin-order-post-response-add'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.355
+ NAME 'ds-cfg-plugin-order-post-response-bind'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.356
+ NAME 'ds-cfg-plugin-order-post-response-compare'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.357
+ NAME 'ds-cfg-plugin-order-post-response-delete'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.358
+ NAME 'ds-cfg-plugin-order-post-response-extended'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.359
+ NAME 'ds-cfg-plugin-order-post-response-modify'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.360
+ NAME 'ds-cfg-plugin-order-post-response-modify-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.361
+ NAME 'ds-cfg-plugin-order-post-response-search'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.362
+ NAME 'ds-cfg-plugin-order-search-result-entry'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.363
+ NAME 'ds-cfg-plugin-order-search-result-reference'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.364
+ NAME 'ds-cfg-plugin-order-intermediate-response'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.365
+ NAME 'ds-cfg-default-user-password-storage-scheme'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.366
+ NAME 'ds-cfg-default-auth-password-storage-scheme'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.367
+ NAME 'ds-cfg-strip-syntax-min-upper-bound'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.368
+ NAME 'ds-cfg-suppress-synchronization-operations'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.369
+ NAME 'ds-cfg-scope'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.370
+ NAME 'ds-cfg-sort-order'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.371
+ NAME 'ds-cfg-name'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.372
+ NAME 'ds-cfg-max-block-size'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.373
+ NAME 'ds-cfg-state-update-failure-policy'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.374
+ NAME 'ds-cfg-password-history-count'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.375
+ NAME 'ds-cfg-password-history-duration'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.376
+ NAME 'ds-cfg-smtp-server'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.377
+ NAME 'ds-cfg-sender-address'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.378
+ NAME 'ds-cfg-recipient-address'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.379
+ NAME 'ds-cfg-message-subject'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.380
+ NAME 'ds-cfg-message-body'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.381
+ NAME 'ds-task-import-clear-backend'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.382
+ NAME 'ds-cfg-je-property'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.383
+ NAME 'ds-task-disconnect-connection-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.384
+ NAME 'ds-task-disconnect-message'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.385
+ NAME 'ds-task-disconnect-notify-client'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.386
+ NAME 'ds-cfg-allowed-task'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.387
+ NAME 'ds-cfg-disabled-privilege'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.388
+ NAME 'ds-cfg-return-bind-error-messages'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.389
+ NAME 'ds-cfg-enabled-alert-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.390
+ NAME 'ds-cfg-disabled-alert-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.391
+ NAME 'ds-cfg-ssl-protocol'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.392
+ NAME 'ds-cfg-ssl-cipher-suite'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.393
+ NAME 'ds-cfg-idle-time-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.394
+ NAME 'ds-rlim-idle-time-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.395
+ NAME 'ds-cfg-notification-sender-address'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.396
+ NAME 'ds-cfg-plugin-order-subordinate-modify-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.397
+ NAME 'ds-cfg-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.398
+ NAME 'ds-cfg-match-pattern'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.399
+ NAME 'ds-cfg-replace-pattern'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.400
+ NAME 'ds-cfg-compact-encoding'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.401
+ NAME 'ds-cfg-update-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.402
+ NAME 'ds-cfg-email-address-attribute-type'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.403
+ NAME 'ds-cfg-send-message-without-end-user-address'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.404
+ NAME 'ds-cfg-message-template-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.405
+ NAME 'ds-sync-generation-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ USAGE directoryOperation
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.406
+ NAME 'ds-task-reset-generation-id-domain-base-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.407
+ NAME 'ds-cfg-ssl-encryption'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.408
+ NAME 'ds-cfg-public-key-certificate'
+ DESC 'cryptographic public-key certificate'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.8
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.409
+ NAME 'ds-cfg-key-id'
+ DESC 'cryptographic cipher-key unique identifier'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.410
+ NAME 'ds-cfg-key-compromised-time'
+ DESC 'The time a cryptographic cipher key was suspected to be compromised'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.411
+ NAME 'ds-cfg-save-config-on-successful-startup'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.412
+ NAME 'ds-cfg-max-blocked-write-time-limit'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.413
+ NAME 'ds-cfg-ldif-directory'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.414
+ NAME 'ds-cfg-poll-interval'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.415
+ NAME 'ds-cfg-plugin-order-post-synchronization-add'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.416
+ NAME 'ds-cfg-plugin-order-post-synchronization-delete'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.417
+ NAME 'ds-cfg-plugin-order-post-synchronization-modify'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.418
+ NAME 'ds-cfg-plugin-order-post-synchronization-modify-dn'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.419
+ NAME 'ds-cfg-invoke-for-internal-operations'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.420
+ NAME 'ds-cfg-ldif-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.421
+ NAME 'ds-cfg-is-private-backend'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.422
+ NAME 'ds-cfg-isolation-policy'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.423
+ NAME 'ds-cfg-cipher-transformation-name'
+ DESC 'The name of a cryptographic cipher transformation consisting of an
+ algorithm, a mode, and a padding specification, separated by slashes'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.424
+ NAME 'ds-cfg-mac-algorithm-name'
+ DESC 'The name of a cryptographic message authentication code (MAC) algorithm'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.425
+ NAME 'ds-cfg-key-length-bits'
+ DESC 'The length of a cryptographic secret key'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.426
+ NAME 'ds-cfg-initialization-vector-length-bits'
+ DESC 'The length of a cryptographic cipher initialization vector'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.427
+ NAME 'ds-cfg-symmetric-key'
+ DESC 'A cryptographic secret-key wrapped by a public-key'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.428
+ NAME 'ds-cfg-digest-algorithm'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.429
+ NAME 'ds-cfg-mac-algorithm'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.430
+ NAME 'ds-cfg-mac-key-length'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.431
+ NAME 'ds-cfg-cipher-transformation'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.432
+ NAME 'ds-cfg-cipher-key-length'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.433
+ NAME 'ds-cfg-key-wrapping-transformation'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.434
+ NAME 'ds-base-dn-entry-count'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.435
+ NAME 'ds-cfg-network-group-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.436
+ NAME 'ds-cfg-workflow-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.437
+ NAME 'ds-cfg-workflow'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.438
+ NAME 'ds-cfg-workflow-element-id'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.439
+ NAME 'ds-cfg-workflow-element'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.440
+ NAME 'ds-cfg-workflow-configuration-mode'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.441
+ NAME 'ds-cfg-backend'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.442
+ NAME 'ds-cfg-etime-resolution'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.444
+ NAME 'ds-task-reset-generation-id-new-value'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.445
+ NAME 'ds-cfg-cache-level'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.446
+ NAME 'ds-cfg-entry-cache-preload'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.447
+ NAME 'ds-cfg-num-update-replay-threads'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.448
+ NAME 'ds-cfg-trap-port'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.449
+ NAME 'ds-cfg-community'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.450
+ NAME 'ds-cfg-allowed-manager'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.451
+ NAME 'ds-cfg-allowed-user'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.452
+ NAME 'ds-cfg-security-level'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.453
+ NAME 'ds-cfg-traps-community'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.454
+ NAME 'ds-cfg-traps-destination'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.455
+ NAME 'ds-cfg-security-agent-file'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.456
+ NAME 'ds-cfg-registered-mbean'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.457
+ NAME 'ds-cfg-opendmk-jarfile'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.458
+ NAME 'ds-task-export-include-operational-attributes'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.1
+ NAME 'ds-cfg-access-control-handler'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.2
+ NAME 'ds-cfg-alert-handler'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ MAY ( ds-cfg-enabled-alert-type $
+ ds-cfg-disabled-alert-type )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.3
+ NAME 'ds-cfg-attribute-syntax'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.4
+ NAME 'ds-cfg-telephone-number-attribute-syntax'
+ SUP ds-cfg-attribute-syntax
+ STRUCTURAL
+ MAY ds-cfg-strict-format
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.5
+ NAME 'ds-cfg-backend'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-backend-id $
+ ds-cfg-base-dn $
+ ds-cfg-java-class $
+ ds-cfg-enabled $
+ ds-cfg-writability-mode )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.6
+ NAME 'ds-cfg-local-db-backend'
+ SUP ds-cfg-backend
+ STRUCTURAL
+ MUST ds-cfg-db-directory
+ MAY ( ds-cfg-index-entry-limit $
+ ds-cfg-preload-time-limit $
+ ds-cfg-import-queue-size $
+ ds-cfg-import-thread-count $
+ ds-cfg-entries-compressed $
+ ds-cfg-db-directory-permissions $
+ ds-cfg-db-cache-percent $
+ ds-cfg-db-cache-size $
+ ds-cfg-db-txn-no-sync $
+ ds-cfg-db-txn-write-no-sync $
+ ds-cfg-db-run-cleaner $
+ ds-cfg-db-cleaner-min-utilization $
+ ds-cfg-db-evictor-lru-only $
+ ds-cfg-db-evictor-nodes-per-scan $
+ ds-cfg-db-log-file-max $
+ ds-cfg-db-logging-file-handler-on $
+ ds-cfg-db-logging-level $
+ ds-cfg-db-checkpointer-bytes-interval $
+ ds-cfg-db-checkpointer-wakeup-interval $
+ ds-cfg-db-num-lock-tables $
+ ds-cfg-db-num-cleaner-threads $
+ ds-cfg-compact-encoding $
+ ds-cfg-je-property )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.7
+ NAME 'ds-cfg-local-db-index'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-attribute $
+ ds-cfg-index-type )
+ MAY ( ds-cfg-index-entry-limit $
+ ds-cfg-substring-length )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.8
+ NAME 'ds-cfg-schema-backend'
+ SUP ds-cfg-backend
+ STRUCTURAL
+ MAY ( ds-cfg-schema-entry-dn $
+ ds-cfg-show-all-attributes )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.9
+ NAME 'ds-cfg-task-backend'
+ SUP ds-cfg-backend
+ STRUCTURAL
+ MAY ( ds-cfg-task-backing-file $
+ ds-cfg-task-retention-time $
+ ds-cfg-notification-sender-address )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.10
+ NAME 'ds-cfg-branch'
+ SUP top
+ STRUCTURAL
+ MUST cn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.11
+ NAME 'ds-cfg-certificate-mapper'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.12
+ NAME 'ds-cfg-connection-handler'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ MAY ( ds-cfg-allowed-client $
+ ds-cfg-denied-client )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.13
+ NAME 'ds-cfg-ldap-connection-handler'
+ SUP ds-cfg-connection-handler
+ STRUCTURAL
+ MUST ds-cfg-listen-port
+ MAY ( ds-cfg-listen-address $
+ ds-cfg-allow-ldap-v2 $
+ ds-cfg-keep-stats $
+ ds-cfg-use-tcp-keep-alive $
+ ds-cfg-use-tcp-no-delay $
+ ds-cfg-allow-tcp-reuse-address $
+ ds-cfg-send-rejection-notice $
+ ds-cfg-max-request-size $
+ ds-cfg-num-request-handlers $
+ ds-cfg-allow-start-tls $
+ ds-cfg-use-ssl $
+ ds-cfg-ssl-client-auth-policy $
+ ds-cfg-ssl-cert-nickname $
+ ds-cfg-accept-backlog $
+ ds-cfg-key-manager-provider $
+ ds-cfg-trust-manager-provider $
+ ds-cfg-ssl-protocol $
+ ds-cfg-ssl-cipher-suite $
+ ds-cfg-max-blocked-write-time-limit )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.14
+ NAME 'ds-cfg-entry-cache'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled $
+ ds-cfg-cache-level )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.15
+ NAME 'ds-cfg-fifo-entry-cache'
+ SUP ds-cfg-entry-cache
+ STRUCTURAL
+ MAY ( ds-cfg-max-entries $
+ ds-cfg-max-memory-percent $
+ ds-cfg-lock-timeout $
+ ds-cfg-exclude-filter $
+ ds-cfg-include-filter )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.16
+ NAME 'ds-cfg-soft-reference-entry-cache'
+ SUP ds-cfg-entry-cache
+ STRUCTURAL
+ MAY ( ds-cfg-lock-timeout $
+ ds-cfg-exclude-filter $
+ ds-cfg-include-filter )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.17
+ NAME 'ds-cfg-extended-operation-handler'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.18
+ NAME 'ds-cfg-key-manager-provider'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.19
+ NAME 'ds-cfg-file-based-key-manager-provider'
+ SUP ds-cfg-key-manager-provider
+ STRUCTURAL
+ MUST ds-cfg-key-store-file
+ MAY ( ds-cfg-key-store-type $
+ ds-cfg-key-store-pin $
+ ds-cfg-key-store-pin-property $
+ ds-cfg-key-store-pin-environment-variable $
+ ds-cfg-key-store-pin-file )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.20
+ NAME 'ds-cfg-pkcs11-key-manager-provider'
+ SUP ds-cfg-key-manager-provider
+ STRUCTURAL
+ MAY ( ds-cfg-key-store-pin $
+ ds-cfg-key-store-pin-property $
+ ds-cfg-key-store-pin-environment-variable $
+ ds-cfg-key-store-pin-file )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.21
+ NAME 'ds-cfg-log-publisher'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-enabled $
+ ds-cfg-java-class )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.22
+ NAME 'ds-cfg-access-log-publisher'
+ SUP ds-cfg-log-publisher
+ STRUCTURAL
+ MAY ( ds-cfg-suppress-internal-operations $
+ ds-cfg-suppress-synchronization-operations )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.23
+ NAME 'ds-cfg-error-log-publisher'
+ SUP ds-cfg-log-publisher
+ STRUCTURAL
+ MAY ( ds-cfg-default-severity $
+ ds-cfg-override-severity )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.24
+ NAME 'ds-cfg-debug-log-publisher'
+ SUP ds-cfg-log-publisher
+ STRUCTURAL
+ MUST ds-cfg-default-debug-level
+ MAY ( ds-cfg-default-debug-category $
+ ds-cfg-default-omit-method-entry-arguments $
+ ds-cfg-default-omit-method-return-value $
+ ds-cfg-default-include-throwable-cause $
+ ds-cfg-default-throwable-stack-frames )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.25
+ NAME 'ds-cfg-file-based-access-log-publisher'
+ SUP ds-cfg-access-log-publisher
+ STRUCTURAL
+ MUST ( ds-cfg-log-file $
+ ds-cfg-asynchronous $
+ ds-cfg-log-file-permissions )
+ MAY ( ds-cfg-rotation-policy $
+ ds-cfg-rotation-action $
+ ds-cfg-retention-policy $
+ ds-cfg-time-interval $
+ ds-cfg-buffer-size $
+ ds-cfg-auto-flush $
+ ds-cfg-append $
+ ds-cfg-queue-size )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.26
+ NAME 'ds-cfg-file-based-debug-log-publisher'
+ SUP ds-cfg-debug-log-publisher
+ STRUCTURAL
+ MUST ( ds-cfg-log-file $
+ ds-cfg-asynchronous $
+ ds-cfg-log-file-permissions )
+ MAY ( ds-cfg-rotation-policy $
+ ds-cfg-rotation-action $
+ ds-cfg-retention-policy $
+ ds-cfg-time-interval $
+ ds-cfg-buffer-size $
+ ds-cfg-auto-flush $
+ ds-cfg-append $
+ ds-cfg-queue-size )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.27
+ NAME 'ds-cfg-file-based-error-log-publisher'
+ SUP ds-cfg-error-log-publisher
+ STRUCTURAL
+ MUST ( ds-cfg-log-file $
+ ds-cfg-asynchronous $
+ ds-cfg-log-file-permissions )
+ MAY ( ds-cfg-rotation-policy $
+ ds-cfg-rotation-action $
+ ds-cfg-retention-policy $
+ ds-cfg-time-interval $
+ ds-cfg-buffer-size $
+ ds-cfg-auto-flush $
+ ds-cfg-append $
+ ds-cfg-queue-size )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.28
+ NAME 'ds-cfg-matching-rule'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.29
+ NAME 'ds-cfg-approximate-matching-rule'
+ SUP ds-cfg-matching-rule
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.30
+ NAME 'ds-cfg-equality-matching-rule'
+ SUP ds-cfg-matching-rule
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.31
+ NAME 'ds-cfg-ordering-matching-rule'
+ SUP ds-cfg-matching-rule
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.32
+ NAME 'ds-cfg-substring-matching-rule'
+ SUP ds-cfg-matching-rule
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.33
+ NAME 'ds-cfg-monitor-provider'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.34
+ NAME 'ds-cfg-password-storage-scheme'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.35
+ NAME 'ds-cfg-password-validator'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.36
+ NAME 'ds-cfg-plugin'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled $
+ ds-cfg-plugin-type )
+ MAY ds-cfg-invoke-for-internal-operations
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.37
+ NAME 'ds-cfg-profiler-plugin'
+ SUP ds-cfg-plugin
+ STRUCTURAL
+ MAY ( ds-cfg-enable-profiling-on-startup $
+ ds-cfg-profile-directory $
+ ds-cfg-profile-sample-interval $
+ ds-cfg-profile-action )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.38
+ NAME 'ds-recurring-task'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-recurring-task-class-name $
+ ds-recurring-task-id )
+ MAY ( ds-task-notify-on-completion $
+ ds-task-notify-on-error )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.39
+ NAME 'ds-cfg-root-config'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-default-password-policy )
+ MAY ( ds-cfg-check-schema $
+ ds-cfg-add-missing-rdn-attributes $
+ ds-cfg-allow-attribute-name-exceptions $
+ ds-cfg-invalid-attribute-syntax-behavior $
+ ds-cfg-server-error-result-code $
+ ds-cfg-single-structural-objectclass-behavior $
+ ds-cfg-notify-abandoned-operations $
+ ds-cfg-size-limit $
+ ds-cfg-time-limit $
+ ds-cfg-proxied-authorization-identity-mapper $
+ ds-cfg-writability-mode $
+ ds-cfg-reject-unauthenticated-requests $
+ ds-cfg-bind-with-dn-requires-password $
+ ds-cfg-lookthrough-limit $
+ ds-cfg-smtp-server $
+ ds-cfg-allowed-task $
+ ds-cfg-disabled-privilege $
+ ds-cfg-return-bind-error-messages $
+ ds-cfg-idle-time-limit $
+ ds-cfg-workflow-configuration-mode $
+ ds-cfg-save-config-on-successful-startup $
+ ds-cfg-etime-resolution $
+ ds-cfg-entry-cache-preload $
+ ds-cfg-max-allowed-client-connections)
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.40
+ NAME 'ds-cfg-root-dn-user'
+ SUP top
+ AUXILIARY
+ MAY ds-cfg-alternate-bind-dn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.41
+ NAME 'ds-cfg-root-dse-backend'
+ SUP top
+ STRUCTURAL
+ MUST cn
+ MAY ( ds-cfg-subordinate-base-dn $
+ ds-cfg-show-all-attributes )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.42
+ NAME 'ds-cfg-sasl-mechanism-handler'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.43
+ NAME 'ds-cfg-external-sasl-mechanism-handler'
+ SUP ds-cfg-sasl-mechanism-handler
+ STRUCTURAL
+ MUST ds-cfg-certificate-mapper
+ MAY ( ds-cfg-certificate-attribute $
+ ds-cfg-certificate-validation-policy )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.44
+ NAME 'ds-cfg-plain-sasl-mechanism-handler'
+ SUP ds-cfg-sasl-mechanism-handler
+ STRUCTURAL
+ MUST ds-cfg-identity-mapper
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.45
+ NAME 'ds-cfg-cram-md5-sasl-mechanism-handler'
+ SUP ds-cfg-sasl-mechanism-handler
+ STRUCTURAL
+ MUST ds-cfg-identity-mapper
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.46
+ NAME 'ds-cfg-digest-md5-sasl-mechanism-handler'
+ SUP ds-cfg-sasl-mechanism-handler
+ STRUCTURAL
+ MUST ds-cfg-identity-mapper
+ MAY ( ds-cfg-realm $
+ ds-cfg-server-fqdn )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.47
+ NAME 'ds-cfg-gssapi-sasl-mechanism-handler'
+ SUP ds-cfg-sasl-mechanism-handler
+ STRUCTURAL
+ MAY ( ds-cfg-identity-mapper $
+ ds-cfg-realm $
+ ds-cfg-kdc-address $
+ ds-cfg-keytab $
+ ds-cfg-server-fqdn )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.48
+ NAME 'ds-task'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-task-class-name $
+ ds-task-id )
+ MAY ( ds-task-state $
+ ds-task-scheduled-start-time $
+ ds-task-actual-start-time $
+ ds-task-completion-time $
+ ds-task-dependency-id $
+ ds-task-failed-dependency-action $
+ ds-task-log-message $
+ ds-task-notify-on-completion $
+ ds-task-notify-on-error )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.49
+ NAME 'ds-task-shutdown'
+ SUP ds-task
+ STRUCTURAL
+ MAY ( ds-task-shutdown-message $
+ ds-task-restart-server )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.50
+ NAME 'ds-cfg-trust-manager-provider'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.51
+ NAME 'ds-cfg-file-based-trust-manager-provider'
+ SUP ds-cfg-trust-manager-provider
+ STRUCTURAL
+ MUST ds-cfg-trust-store-file
+ MAY ( ds-cfg-trust-store-type $
+ ds-cfg-trust-store-pin $
+ ds-cfg-trust-store-pin-property $
+ ds-cfg-trust-store-pin-environment-variable $
+ ds-cfg-trust-store-pin-file )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.52
+ NAME 'ds-cfg-directory-string-attribute-syntax'
+ SUP ds-cfg-attribute-syntax
+ STRUCTURAL
+ MAY ds-cfg-allow-zero-length-values
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.53
+ NAME 'ds-root-dse'
+ SUP top
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.54
+ NAME 'ds-cfg-identity-mapper'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.55
+ NAME 'ds-cfg-exact-match-identity-mapper'
+ SUP ds-cfg-identity-mapper
+ STRUCTURAL
+ MUST ds-cfg-match-attribute
+ MAY ds-cfg-match-base-dn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.56
+ NAME 'ds-cfg-synchronization-provider'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.57
+ NAME 'ds-cfg-replication-domain'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-replication-server $
+ ds-cfg-server-id $
+ ds-cfg-base-dn )
+ MAY ( cn $
+ ds-cfg-receive-status $
+ ds-cfg-max-receive-queue $
+ ds-cfg-max-receive-delay $
+ ds-cfg-max-send-queue $
+ ds-cfg-max-send-delay $
+ ds-cfg-window-size $
+ ds-cfg-heartbeat-interval $
+ ds-cfg-isolation-policy )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.58
+ NAME 'ds-cfg-length-based-password-validator'
+ SUP ds-cfg-password-validator
+ STRUCTURAL
+ MAY ( ds-cfg-max-password-length $
+ ds-cfg-min-password-length )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.59
+ NAME 'ds-cfg-password-generator'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.60
+ NAME 'ds-cfg-random-password-generator'
+ SUP ds-cfg-password-generator
+ STRUCTURAL
+ MUST ( ds-cfg-password-character-set $
+ ds-cfg-password-format )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.61
+ NAME 'ds-cfg-password-policy'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-password-attribute $
+ ds-cfg-default-password-storage-scheme )
+ MAY ( ds-cfg-account-status-notification-handler $
+ ds-cfg-allow-expired-password-changes $
+ ds-cfg-allow-multiple-password-values $
+ ds-cfg-allow-pre-encoded-passwords $
+ ds-cfg-allow-user-password-changes $
+ ds-cfg-deprecated-password-storage-scheme $
+ ds-cfg-expire-passwords-without-warning $
+ ds-cfg-force-change-on-add $
+ ds-cfg-force-change-on-reset $
+ ds-cfg-grace-login-count $
+ ds-cfg-idle-lockout-interval $
+ ds-cfg-last-login-time-attribute $
+ ds-cfg-last-login-time-format $
+ ds-cfg-lockout-duration $
+ ds-cfg-lockout-failure-count $
+ ds-cfg-lockout-failure-expiration-interval $
+ ds-cfg-max-password-age $
+ ds-cfg-max-password-reset-age $
+ ds-cfg-min-password-age $
+ ds-cfg-password-change-requires-current-password $
+ ds-cfg-password-expiration-warning-interval $
+ ds-cfg-password-generator $
+ ds-cfg-password-validator $
+ ds-cfg-previous-last-login-time-format $
+ ds-cfg-require-change-by-time $
+ ds-cfg-require-secure-authentication $
+ ds-cfg-require-secure-password-changes $
+ ds-cfg-skip-validation-for-administrators $
+ ds-cfg-state-update-failure-policy $
+ ds-cfg-password-history-count $
+ ds-cfg-password-history-duration )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.62
+ NAME 'ds-cfg-jmx-connection-handler'
+ SUP ds-cfg-connection-handler
+ STRUCTURAL
+ MUST ds-cfg-listen-port
+ MAY ( ds-cfg-ssl-cert-nickname $
+ ds-cfg-use-ssl $
+ ds-cfg-key-manager-provider )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.63
+ NAME 'ds-task-import'
+ SUP ds-task
+ STRUCTURAL
+ MAY ( ds-task-import-append $
+ ds-task-import-replace-existing $
+ ds-task-import-include-branch $
+ ds-task-import-exclude-branch $
+ ds-task-import-include-attribute $
+ ds-task-import-exclude-attribute $
+ ds-task-import-include-filter $
+ ds-task-import-exclude-filter $
+ ds-task-import-ldif-file $
+ ds-task-import-template-file $
+ ds-task-import-random-seed $
+ ds-task-import-reject-file $
+ ds-task-import-overwrite-rejects $
+ ds-task-import-skip-schema-validation $
+ ds-task-import-is-compressed $
+ ds-task-import-is-encrypted $
+ ds-task-import-backend-id $
+ ds-task-import-clear-backend )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.64
+ NAME 'ds-cfg-replication-server'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-replication-server-id $
+ ds-cfg-replication-port )
+ MAY ( ds-cfg-replication-server $
+ cn $
+ ds-cfg-window-size $
+ ds-cfg-queue-size $
+ ds-cfg-replication-db-directory $
+ ds-cfg-replication-purge-delay )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.65
+ NAME 'ds-backup-directory'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-backup-directory-path $
+ ds-backup-backend-dn )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.66
+ NAME 'ds-backup-info'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-backup-id $
+ ds-backup-directory-path )
+ MAY ( ds-backup-compressed $
+ ds-backup-date $
+ ds-backup-dependency $
+ ds-backup-encrypted $
+ ds-backup-incremental $
+ ds-backup-signed-hash $
+ ds-backup-unsigned-hash )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.67
+ NAME 'ds-cfg-backup-backend'
+ SUP ds-cfg-backend
+ STRUCTURAL
+ MAY ds-cfg-backup-directory
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.68
+ NAME 'ds-task-export'
+ SUP ds-task
+ STRUCTURAL
+ MUST ( ds-task-export-ldif-file $
+ ds-task-export-backend-id )
+ MAY ( ds-task-export-append-to-ldif $
+ ds-task-export-include-branch $
+ ds-task-export-exclude-branch $
+ ds-task-export-include-attribute $
+ ds-task-export-exclude-attribute $
+ ds-task-export-include-filter $
+ ds-task-export-exclude-filter $
+ ds-task-export-wrap-column $
+ ds-task-export-compress-ldif $
+ ds-task-export-encrypt-ldif $
+ ds-task-export-include-operational-attributes $
+ ds-task-export-sign-hash )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.69
+ NAME 'ds-task-backup'
+ SUP ds-task
+ STRUCTURAL
+ MUST ds-backup-directory-path
+ MAY ( ds-task-backup-backend-id $
+ ds-backup-id $
+ ds-task-backup-all $
+ ds-task-backup-incremental $
+ ds-task-backup-incremental-base-id $
+ ds-task-backup-compress $
+ ds-task-backup-encrypt $
+ ds-task-backup-hash $
+ ds-task-backup-sign-hash )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.70
+ NAME 'ds-task-restore'
+ SUP ds-task
+ STRUCTURAL
+ MUST ds-backup-directory-path
+ MAY ( ds-backup-id $
+ ds-task-restore-verify-only )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.71
+ NAME 'ds-cfg-work-queue'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.72
+ NAME 'ds-cfg-traditional-work-queue'
+ SUP ds-cfg-work-queue
+ STRUCTURAL
+ MUST ds-cfg-num-worker-threads
+ MAY ds-cfg-max-work-queue-capacity
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.73
+ NAME 'ds-cfg-password-modify-extended-operation-handler'
+ SUP ds-cfg-extended-operation-handler
+ STRUCTURAL
+ MUST ds-cfg-identity-mapper
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.74
+ NAME 'ds-cfg-account-status-notification-handler'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.75
+ NAME 'ds-cfg-error-log-account-status-notification-handler'
+ SUP ds-cfg-account-status-notification-handler
+ STRUCTURAL
+ MUST ds-cfg-account-status-notification-type
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.76
+ NAME 'ds-monitor-entry'
+ SUP top
+ STRUCTURAL
+ MUST cn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.77
+ NAME 'ds-backend-monitor-entry'
+ SUP ds-monitor-entry
+ STRUCTURAL
+ MAY ( ds-backend-id $
+ ds-backend-base-dn $
+ ds-backend-entry-count $
+ ds-base-dn-entry-count $
+ ds-backend-writability-mode $
+ ds-backend-is-private )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.78
+ NAME 'ds-connectionhandler-monitor-entry'
+ SUP ds-monitor-entry
+ STRUCTURAL
+ MAY ( ds-connectionhandler-connection $
+ ds-connectionhandler-listener $
+ ds-connectionhandler-num-connections $
+ ds-connectionhandler-protocol )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.79
+ NAME 'ds-task-add-schema-file'
+ SUP ds-task
+ STRUCTURAL
+ MUST ds-task-schema-file-name
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.80
+ NAME 'ds-cfg-group-implementation'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.81
+ NAME 'ds-cfg-root-dn'
+ SUP top
+ STRUCTURAL
+ MUST cn
+ MAY ds-cfg-default-root-privilege-name
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.82
+ NAME 'ds-certificate-user'
+ SUP top
+ AUXILIARY
+ MAY ( userCertificate $
+ ds-certificate-subject-dn $
+ ds-certificate-fingerprint )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.83
+ NAME 'ds-cfg-subject-dn-to-user-attribute-certificate-mapper'
+ SUP ds-cfg-certificate-mapper
+ STRUCTURAL
+ MUST ds-cfg-subject-attribute
+ MAY ds-cfg-user-base-dn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.84
+ NAME 'ds-cfg-subject-attribute-to-user-attribute-certificate-mapper'
+ SUP ds-cfg-certificate-mapper
+ STRUCTURAL
+ MUST ds-cfg-subject-attribute-mapping
+ MAY ds-cfg-user-base-dn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.85
+ NAME 'ds-cfg-fingerprint-certificate-mapper'
+ SUP ds-cfg-certificate-mapper
+ STRUCTURAL
+ MUST ( ds-cfg-fingerprint-attribute $
+ ds-cfg-fingerprint-algorithm )
+ MAY ds-cfg-user-base-dn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.86
+ NAME 'ds-cfg-dsee-compat-access-control-handler'
+ SUP ds-cfg-access-control-handler
+ STRUCTURAL
+ MAY ds-cfg-global-aci
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.87
+ NAME 'ds-cfg-similarity-based-password-validator'
+ SUP ds-cfg-password-validator
+ STRUCTURAL
+ MUST ds-cfg-min-password-difference
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.88
+ NAME 'ds-cfg-unique-characters-password-validator'
+ SUP ds-cfg-password-validator
+ STRUCTURAL
+ MUST ( ds-cfg-min-unique-characters $
+ ds-cfg-case-sensitive-validation )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.89
+ NAME 'ds-cfg-repeated-characters-password-validator'
+ SUP ds-cfg-password-validator
+ STRUCTURAL
+ MUST ( ds-cfg-max-consecutive-length $
+ ds-cfg-case-sensitive-validation )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.90
+ NAME 'ds-cfg-virtual-attribute'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class $
+ ds-cfg-enabled $
+ ds-cfg-attribute-type )
+ MAY ( ds-cfg-base-dn $
+ ds-cfg-group-dn $
+ ds-cfg-filter $
+ ds-cfg-conflict-behavior )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.91
+ NAME 'ds-task-initialize-from-remote-replica'
+ SUP ds-task
+ STRUCTURAL
+ MUST ( ds-task-initialize-domain-dn $
+ ds-task-initialize-replica-server-id )
+ MAY ( ds-task-processed-entry-count $
+ ds-task-unprocessed-entry-count )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.92
+ NAME 'ds-task-initialize-remote-replica'
+ SUP ds-task
+ STRUCTURAL
+ MUST ( ds-task-initialize-domain-dn $
+ ds-task-initialize-replica-server-id )
+ MAY ( ds-task-processed-entry-count $
+ ds-task-unprocessed-entry-count )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.93
+ NAME 'ds-cfg-replication-synchronization-provider'
+ SUP ds-cfg-synchronization-provider
+ STRUCTURAL
+ MAY ( ds-cfg-num-update-replay-threads )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.94
+ NAME 'ds-cfg-dictionary-password-validator'
+ SUP ds-cfg-password-validator
+ STRUCTURAL
+ MUST ( ds-cfg-dictionary-file $
+ ds-cfg-case-sensitive-validation $
+ ds-cfg-test-reversed-password )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.95
+ NAME 'ds-cfg-attribute-value-password-validator'
+ SUP ds-cfg-password-validator
+ STRUCTURAL
+ MUST ds-cfg-test-reversed-password
+ MAY ds-cfg-match-attribute
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.96
+ NAME 'ds-cfg-character-set-password-validator'
+ SUP ds-cfg-password-validator
+ STRUCTURAL
+ MUST ( ds-cfg-character-set $
+ ds-cfg-allow-unclassified-characters )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.97
+ NAME 'ds-task-rebuild'
+ SUP ds-task
+ STRUCTURAL
+ MUST ( ds-task-rebuild-base-dn $
+ ds-task-rebuild-index )
+ MAY ds-task-rebuild-max-threads
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.98
+ NAME 'ds-virtual-static-group'
+ SUP top
+ AUXILIARY
+ MUST ds-target-group-dn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.99
+ NAME 'ds-cfg-user-defined-virtual-attribute'
+ SUP ds-cfg-virtual-attribute
+ STRUCTURAL
+ MUST ds-cfg-value
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.100
+ NAME 'ds-cfg-debug-target'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-debug-scope $
+ ds-cfg-debug-level )
+ MAY ( ds-cfg-debug-category $
+ ds-cfg-omit-method-entry-arguments $
+ ds-cfg-omit-method-return-value $
+ ds-cfg-include-throwable-cause $
+ ds-cfg-throwable-stack-frames )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.101
+ NAME 'ds-cfg-log-retention-policy'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.102
+ NAME 'ds-cfg-file-count-log-retention-policy'
+ SUP ds-cfg-log-retention-policy
+ STRUCTURAL
+ MUST ds-cfg-number-of-files
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.103
+ NAME 'ds-cfg-size-limit-log-retention-policy'
+ SUP ds-cfg-log-retention-policy
+ STRUCTURAL
+ MUST ds-cfg-disk-space-used
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.104
+ NAME 'ds-cfg-free-disk-space-log-retention-policy'
+ SUP ds-cfg-log-retention-policy
+ STRUCTURAL
+ MUST ds-cfg-free-disk-space
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.105
+ NAME 'ds-cfg-log-rotation-policy'
+ SUP top
+ STRUCTURAL
+ MUST ( cn $
+ ds-cfg-java-class )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.106
+ NAME 'ds-cfg-size-limit-log-rotation-policy'
+ SUP ds-cfg-log-rotation-policy
+ STRUCTURAL
+ MUST ds-cfg-file-size-limit
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.107
+ NAME 'ds-cfg-time-limit-log-rotation-policy'
+ SUP ds-cfg-log-rotation-policy
+ STRUCTURAL
+ MUST ds-cfg-rotation-interval
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.108
+ NAME 'ds-cfg-fixed-time-log-rotation-policy'
+ SUP ds-cfg-log-rotation-policy
+ STRUCTURAL
+ MUST ds-cfg-time-of-day
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.109
+ NAME 'ds-cfg-file-system-entry-cache'
+ SUP ds-cfg-entry-cache
+ STRUCTURAL
+ MAY ( ds-cfg-max-entries $
+ ds-cfg-max-memory-size $
+ ds-cfg-lock-timeout $
+ ds-cfg-exclude-filter $
+ ds-cfg-include-filter $
+ ds-cfg-cache-directory $
+ ds-cfg-cache-type $
+ ds-cfg-persistent-cache $
+ ds-cfg-compact-encoding $
+ ds-cfg-db-cache-percent $
+ ds-cfg-db-cache-size $
+ ds-cfg-je-property )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.110
+ NAME 'ds-cfg-member-virtual-attribute'
+ SUP ds-cfg-virtual-attribute
+ STRUCTURAL
+ MUST ds-cfg-allow-retrieving-membership
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.111
+ NAME 'ds-cfg-plugin-root'
+ SUP top
+ AUXILIARY
+ MAY ( ds-cfg-plugin-order-startup $
+ ds-cfg-plugin-order-shutdown $
+ ds-cfg-plugin-order-post-connect $
+ ds-cfg-plugin-order-post-disconnect $
+ ds-cfg-plugin-order-ldif-import $
+ ds-cfg-plugin-order-ldif-export $
+ ds-cfg-plugin-order-pre-parse-abandon $
+ ds-cfg-plugin-order-pre-parse-add $
+ ds-cfg-plugin-order-pre-parse-bind $
+ ds-cfg-plugin-order-pre-parse-compare $
+ ds-cfg-plugin-order-pre-parse-delete $
+ ds-cfg-plugin-order-pre-parse-extended $
+ ds-cfg-plugin-order-pre-parse-modify $
+ ds-cfg-plugin-order-pre-parse-modify-dn $
+ ds-cfg-plugin-order-pre-parse-search $
+ ds-cfg-plugin-order-pre-parse-unbind $
+ ds-cfg-plugin-order-pre-operation-add $
+ ds-cfg-plugin-order-pre-operation-bind $
+ ds-cfg-plugin-order-pre-operation-compare $
+ ds-cfg-plugin-order-pre-operation-delete $
+ ds-cfg-plugin-order-pre-operation-extended $
+ ds-cfg-plugin-order-pre-operation-modify $
+ ds-cfg-plugin-order-pre-operation-modify-dn $
+ ds-cfg-plugin-order-pre-operation-search $
+ ds-cfg-plugin-order-post-operation-abandon $
+ ds-cfg-plugin-order-post-operation-add $
+ ds-cfg-plugin-order-post-operation-bind $
+ ds-cfg-plugin-order-post-operation-compare $
+ ds-cfg-plugin-order-post-operation-delete $
+ ds-cfg-plugin-order-post-operation-extended $
+ ds-cfg-plugin-order-post-operation-modify $
+ ds-cfg-plugin-order-post-operation-modify-dn $
+ ds-cfg-plugin-order-post-operation-search $
+ ds-cfg-plugin-order-post-operation-unbind $
+ ds-cfg-plugin-order-post-response-add $
+ ds-cfg-plugin-order-post-response-bind $
+ ds-cfg-plugin-order-post-response-compare $
+ ds-cfg-plugin-order-post-response-delete $
+ ds-cfg-plugin-order-post-response-extended $
+ ds-cfg-plugin-order-post-response-modify $
+ ds-cfg-plugin-order-post-response-modify-dn $
+ ds-cfg-plugin-order-post-response-search $
+ ds-cfg-plugin-order-post-synchronization-add $
+ ds-cfg-plugin-order-post-synchronization-delete $
+ ds-cfg-plugin-order-post-synchronization-modify $
+ ds-cfg-plugin-order-post-synchronization-modify-dn $
+ ds-cfg-plugin-order-search-result-entry $
+ ds-cfg-plugin-order-search-result-reference $
+ ds-cfg-plugin-order-subordinate-modify-dn $
+ ds-cfg-plugin-order-intermediate-response )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.112
+ NAME 'ds-cfg-password-policy-import-plugin'
+ SUP ds-cfg-plugin
+ STRUCTURAL
+ MAY ( ds-cfg-default-user-password-storage-scheme $
+ ds-cfg-default-auth-password-storage-scheme )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.113
+ NAME 'ds-cfg-attribute-type-description-attribute-syntax'
+ SUP ds-cfg-attribute-syntax
+ STRUCTURAL
+ MAY ds-cfg-strip-syntax-min-upper-bound
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.114
+ NAME 'ds-cfg-local-db-vlv-index'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-base-dn $
+ ds-cfg-scope $
+ ds-cfg-filter $
+ ds-cfg-sort-order $
+ ds-cfg-name )
+ MAY ds-cfg-max-block-size
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.115
+ NAME 'ds-cfg-smtp-alert-handler'
+ SUP ds-cfg-alert-handler
+ STRUCTURAL
+ MUST ( ds-cfg-sender-address $
+ ds-cfg-recipient-address $
+ ds-cfg-message-subject $
+ ds-cfg-message-body )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.116
+ NAME 'ds-task-disconnect'
+ SUP ds-task
+ STRUCTURAL
+ MUST ds-task-disconnect-connection-id
+ MAY ( ds-task-disconnect-message $
+ ds-task-disconnect-notify-client )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.117
+ NAME 'ds-cfg-unique-attribute-plugin'
+ SUP ds-cfg-plugin
+ STRUCTURAL
+ MUST ds-cfg-type
+ MAY ds-cfg-base-dn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.118
+ NAME 'ds-cfg-regular-expression-identity-mapper'
+ SUP ds-cfg-identity-mapper
+ STRUCTURAL
+ MUST ( ds-cfg-match-attribute $
+ ds-cfg-match-pattern )
+ MAY ( ds-cfg-match-base-dn $
+ ds-cfg-replace-pattern )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.119
+ NAME 'ds-cfg-referential-integrity-plugin'
+ SUP ds-cfg-plugin
+ STRUCTURAL
+ MUST ds-cfg-attribute-type
+ MAY ( ds-cfg-base-dn $
+ ds-cfg-update-interval $
+ ds-cfg-log-file )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.120
+ NAME 'ds-cfg-smtp-account-status-notification-handler'
+ SUP ds-cfg-account-status-notification-handler
+ STRUCTURAL
+ MUST ( ds-cfg-sender-address $
+ ds-cfg-send-message-without-end-user-address $
+ ds-cfg-message-template-file )
+ MAY ( ds-cfg-email-address-attribute-type $
+ ds-cfg-recipient-address $
+ ds-cfg-message-subject )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.121
+ NAME 'ds-task-reset-generation-id'
+ SUP ds-task
+ STRUCTURAL
+ MUST ds-task-reset-generation-id-domain-base-dn
+ MAY ds-task-reset-generation-id-new-value
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.122
+ NAME 'ds-cfg-entry-uuid-plugin'
+ SUP ds-cfg-plugin
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.123
+ NAME 'ds-cfg-last-mod-plugin'
+ SUP ds-cfg-plugin
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.124
+ NAME 'ds-cfg-ldap-attribute-description-list-plugin'
+ SUP ds-cfg-plugin
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.125
+ NAME 'ds-cfg-jmx-alert-handler'
+ SUP ds-cfg-alert-handler
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.126
+ NAME 'ds-cfg-memory-backend'
+ SUP ds-cfg-backend
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.127
+ NAME 'ds-cfg-monitor-backend'
+ SUP ds-cfg-backend
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.128
+ NAME 'ds-cfg-cancel-extended-operation-handler'
+ SUP ds-cfg-extended-operation-handler
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.129
+ NAME 'ds-cfg-get-connection-id-extended-operation-handler'
+ SUP ds-cfg-extended-operation-handler
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.130
+ NAME 'ds-cfg-password-policy-state-extended-operation-handler'
+ SUP ds-cfg-extended-operation-handler
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.131
+ NAME 'ds-cfg-start-tls-extended-operation-handler'
+ SUP ds-cfg-extended-operation-handler
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.132
+ NAME 'ds-cfg-who-am-i-extended-operation-handler'
+ SUP ds-cfg-extended-operation-handler
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.133
+ NAME 'ds-cfg-static-group-implementation'
+ SUP ds-cfg-group-implementation
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.134
+ NAME 'ds-cfg-dynamic-group-implementation'
+ SUP ds-cfg-group-implementation
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.135
+ NAME 'ds-cfg-virtual-static-group-implementation'
+ SUP ds-cfg-group-implementation
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.136
+ NAME 'ds-cfg-client-connection-monitor-provider'
+ SUP ds-cfg-monitor-provider
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.137
+ NAME 'ds-cfg-stack-trace-monitor-provider'
+ SUP ds-cfg-monitor-provider
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.138
+ NAME 'ds-cfg-system-info-monitor-provider'
+ SUP ds-cfg-monitor-provider
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.139
+ NAME 'ds-cfg-version-monitor-provider'
+ SUP ds-cfg-monitor-provider
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.140
+ NAME 'ds-cfg-base64-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.141
+ NAME 'ds-cfg-clear-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.142
+ NAME 'ds-cfg-crypt-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.143
+ NAME 'ds-cfg-md5-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.144
+ NAME 'ds-cfg-sha1-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.145
+ NAME 'ds-cfg-salted-md5-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.146
+ NAME 'ds-cfg-salted-sha1-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.147
+ NAME 'ds-cfg-salted-sha256-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.148
+ NAME 'ds-cfg-salted-sha384-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.149
+ NAME 'ds-cfg-salted-sha512-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.150
+ NAME 'ds-cfg-anonymous-sasl-mechanism-handler'
+ SUP ds-cfg-sasl-mechanism-handler
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.151
+ NAME 'ds-cfg-blind-trust-manager-provider'
+ SUP ds-cfg-trust-manager-provider
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.152
+ NAME 'ds-cfg-entry-dn-virtual-attribute'
+ SUP ds-cfg-virtual-attribute
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.153
+ NAME 'ds-cfg-entry-uuid-virtual-attribute'
+ SUP ds-cfg-virtual-attribute
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.154
+ NAME 'ds-cfg-has-subordinates-virtual-attribute'
+ SUP ds-cfg-virtual-attribute
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.155
+ NAME 'ds-cfg-num-subordinates-virtual-attribute'
+ SUP ds-cfg-virtual-attribute
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.156
+ NAME 'ds-cfg-is-member-of-virtual-attribute'
+ SUP ds-cfg-virtual-attribute
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.157
+ NAME 'ds-cfg-subschema-subentry-virtual-attribute'
+ SUP ds-cfg-virtual-attribute
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.158
+ NAME 'ds-cfg-config-file-handler-backend'
+ SUP ds-cfg-backend
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.159
+ NAME 'ds-cfg-subject-equals-dn-certificate-mapper'
+ SUP ds-cfg-certificate-mapper
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.160
+ NAME 'ds-cfg-crypto-manager'
+ SUP top
+ STRUCTURAL
+ MAY ( cn $
+ ds-cfg-digest-algorithm $
+ ds-cfg-mac-algorithm $
+ ds-cfg-mac-key-length $
+ ds-cfg-cipher-transformation $
+ ds-cfg-cipher-key-length $
+ ds-cfg-key-wrapping-transformation $
+ ds-cfg-ssl-protocol $
+ ds-cfg-ssl-cipher-suite $
+ ds-cfg-ssl-cert-nickname $
+ ds-cfg-ssl-encryption )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.161
+ NAME 'ds-cfg-trust-store-backend'
+ SUP ds-cfg-backend
+ STRUCTURAL
+ MAY ( ds-cfg-trust-store-type $
+ ds-cfg-trust-store-file $
+ ds-cfg-trust-store-pin $
+ ds-cfg-trust-store-pin-property $
+ ds-cfg-trust-store-pin-environment-variable $
+ ds-cfg-trust-store-pin-file )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.162
+ NAME 'ds-cfg-instance-key'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-key-id $
+ ds-cfg-public-key-certificate )
+ MAY ds-cfg-key-compromised-time
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.163
+ NAME 'ds-cfg-self-signed-cert-request'
+ SUP top
+ STRUCTURAL
+ MUST ds-cfg-key-id
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.164
+ NAME 'ds-cfg-seven-bit-clean-plugin'
+ SUP ds-cfg-plugin
+ STRUCTURAL
+ MUST ds-cfg-attribute-type
+ MAY ds-cfg-base-dn
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.165
+ NAME 'ds-cfg-ldif-connection-handler'
+ SUP ds-cfg-connection-handler
+ STRUCTURAL
+ MUST ( ds-cfg-ldif-directory $
+ ds-cfg-poll-interval )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.166
+ NAME 'ds-cfg-triple-des-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.167
+ NAME 'ds-cfg-aes-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.168
+ NAME 'ds-cfg-rc4-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.169
+ NAME 'ds-cfg-blowfish-password-storage-scheme'
+ SUP ds-cfg-password-storage-scheme
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.170
+ NAME 'ds-cfg-entry-cache-monitor-provider'
+ SUP ds-cfg-monitor-provider
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.171
+ NAME 'ds-cfg-memory-usage-monitor-provider'
+ SUP ds-cfg-monitor-provider
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.172
+ NAME 'ds-cfg-ldif-backend'
+ SUP ds-cfg-backend
+ STRUCTURAL
+ MUST ds-cfg-ldif-file
+ MAY ds-cfg-is-private-backend
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.173
+ NAME 'ds-cfg-get-symmetric-key-extended-operation-handler'
+ SUP ds-cfg-extended-operation-handler
+ STRUCTURAL
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.174
+ NAME 'ds-cfg-cipher-key'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-key-id $ ds-cfg-cipher-transformation-name $
+ ds-cfg-key-length-bits $ ds-cfg-symmetric-key )
+ MAY ( ds-cfg-initialization-vector-length-bits $ ds-cfg-key-compromised-time )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.175
+ NAME 'ds-cfg-mac-key'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-key-id $ ds-cfg-mac-algorithm-name $
+ ds-cfg-key-length-bits $ ds-cfg-symmetric-key )
+ MAY ds-cfg-key-compromised-time
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.176
+ NAME 'ds-cfg-network-group'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-network-group-id $
+ ds-cfg-enabled $
+ ds-cfg-workflow )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.177
+ NAME 'ds-cfg-workflow'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-workflow-id $
+ ds-cfg-enabled $
+ ds-cfg-workflow-element $
+ ds-cfg-base-dn )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.178
+ NAME 'ds-cfg-workflow-element'
+ SUP top
+ STRUCTURAL
+ MUST ( ds-cfg-workflow-element-id $
+ ds-cfg-enabled $
+ ds-cfg-java-class )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.179
+ NAME 'ds-cfg-local-backend-workflow-element'
+ SUP ds-cfg-workflow-element
+ STRUCTURAL
+ MUST ( ds-cfg-backend )
+ X-ORIGIN 'OpenDS Directory Server' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.181
+ NAME 'ds-cfg-snmp-connection-handler'
+ SUP ds-cfg-connection-handler
+ STRUCTURAL
+ MUST ( ds-cfg-listen-port $
+ ds-cfg-trap-port )
+ MAY ( ds-cfg-traps-destination $
+ ds-cfg-registered-mbean $
+ ds-cfg-community $
+ ds-cfg-allowed-manager $
+ ds-cfg-allowed-user $
+ ds-cfg-security-level $
+ ds-cfg-traps-community $
+ ds-cfg-security-agent-file $
+ ds-cfg-opendmk-jarfile )
+ X-ORIGIN 'OpenDS Directory Server' )
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-changelog.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-changelog.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-changelog.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,67 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from draft-good-ldap-changelog, which
+# defines a mechanism for storing informmation about changes to Directory
+# Server data.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 2.16.840.1.113730.3.1.5 NAME 'changeNumber'
+ DESC 'a number which uniquely identifies a change made to a directory entry'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 EQUALITY integerMatch
+ ORDERING integerOrderingMatch SINGLE-VALUE
+ X-ORIGIN 'draft-good-ldap-changelog' )
+attributeTypes: ( 2.16.840.1.113730.3.1.6 NAME 'targetDN'
+ DESC 'the DN of the entry which was modified' EQUALITY distinguishedNameMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE
+ X-ORIGIN 'draft-good-ldap-changelog' )
+attributeTypes: ( 2.16.840.1.113730.3.1.7 NAME 'changeType'
+ DESC 'the type of change made to an entry' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'draft-good-ldap-changelog' )
+attributeTypes: ( 2.16.840.1.113730.3.1.8 NAME 'changes'
+ DESC 'a set of changes to apply to an entry'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 X-ORIGIN 'draft-good-ldap-changelog' )
+attributeTypes: ( 2.16.840.1.113730.3.1.9 NAME 'newRDN'
+ DESC 'the new RDN of an entry which is the target of a modrdn operation'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' )
+attributeTypes: ( 2.16.840.1.113730.3.1.10 NAME 'deleteOldRDN'
+ DESC 'a flag which indicates if the old RDN should be retained as an
+ attribute of the entry' EQUALITY booleanMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE
+ X-ORIGIN 'draft-good-ldap-changelog' )
+attributeTypes: ( 2.16.840.1.113730.3.1.11 NAME 'newSuperior'
+ DESC 'the new parent of an entry which is the target of a moddn operation'
+ EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
+ SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' )
+objectClasses: ( 2.16.840.1.113730.3.2.1 NAME 'changeLogEntry' SUP top
+ STRUCTURAL MUST ( changeNumber $ targetDN $ changeType )
+ MAY ( changes $ newRDN $ deleteOldRDN $ newSuperior )
+ X-ORIGIN 'draft-good-ldap-changelog' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2713.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2713.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2713.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,73 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from RFC 2713, which defines a
+# mechanism for storing serialized Java objects in the Directory Server.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.6 NAME 'javaClassName'
+ DESC 'Fully qualified name of distinguished Java class or interface'
+ EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 2713' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.7 NAME 'javaCodebase'
+ DESC 'URL(s) specifying the location of class definition'
+ EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ X-ORIGIN 'RFC 2713' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.13 NAME 'javaClassNames'
+ DESC 'Fully qualified Java class or interface name' EQUALITY caseExactMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2713' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.8 NAME 'javaSerializedData'
+ DESC 'Serialized form of a Java object' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
+ SINGLE-VALUE X-ORIGIN 'RFC 2713' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.10 NAME 'javaFactory'
+ DESC 'Fully qualified Java class name of a JNDI object factory'
+ EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 2713' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.11 NAME 'javaReferenceAddress'
+ DESC 'Addresses associated with a JNDI Reference' EQUALITY caseExactMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2713' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.12 NAME 'javaDoc'
+ DESC 'The Java documentation for the class' EQUALITY caseExactIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 2713' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.1 NAME 'javaContainer'
+ DESC 'Container for a Java object' SUP top STRUCTURAL MUST ( cn )
+ X-ORIGIN 'RFC 2713' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.4 NAME 'javaObject'
+ DESC 'Java object representation' SUP top ABSTRACT MUST ( javaClassName )
+ MAY ( javaClassNames $ javaCodebase $ javaDoc $ description )
+ X-ORIGIN 'RFC 2713' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.5 NAME 'javaSerializedObject'
+ DESC 'Java serialized object' SUP javaObject AUXILIARY
+ MUST ( javaSerializedData ) X-ORIGIN 'RFC 2713' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.8 NAME 'javaMarshalledObject'
+ DESC 'Java marshalled object' SUP javaObject AUXILIARY
+ MUST ( javaSerializedData ) X-ORIGIN 'RFC 2713' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.7 NAME 'javaNamingReference'
+ DESC 'JNDI reference' SUP javaObject AUXILIARY
+ MAY ( javaReferenceAddress $ javaFactory ) X-ORIGIN 'RFC 2713' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2714.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2714.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2714.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,50 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from RFC 2714, which defines a
+# mechanism for storing CORBA objects in the Directory Server.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.14 NAME 'corbaIor'
+ DESC 'Stringified interoperable object reference of a CORBA object'
+ EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE X-ORIGIN 'RFC 2714' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.15 NAME 'corbaRepositoryId'
+ DESC 'Repository ids of interfaces implemented by a CORBA object'
+ EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 2714' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.9 NAME 'corbaObject'
+ DESC 'CORBA object representation' SUP top ABSTRACT
+ MAY ( corbaRepositoryId $ description ) X-ORIGIN 'RFC 2714' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.10 NAME 'corbaContainer'
+ DESC 'Container for a CORBA object' SUP top STRUCTURAL MUST ( cn )
+ X-ORIGIN 'RFC 2714' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.11 NAME 'corbaObjectReference'
+ DESC 'CORBA interoperable object reference' SUP corbaObject AUXILIARY
+ MUST ( corbaIor ) X-ORIGIN 'RFC 2714' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2739.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2739.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2739.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,72 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from RFC 2739, which defines a
+# mechanism for storing calendar and vCard objects in the Directory Server.
+# Note that the definition in RFC 2739 contains a number of errors, and this
+# schema file has been altered from the standard definition in order to fix
+# a number of those problems.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.2.840.113556.1.4.478 NAME 'calCalURI'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications
+ X-ORIGIN 'RFC 2739' )
+attributeTypes: ( 1.2.840.113556.1.4.479 NAME 'calFBURL'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications
+ X-ORIGIN 'RFC 2739' )
+attributeTypes: ( 1.2.840.113556.1.4.480 NAME 'calCAPURI'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications
+ X-ORIGIN 'RFC 2739' )
+attributeTypes: ( 1.2.840.113556.1.4.481 NAME 'calCalAdrURI'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications
+ X-ORIGIN 'RFC 2739' )
+attributeTypes: ( 1.2.840.113556.1.4.482 NAME 'calOtherCalURIs'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications
+ X-ORIGIN 'RFC 2739' )
+attributeTypes: ( 1.2.840.113556.1.4.483 NAME 'calOtherFBURLs'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications
+ X-ORIGIN 'RFC 2739' )
+attributeTypes: ( 1.2.840.113556.1.4.484 NAME 'calOtherCAPURIs'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications
+ X-ORIGIN 'RFC 2739' )
+attributeTypes: ( 1.2.840.113556.1.4.485 NAME 'calOtherCalAdrURIs'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications
+ X-ORIGIN 'RFC 2739' )
+objectClasses: ( 1.2.840.113556.1.5.87 NAME 'calEntry' SUP top AUXILIARY
+ MAY ( calCalURI $ calFBURL $ calOtherCalURIs $ calOtherFBURLs $ calCAPURI $
+ calOtherCAPURIs $ calCalAdrURI $ calOtherCalAdrURIs )
+ X-ORIGIN 'RFC 2739' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2926.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2926.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc2926.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,71 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from RFC 2926, which defines a
+# mechanism for mapping between Service Location Protocol (SLP) advertisements
+# and LDAP.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.1
+ NAME 'template-major-version-number'
+ DESC 'The major version number of the service type template'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'RFC 2926' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.2
+ NAME 'template-minor-version-number'
+ DESC 'The minor version number of the service type template'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'RFC 2926' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.3 NAME 'template-url-syntax'
+ DESC 'An ABNF grammar describing the service type specific part of the
+ service URL' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE X-ORIGIN 'RFC 2926' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.4
+ NAME 'service-advert-service-type'
+ DESC 'The service type of the service advertisement, including the
+ "service:" prefix.' EQUALITY caseExactIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 2926' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.5 NAME 'service-advert-scopes'
+ DESC 'A list of scopes for a service advertisement.'
+ EQUALITY caseExactIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 2926' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.6
+ NAME 'service-advert-url-authenticator'
+ DESC 'The authenticator for the URL, null if none.'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 2926' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.7
+ NAME 'service-advert-attribute-authenticator'
+ DESC 'The authenticator for the attribute list, null if none.'
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 2926' )
+objectClasses: ( 1.3.6.1.4.1.6252.2.27.6.2.1 NAME 'slpService'
+ DESC 'parent superclass for SLP services' ABSTRACT SUP top
+ MUST ( template-major-version-number $ template-minor-version-number $
+ description $ template-url-syntax $ service-advert-service-type $
+ service-advert-scopes ) MAY ( service-advert-url-authenticator $
+ service-advert-attribute-authenticator ) X-ORIGIN 'RFC 2926' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc3112.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc3112.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc3112.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,43 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from RFC 3112, which defines the
+# authentication password schema.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.3.6.1.4.1.4203.1.3.3 NAME 'supportedAuthPasswordSchemes'
+ DESC 'supported password storage schemes' EQUALITY caseExactIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32} USAGE dSAOperation
+ X-ORIGIN 'RFC 3112' )
+attributeTypes: ( 1.3.6.1.4.1.4203.1.3.4 NAME 'authPassword'
+ DESC 'password authentication information' EQUALITY 1.3.6.1.4.1.4203.1.2.2
+ SYNTAX 1.3.6.1.4.1.4203.1.1.2 X-ORIGIN 'RFC 3112' )
+objectClasses: ( 1.3.6.1.4.1.4203.1.4.7 NAME 'authPasswordObject'
+ DESC 'authentication password mix in class' MAY authPassword AUXILIARY
+ X-ORIGIN 'RFC 3112' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc3712.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc3712.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-rfc3712.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,215 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from RFC 3712, which defines a
+# mechanism for storing printer information in the Directory Server.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.3.18.0.2.4.1140 NAME 'printer-uri'
+ DESC 'A URI supported by this printer.' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1107 NAME 'printer-xri-supported'
+ DESC 'The unordered list of XRI (extended resource identifiers) supported by
+ this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1135 NAME 'printer-name'
+ DESC 'The site-specific administrative name of this printer.'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} SINGLE-VALUE
+ X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1119 NAME 'printer-natural-language-configured'
+ DESC 'The configured natural language in which error and status messages will
+ be generated (by default) by this printer.' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127}
+ SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1136 NAME 'printer-location'
+ DESC 'The physical location of this printer.' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127}
+ SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1139 NAME 'printer-info'
+ DESC 'Descriptive information about this printer.' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127}
+ SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1134 NAME 'printer-more-info'
+ DESC 'A URI for more information about this specific printer.'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1138 NAME 'printer-make-and-model'
+ DESC 'Make and model of this printer.' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127}
+ SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1133 NAME 'printer-ipp-versions-supported'
+ DESC 'IPP protocol version(s) that this printer supports.'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1132
+ NAME 'printer-multiple-document-jobs-supported'
+ DESC 'Indicates whether or not this printer supports more than one document
+ per job.' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
+ SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1109 NAME 'printer-charset-configured'
+ DESC 'The configured charset in which error and status messages will be
+ generated (by default) by this printer.' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{63} SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1131 NAME 'printer-charset-supported'
+ DESC 'Set of charsets supported for the attribute values of syntax
+ DirectoryString for this directory entry.' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{63} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1137
+ NAME 'printer-generated-natural-language-supported'
+ DESC 'Natural language(s) supported for this directory entry.'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{63} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1130 NAME 'printer-document-format-supported'
+ DESC 'The possible source document formats which may be interpreted and
+ printed by this printer.' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127}
+ X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1129 NAME 'printer-color-supported'
+ DESC 'Indicates whether this printer is capable of any type of color printing
+ at all, including highlight color.' EQUALITY booleanMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1128 NAME 'printer-compression-supported'
+ DESC 'Compression algorithms supported by this printer.'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1127 NAME 'printer-pages-per-minute'
+ DESC 'The nominal number of pages per minute which may be output by this
+ printer.' EQUALITY integerMatch ORDERING integerOrderingMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1126 NAME 'printer-pages-per-minute-color'
+ DESC 'The nominal number of color pages per minute which may be output by
+ this printer.' EQUALITY integerMatch ORDERING integerOrderingMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1125 NAME 'printer-finishings-supported'
+ DESC 'The possible finishing operations supported by this printer.'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1124 NAME 'printer-number-up-supported'
+ DESC 'The possible numbers of print-stream pages to impose upon a single side
+ of an instance of a selected medium.' EQUALITY integerMatch
+ ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1123 NAME 'printer-sides-supported'
+ DESC 'The number of impression sides (one or two) and the two-sided
+ impression rotations supported by this printer.' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1122 NAME 'printer-media-supported'
+ DESC 'The standard names/types/sizes (and optional color suffixes) of the
+ media supported by this printer.' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255}
+ X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1117 NAME 'printer-media-local-supported'
+ DESC 'Site-specific names of media supported by this printer.'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1121 NAME 'printer-resolution-supported'
+ DESC 'List of resolutions supported for printing documents by this printer.'
+ EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1120 NAME 'printer-print-quality-supported'
+ DESC 'List of print qualities supported for printing documents on this
+ printer.' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127}
+ X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1110 NAME 'printer-job-priority-supported'
+ DESC 'Indicates the number of job priority levels supported by this printer.'
+ EQUALITY integerMatch ORDERING integerOrderingMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1118 NAME 'printer-copies-supported'
+ DESC 'The maximum number of copies of a document that may be printed as a
+ single job on this printer.' EQUALITY integerMatch
+ ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1111 NAME 'printer-job-k-octets-supported'
+ DESC 'The maximum size in kilobytes (1,024 octets actually) incoming print
+ job that this printer will accept.' EQUALITY integerMatch
+ ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+ SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1112 NAME 'printer-current-operator'
+ DESC 'The identity of the current human operator responsible for operating
+ this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1113 NAME 'printer-service-person'
+ DESC 'The identity of the current human service person responsible for
+ servicing this printer.' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127}
+ SINGLE-VALUE X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1114
+ NAME 'printer-delivery-orientation-supported'
+ DESC 'The possible delivery orientations of pages as they are printed and
+ ejected from this printer.' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1115 NAME 'printer-stacking-order-supported'
+ DESC 'The possible stacking order of pages as they are printed and ejected
+ from this printer.' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1116 NAME 'printer-output-features-supported'
+ DESC 'The possible output features supported by this printer.'
+ EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127}
+ X-ORIGIN 'RFC 3712' )
+attributeTypes: ( 1.3.18.0.2.4.1108 NAME 'printer-aliases'
+ DESC 'List of site-specific administrative names of this printer in addition
+ to the value specified for printer-name.' EQUALITY caseIgnoreMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127}
+ X-ORIGIN 'RFC 3712' )
+objectClasses: ( 1.3.18.0.2.6.254 NAME 'slpServicePrinter'
+ DESC 'Service Location Protocol (SLP) information.' AUXILIARY SUP slpService
+ X-ORIGIN 'RFC 3712' )
+objectClasses: ( 1.3.18.0.2.6.258 NAME 'printerAbstract'
+ DESC 'Printer related information.' ABSTRACT SUP top
+ MAY ( printer-name $ printer-natural-language-configured $
+ printer-location $ printer-info $ printer-more-info $
+ printer-make-and-model $ printer-multiple-document-jobs-supported $
+ printer-charset-configured $ printer-charset-supported $
+ printer-generated-natural-language-supported $
+ printer-document-format-supported $ printer-color-supported $
+ printer-compression-supported $ printer-pages-per-minute $
+ printer-pages-per-minute-color $ printer-finishings-supported $
+ printer-number-up-supported $ printer-sides-supported $
+ printer-media-supported $ printer-media-local-supported $
+ printer-resolution-supported $ printer-print-quality-supported $
+ printer-job-priority-supported $ printer-copies-supported $
+ printer-job-k-octets-supported $ printer-current-operator $
+ printer-service-person $ printer-delivery-orientation-supported $
+ printer-stacking-order-supported $ printer-output-features-supported )
+ X-ORIGIN 'RFC 3712' )
+objectClasses: ( 1.3.18.0.2.6.255 NAME 'printerService'
+ DESC 'Printer information.' STRUCTURAL SUP printerAbstract
+ MAY ( printer-uri $ printer-xri-supported ) X-ORIGIN 'RFC 3712' )
+objectClasses: ( 1.3.18.0.2.6.257 NAME 'printerServiceAuxClass'
+ DESC 'Printer information.' AUXILIARY SUP printerAbstract
+ MAY ( printer-uri $ printer-xri-supported ) X-ORIGIN 'RFC 3712' )
+objectClasses: ( 1.3.18.0.2.6.256 NAME 'printerIPP'
+ DESC 'Internet Printing Protocol (IPP) information.' AUXILIARY SUP top
+ MAY ( printer-ipp-versions-supported $
+ printer-multiple-document-jobs-supported ) X-ORIGIN 'RFC 3712' )
+objectClasses: ( 1.3.18.0.2.6.253 NAME 'printerLPR' DESC 'LPR information.'
+ AUXILIARY SUP top MUST ( printer-name ) MAY ( printer-aliases )
+ X-ORIGIN 'RFC 3712' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-uddiv3.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-uddiv3.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/03-uddiv3.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,321 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from RFC 4403,
+# which defines a mechanism for storing UDDIv3 information in the Directory
+# Server.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.3.6.1.1.10.4.1 NAME 'uddiBusinessKey'
+ DESC 'businessEntity unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.2 NAME 'uddiAuthorizedName'
+ DESC 'businessEntity publisher name' EQUALITY distinguishedNameMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.3 NAME 'uddiOperator'
+ DESC 'registry site operator of businessEntitys master copy'
+ EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.4 NAME 'uddiName' DESC 'human readable name'
+ EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch
+ SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.5 NAME 'uddiDescription'
+ DESC 'short description' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.6 NAME 'uddiDiscoveryURLs'
+ DESC 'URL to retrieve a businessEntity instance' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.7 NAME 'uddiUseType'
+ DESC 'name of convention the referenced document follows'
+ EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.8 NAME 'uddiPersonName'
+ DESC 'name of person or job role available for contact'
+ EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.9 NAME 'uddiPhone'
+ DESC 'telephone number for contact' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.10 NAME 'uddiEMail'
+ DESC 'e-mail address for contact' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.11 NAME 'uddiSortCode'
+ DESC 'specifies an external disply mechanism' EQUALITY caseIgnoreMatch
+ ORDERING caseIgnoreOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ SINGLE-VALUE X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.12 NAME 'uddiTModelKey'
+ DESC 'tModel unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.13 NAME 'uddiAddressLine' DESC 'address'
+ EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.14 NAME 'uddiIdentifierBag'
+ DESC 'identification information' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.15 NAME 'uddiCategoryBag'
+ DESC 'categorization information' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.16 NAME 'uddiKeyedReference'
+ DESC 'categorization information' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.17 NAME 'uddiServiceKey'
+ DESC 'businessService unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.18 NAME 'uddiBindingKey'
+ DESC 'bindingTemplate unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.19 NAME 'uddiAccessPoint'
+ DESC 'entry point address to call a web service' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.20 NAME 'uddiHostingRedirector'
+ DESC 'designates a pointer to another bindingTemplate'
+ EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.21 NAME 'uddiInstanceDescription'
+ DESC 'instance details description' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.22 NAME 'uddiInstanceParms'
+ DESC 'URL reference to required settings' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.23 NAME 'uddiOverviewDescription'
+ DESC 'outlines tModel usage' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.24 NAME 'uddiOverviewURL'
+ DESC 'URL reference to overview document' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.25 NAME 'uddiFromKey'
+ DESC 'unique businessEntity key reference' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.26 NAME 'uddiToKey'
+ DESC 'unique businessEntity key reference' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.27 NAME 'uddiUUID'
+ DESC 'unique attribute' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.28 NAME 'uddiIsHidden'
+ DESC 'isHidden attribute' EQUALITY booleanMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.29 NAME 'uddiIsProjection'
+ DESC 'isServiceProjection attribute' EQUALITY booleanMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.30 NAME 'uddiLang'
+ DESC 'xml:lang value in v3 Address structure' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.31 NAME 'uddiv3BusinessKey'
+ DESC 'UDDIv3 businessEntity unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.32 NAME 'uddiv3ServiceKey'
+ DESC 'UDDIv3 businessService unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.33 NAME 'uddiv3BindingKey'
+ DESC 'UDDIv3 BindingTemplate unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.34 NAME 'uddiv3TModelKey'
+ DESC 'UDDIv3 TModel unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.35 NAME 'uddiv3DigitalSignature'
+ DESC 'UDDIv3 entity digital signature' EQUALITY caseExactMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.36 NAME 'uddiv3NodeId'
+ DESC 'UDDIv3 Node Identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.37 NAME 'uddiv3EntityModificationTime'
+ DESC 'UDDIv3 Last Modified Time for Entity' EQUALITY generalizedTimeMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.38 NAME 'uddiv3SubscriptionKey'
+ DESC 'UDDIv3 Subscription unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.39 NAME 'uddiv3SubscriptionFilter'
+ DESC 'UDDIv3 Subscription Filter' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.40 NAME 'uddiv3NotificationInterval'
+ DESC 'UDDIv3 Notification Interval' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.41 NAME 'uddiv3MaxEntities'
+ DESC 'UDDIv3 Subscription maxEntities field' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.42 NAME 'uddiv3ExpiresAfter'
+ DESC 'UDDIv3 Subscription ExpiresAfter field' EQUALITY generalizedTimeMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.43 NAME 'uddiv3BriefResponse'
+ DESC 'UDDIv3 Subscription ExpiresAfter field' EQUALITY booleanMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.44 NAME 'uddiv3EntityKey'
+ DESC 'UDDIv3 Entity unique identifier' EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.45 NAME 'uddiv3EntityCreationTime'
+ DESC 'UDDIv3 Entity Creation Time' EQUALITY generalizedTimeMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+attributeTypes: ( 1.3.6.1.1.10.4.46 NAME 'uddiv3EntityDeletionTime'
+ DESC 'UDDIv3 Entity Deletion Time' EQUALITY generalizedTimeMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE
+ X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.1 NAME 'uddiBusinessEntity' SUP top
+ STRUCTURAL MUST ( uddiBusinessKey $ uddiName )
+ MAY ( uddiAuthorizedName $ uddiOperator $ uddiDiscoveryURLs $
+ uddiDescription $ uddiIdentifierBag $ uddiCategoryBag $uddiv3BusinessKey $
+ uddiv3DigitalSignature $ uddiv3EntityModificationTime $ uddiv3NodeId )
+ X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.2 NAME 'uddiContact' SUP top STRUCTURAL
+ MUST ( uddiPersonName $ uddiUUID ) MAY ( uddiUseType $ uddiDescription $
+ uddiPhone $ uddiEMail ) X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.3 NAME 'uddiAddress' SUP top STRUCTURAL
+ MUST ( uddiUUID ) MAY ( uddiUseType $ uddiSortCode $ uddiTModelKey $
+ uddiv3TmodelKey $ uddiAddressLine $ uddiLang )
+ X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.4 NAME 'uddiBusinessService' SUP top
+ STRUCTURAL MUST ( uddiServiceKey ) MAY ( uddiName $ uddiBusinessKey $
+ uddiDescription $ uddiCategoryBag $ uddiIsProjection $ uddiv3ServiceKey $
+ uddiv3BusinessKey $ uddiv3DigitalSignature $ uddiv3EntityCreationTime $
+ uddiv3EntityModificationTime $ uddiv3NodeId )
+ X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.5 NAME 'uddiBindingTemplate' SUP top
+ STRUCTURAL MUST ( uddiBindingKey ) MAY ( uddiServiceKey $ uddiDescription $
+ uddiAccessPoint $ uddiHostingRedirector $ uddiCategoryBag $
+ uddiv3BindingKey $ uddiv3ServiceKey $ uddiv3DigitalSignature $
+ uddiv3EntityCreationTime $ uddiv3NodeId )
+ X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.6 NAME 'uddiTModelInstanceInfo' SUP top
+ STRUCTURAL MUST ( uddiTModelKey ) MAY ( uddiDescription $
+ uddiInstanceDescription $ uddiInstanceParms $ uddiOverviewDescription $
+ uddiOverviewURL $ uddiv3TmodelKey )
+ X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.7 NAME 'uddiTModel' SUP top STRUCTURAL
+ MUST ( uddiTModelKey $ uddiName ) MAY ( uddiAuthorizedName $ uddiOperator $
+ uddiDescription $ uddiOverviewDescription $ uddiOverviewURL $
+ uddiIdentifierBag $ uddiCategoryBag $ uddiIsHidden $ uddiv3TModelKey $
+ uddiv3DigitalSignature $ uddiv3NodeId )
+ X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.8 NAME 'uddiPublisherAssertion' SUP top
+ STRUCTURAL MUST ( uddiFromKey $ uddiToKey $ uddiKeyedReference $ uddiUUID )
+ MAY ( uddiv3DigitalSignature $ uddiv3NodeId )
+ X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.9 NAME 'uddiv3Subscription' SUP top
+ STRUCTURAL MUST ( uddiv3SubscriptionFilter $ uddiUUID )
+ MAY ( uddiAuthorizedName $ uddiv3SubscriptionKey $ uddiv3BindingKey $
+ uddiv3NotificationInterval $ uddiv3MaxEntities $ uddiv3ExpiresAfter $
+ uddiv3BriefResponse $ uddiv3NodeId )
+ X-ORIGIN 'RFC 4403' )
+objectClasses: ( 1.3.6.1.1.10.6.10 NAME 'uddiv3EntityObituary' SUP top
+ STRUCTURAL MUST ( uddiv3EntityKey $ uddiUUID ) MAY ( uddiAuthorizedName $
+ uddiv3EntityCreationTime $ uddiv3EntityDeletionTime $ uddiv3NodeId )
+ X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.1 NAME 'uddiBusinessEntityNameForm'
+ OC uddiBusinessEntity MUST ( uddiBusinessKey )
+ X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.2 NAME 'uddiContactNameForm' OC uddiContact
+ MUST ( uddiUUID ) X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.3 NAME 'uddiAddressNameForm' OC uddiAddress
+ MUST ( uddiUUID ) X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.4 NAME 'uddiBusinessServiceNameForm'
+ OC uddiBusinessService MUST ( uddiServiceKey )
+ X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.5 NAME 'uddiBindingTemplateNameForm'
+ OC uddiBindingTemplate MUST ( uddiBindingKey )
+ X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.6 NAME 'uddiTModelInstanceInfoNameForm'
+ OC uddiTModelInstanceInfo MUST ( uddiTModelKey )
+ X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.7 NAME 'uddiTModelNameForm' OC uddiTModel
+ MUST ( uddiTModelKey ) X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.8 NAME 'uddiPublisherAssertionNameForm'
+ OC uddiPublisherAssertion MUST ( uddiUUID )
+ X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.9 NAME 'uddiv3SubscriptionNameForm'
+ OC uddiv3Subscription MUST ( uddiUUID )
+ X-ORIGIN 'RFC 4403' )
+nameForms: ( 1.3.6.1.1.10.15.10 NAME 'uddiv3EntityObituaryNameForm'
+ OC uddiv3EntityObituary MUST ( uddiUUID )
+ X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 1 NAME 'uddiBusinessEntityStructureRule'
+ FORM uddiBusinessEntityNameForm X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 2 NAME 'uddiContactStructureRule'
+ FORM uddiContactNameForm SUP ( 1 )
+ X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 3 NAME 'uddiAddressStructureRule' FORM uddiAddressNameForm
+ SUP ( 2 ) X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 4 NAME 'uddiBusinessServiceStructureRule'
+ FORM uddiBusinessServiceNameForm SUP ( 1 )
+ X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 5 NAME 'uddiBindingTemplateStructureRule'
+ FORM uddiBindingTemplateNameForm SUP ( 4 )
+ X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 6 NAME 'uddiTModelInstanceInfoStructureRule'
+ FORM uddiTModelInstanceInfoNameForm SUP ( 5 )
+ X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 7 NAME 'uddiTModelStructureRule' FORM uddiTModelNameForm
+ X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 8 NAME 'uddiPublisherAssertionStructureRule'
+ FORM uddiPublisherAssertionNameForm
+ X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 9 NAME 'uddiv3SubscriptionStructureRule'
+ FORM uddiv3SubscriptionNameForm
+ X-ORIGIN 'RFC 4403' )
+dITStructureRules: ( 10 NAME 'uddiv3EntityObituaryStructureRule'
+ FORM uddiv3EntityObituaryNameForm
+ X-ORIGIN 'RFC 4403' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/schema/04-rfc2307bis.ldif
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/schema/04-rfc2307bis.ldif (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/schema/04-rfc2307bis.ldif 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,216 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains schema definitions from the draft-howard-rfc2307bis
+# specification, used to store naming service information in the Directory
+# Server.
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 1.3.6.1.1.1.1.0 NAME 'uidNumber'
+ DESC 'An integer uniquely identifying a user in an administrative domain'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.1 NAME 'gidNumber'
+ DESC 'An integer uniquely identifying a group in an administrative domain'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.2 NAME 'gecos'
+ DESC 'The GECOS field; the common name' EQUALITY caseIgnoreIA5Match
+ SUBSTR caseIgnoreIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.3 NAME 'homeDirectory'
+ DESC 'The absolute path to the home directory' EQUALITY caseExactIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.4 NAME 'loginShell'
+ DESC 'The path to the login shell' EQUALITY caseExactIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.5 NAME 'shadowLastChange' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.6 NAME 'shadowMin' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.7 NAME 'shadowMax' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.8 NAME 'shadowWarning' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.9 NAME 'shadowInactive' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.10 NAME 'shadowExpire' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.11 NAME 'shadowFlag' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.12 NAME 'memberUid' EQUALITY caseExactIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.13 NAME 'memberNisNetgroup'
+ EQUALITY caseExactIA5Match SUBSTR caseExactIA5SubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.14 NAME 'nisNetgroupTriple'
+ DESC 'Netgroup triple' EQUALITY caseIgnoreIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.15 NAME 'ipServicePort'
+ DESC 'Service port number' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.16 NAME 'ipServiceProtocol'
+ DESC 'Service protocol name' SUP name X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.17 NAME 'ipProtocolNumber'
+ DESC 'IP protocol number' EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.18 NAME 'oncRpcNumber' DESC 'ONC RPC number'
+ EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.19 NAME 'ipHostNumber'
+ DESC 'IPv4 addresses as a dotted decimal omitting leading zeros or IPv6
+ addresses as defined in RFC2373' SUP name
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.20 NAME 'ipNetworkNumber'
+ DESC 'IP network as a dotted decimal, eg. 192.168, omitting leading zeros'
+ SUP name SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.21 NAME 'ipNetmaskNumber'
+ DESC 'IP netmask as a dotted decimal, eg. 255.255.255.0, omitting leading
+ zeros' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.22 NAME 'macAddress'
+ DESC 'MAC address in maximal, colon separated hex notation, eg.
+ 00:00:92:90:ee:e2' EQUALITY caseIgnoreIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.23 NAME 'bootParameter'
+ DESC 'rpc.bootparamd parameter' EQUALITY caseExactIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.24 NAME 'bootFile' DESC 'Boot image name'
+ EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.26 NAME 'nisMapName'
+ DESC 'Name of a A generic NIS map' SUP name
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.27 NAME 'nisMapEntry'
+ DESC 'A generic NIS entry' EQUALITY caseExactIA5Match
+ SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.28 NAME 'nisPublicKey' DESC 'NIS public key'
+ EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.29 NAME 'nisSecretKey' DESC 'NIS secret key'
+ EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.30 NAME 'nisDomain' DESC 'NIS domain'
+ EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.31 NAME 'automountMapName'
+ DESC 'automount Map Name' EQUALITY caseExactIA5Match
+ SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.32 NAME 'automountKey'
+ DESC 'Automount Key value' EQUALITY caseExactIA5Match
+ SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' )
+attributeTypes: ( 1.3.6.1.1.1.1.33 NAME 'automountInformation'
+ DESC 'Automount information' EQUALITY caseExactIA5Match
+ SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.0 NAME 'posixAccount' SUP top AUXILIARY
+ DESC 'Abstraction of an account with POSIX attributes'
+ MUST ( cn $ uid $ uidNumber $ gidNumber $ homeDirectory )
+ MAY ( authPassword $ userPassword $ loginShell $ gecos $ description )
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.1 NAME 'shadowAccount' SUP top AUXILIARY
+ DESC 'Additional attributes for shadow passwords' MUST uid
+ MAY ( authPassword $ userPassword $ description $ shadowLastChange $
+ shadowMin $ shadowMax $ shadowWarning $ shadowInactive $ shadowExpire $
+ shadowFlag ) X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.2 NAME 'posixGroup' SUP top AUXILIARY
+ DESC 'Abstraction of a group of accounts' MUST gidNumber
+ MAY ( authPassword $ userPassword $ memberUid $ description )
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.3 NAME 'ipService' SUP top STRUCTURAL
+ DESC 'Abstraction an Internet Protocol service. Maps an IP port and protocol
+ (such as tcp or udp) to one or more names; the distinguished value of the cn
+ attribute denotes the canonical name of the service'
+ MUST ( cn $ ipServicePort $ ipServiceProtocol ) MAY description
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.4 NAME 'ipProtocol' SUP top STRUCTURAL
+ DESC 'Abstraction of an IP protocol. Maps a protocol number to one or more
+ names. The distinguished value of the cn attribute denotes the canonical name
+ of the protocol' MUST ( cn $ ipProtocolNumber ) MAY description
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.5 NAME 'oncRpc' SUP top STRUCTURAL
+ DESC 'Abstraction of an Open Network Computing (ONC) [RFC1057] Remote
+ Procedure Call (RPC) binding. This class maps an ONC RPC number to a name.
+ The distinguished value of the cn attribute denotes the canonical name of the
+ RPC service' MUST ( cn $ oncRpcNumber ) MAY description
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.6 NAME 'ipHost' SUP top AUXILIARY
+ DESC 'Abstraction of a host, an IP device. The distinguished value of the cn
+ attribute denotes the canonical name of the host. Device SHOULD be used as a
+ structural class' MUST ( cn $ ipHostNumber )
+ MAY ( authPassword $ userPassword $ l $ description $ manager )
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.7 NAME 'ipNetwork' SUP top STRUCTURAL
+ DESC 'Abstraction of a network. The distinguished value of the cn attribute
+ denotes the canonical name of the network' MUST ipNetworkNumber
+ MAY ( cn $ ipNetmaskNumber $ l $ description $ manager )
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.8 NAME 'nisNetgroup' SUP top STRUCTURAL
+ DESC 'Abstraction of a netgroup. May refer to other netgroups' MUST cn
+ MAY ( nisNetgroupTriple $ memberNisNetgroup $ description )
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.9 NAME 'nisMap' SUP top STRUCTURAL
+ DESC 'A generic abstraction of a NIS map' MUST nisMapName MAY description
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.10 NAME 'nisObject' SUP top STRUCTURAL
+ DESC 'An entry in a NIS map' MUST ( cn $ nisMapEntry $ nisMapName )
+ MAY description X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.11 NAME 'ieee802Device' SUP top AUXILIARY
+ DESC 'A device with a MAC address; device SHOULD be used as a structural
+ class' MAY macAddress X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.12 NAME 'bootableDevice' SUP top AUXILIARY
+ DESC 'A device with boot parameters; device SHOULD be used as a structural
+ class' MAY ( bootFile $ bootParameter ) X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.14 NAME 'nisKeyObject' SUP top AUXILIARY
+ DESC 'An object with a public and secret key'
+ MUST ( cn $ nisPublicKey $ nisSecretKey ) MAY ( uidNumber $ description )
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.15 NAME 'nisDomainObject' SUP top AUXILIARY
+ DESC 'Associates a NIS domain with a naming context' MUST nisDomain
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.16 NAME 'automountMap' SUP top STRUCTURAL
+ MUST ( automountMapName ) MAY description
+ X-ORIGIN 'draft-howard-rfc2307bis' )
+objectClasses: ( 1.3.6.1.1.1.2.17 NAME 'automount' SUP top STRUCTURAL
+ DESC 'Automount information' MUST ( automountKey $ automountInformation )
+ MAY description X-ORIGIN 'draft-howard-rfc2307bis' )
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/upgrade/config.ldif.4337
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/upgrade/config.ldif.4337 (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/upgrade/config.ldif.4337 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,2233 @@
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License, Version 1.0 only
+# (the "License"). You may not use this file except in compliance
+# with the License.
+#
+# You can obtain a copy of the license at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE
+# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at
+# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
+# add the following below this CDDL HEADER, with the fields enclosed
+# by brackets "[]" replaced with your own identifying information:
+# Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright 2006-2008 Sun Microsystems, Inc.
+#
+#
+# This file contains the primary Directory Server configuration. It must not
+# be directly edited while the server is online. The server configuration
+# should only be managed using the administration utilities provided with the
+# Directory Server.
+
+dn: cn=config
+objectClass: top
+objectClass: ds-cfg-root-config
+cn: config
+ds-cfg-check-schema: true
+ds-cfg-add-missing-rdn-attributes: true
+ds-cfg-allow-attribute-name-exceptions: false
+ds-cfg-invalid-attribute-syntax-behavior: reject
+ds-cfg-single-structural-objectclass-behavior: reject
+ds-cfg-notify-abandoned-operations: false
+ds-cfg-proxied-authorization-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+ds-cfg-size-limit: 1000
+ds-cfg-time-limit: 60 seconds
+ds-cfg-lookthrough-limit: 5000
+ds-cfg-writability-mode: enabled
+ds-cfg-bind-with-dn-requires-password: true
+ds-cfg-reject-unauthenticated-requests: false
+ds-cfg-default-password-policy: cn=Default Password Policy,cn=Password Policies,cn=config
+ds-cfg-return-bind-error-messages: false
+ds-cfg-idle-time-limit: 0 seconds
+ds-cfg-save-config-on-successful-startup: true
+ds-cfg-etime-resolution: milliseconds
+ds-cfg-entry-cache-preload: false
+ds-cfg-max-allowed-client-connections: 0
+ds-cfg-allowed-task: org.opends.server.tasks.AddSchemaFileTask
+ds-cfg-allowed-task: org.opends.server.tasks.BackupTask
+ds-cfg-allowed-task: org.opends.server.tasks.DisconnectClientTask
+ds-cfg-allowed-task: org.opends.server.tasks.EnterLockdownModeTask
+ds-cfg-allowed-task: org.opends.server.tasks.ExportTask
+ds-cfg-allowed-task: org.opends.server.tasks.ImportTask
+ds-cfg-allowed-task: org.opends.server.tasks.InitializeTargetTask
+ds-cfg-allowed-task: org.opends.server.tasks.InitializeTask
+ds-cfg-allowed-task: org.opends.server.tasks.SetGenerationIdTask
+ds-cfg-allowed-task: org.opends.server.tasks.LeaveLockdownModeTask
+ds-cfg-allowed-task: org.opends.server.tasks.RebuildTask
+ds-cfg-allowed-task: org.opends.server.tasks.RestoreTask
+ds-cfg-allowed-task: org.opends.server.tasks.ShutdownTask
+
+dn: cn=Access Control Handler,cn=config
+objectClass: top
+objectClass: ds-cfg-access-control-handler
+objectClass: ds-cfg-dsee-compat-access-control-handler
+ds-cfg-global-aci: (extop="1.3.6.1.4.1.26027.1.6.1 || 1.3.6.1.4.1.26027.1.6.3 || 1.3.6.1.4.1.4203.1.11.1 || 1.3.6.1.4.1.1466.20037 || 1.3.6.1.4.1.4203.1.11.3") (version 3.0; acl "Anonymous extended operation access"; allow(read) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (targetcontrol="2.16.840.1.113730.3.4.2 || 2.16.840.1.113730.3.4.17 || 2.16.840.1.113730.3.4.19 || 1.3.6.1.4.1.4203.1.10.2 || 1.3.6.1.4.1.42.2.27.8.5.1 || 2.16.840.1.113730.3.4.16") (version 3.0; acl "Anonymous control access"; allow(read) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (targetattr!="userPassword||authPassword")(version 3.0; acl "Anonymous read access"; allow (read,search,compare) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (targetattr="*")(version 3.0; acl "Self entry modification"; allow (write) userdn="ldap:///self";)
+ds-cfg-global-aci: (target="ldap:///cn=schema")(targetscope="base")(targetattr="objectClass||attributeTypes||dITContentRules||dITStructureRules||ldapSyntaxes||matchingRules||matchingRuleUse||nameForms||objectClasses")(version 3.0; acl "User-Visible Schema Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (target="ldap:///")(targetscope="base")(targetattr="objectClass||namingContexts||supportedAuthPasswordSchemes||supportedControl||supportedExtension||supportedFeatures||supportedLDAPVersion||supportedSASLMechanisms||vendorName||vendorVersion")(version 3.0; acl "User-Visible Root DSE Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (targetattr="createTimestamp||creatorsName||modifiersName||modifyTimestamp||entryDN||entryUUID||subschemaSubentry")(version 3.0; acl "User-Visible Operational Attributes"; allow (read,search,compare) userdn="ldap:///anyone";)
+ds-cfg-global-aci: (target="ldap:///dc=replicationchanges")(targetattr="*")(version 3.0; acl "Replication backend access"; deny (all) userdn="ldap:///anyone";)
+cn: Access Control Handler
+ds-cfg-java-class: org.opends.server.authorization.dseecompat.AciHandler
+ds-cfg-enabled: true
+
+dn: cn=Crypto Manager,cn=config
+objectClass: top
+objectClass: ds-cfg-crypto-manager
+cn: Crypto Manager
+ds-cfg-ssl-cert-nickname: ads-certificate
+ds-cfg-ssl-encryption: false
+
+dn: cn=Account Status Notification Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Account Status Notification Handlers
+
+dn: cn=Error Log Handler,cn=Account Status Notification Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-account-status-notification-handler
+objectClass: ds-cfg-error-log-account-status-notification-handler
+cn: Error Log Handler
+ds-cfg-java-class: org.opends.server.extensions.ErrorLogAccountStatusNotificationHandler
+ds-cfg-enabled: true
+ds-cfg-account-status-notification-type: account-temporarily-locked
+ds-cfg-account-status-notification-type: account-permanently-locked
+ds-cfg-account-status-notification-type: account-unlocked
+ds-cfg-account-status-notification-type: account-idle-locked
+ds-cfg-account-status-notification-type: account-reset-locked
+ds-cfg-account-status-notification-type: account-disabled
+ds-cfg-account-status-notification-type: account-enabled
+ds-cfg-account-status-notification-type: account-expired
+ds-cfg-account-status-notification-type: password-expired
+ds-cfg-account-status-notification-type: password-expiring
+ds-cfg-account-status-notification-type: password-reset
+ds-cfg-account-status-notification-type: password-changed
+
+dn: cn=SMTP Handler,cn=Account Status Notification Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-account-status-notification-handler
+objectClass: ds-cfg-smtp-account-status-notification-handler
+cn: SMTP Handler
+ds-cfg-java-class: org.opends.server.extensions.SMTPAccountStatusNotificationHandler
+ds-cfg-enabled: false
+ds-cfg-sender-address: opends-notifications(a)example.com
+ds-cfg-email-address-attribute-type: mail
+ds-cfg-send-message-without-end-user-address: false
+ds-cfg-message-template-file: account-temporarily-locked:config/messages/account-temporarily-locked.template
+ds-cfg-message-template-file: account-permanently-locked:config/messages/account-permanently-locked.template
+ds-cfg-message-template-file: account-unlocked:config/messages/account-unlocked.template
+ds-cfg-message-template-file: account-idle-locked:config/messages/account-idle-locked.template
+ds-cfg-message-template-file: account-reset-locked:config/messages/account-reset-locked.template
+ds-cfg-message-template-file: account-disabled:config/messages/account-disabled.template
+ds-cfg-message-template-file: account-enabled:config/messages/account-enabled.template
+ds-cfg-message-template-file: account-expired:config/messages/account-expired.template
+ds-cfg-message-template-file: password-expired:config/messages/password-expired.template
+ds-cfg-message-template-file: password-expiring:config/messages/password-expiring.template
+ds-cfg-message-template-file: password-reset:config/messages/password-reset.template
+ds-cfg-message-template-file: password-changed:config/messages/password-changed.template
+ds-cfg-message-subject: account-temporarily-locked:Your directory account has been locked
+ds-cfg-message-subject: account-permanently-locked:Your directory account has been locked
+ds-cfg-message-subject: account-unlocked:Your directory account has been unlocked
+ds-cfg-message-subject: account-idle-locked:Your directory account has been locked
+ds-cfg-message-subject: account-reset-locked:Your directory account has been locked
+ds-cfg-message-subject: account-disabled:Your directory account has been disabled
+ds-cfg-message-subject: account-enabled:Your directory account has been re-enabled
+ds-cfg-message-subject: account-expired:Your directory account has expired
+ds-cfg-message-subject: password-expired:Your directory password has expired
+ds-cfg-message-subject: password-expiring:Your directory password is going to expire
+ds-cfg-message-subject: password-reset:Your directory password has been reset
+ds-cfg-message-subject: password-changed:Your directory password has been changed
+
+dn: cn=Alert Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Alert Handlers
+
+dn: cn=JMX Alert Handler,cn=Alert Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-alert-handler
+objectClass: ds-cfg-jmx-alert-handler
+cn: JMX Alert Handler
+ds-cfg-java-class: org.opends.server.extensions.JMXAlertHandler
+ds-cfg-enabled: false
+
+dn: cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Backends
+
+dn: ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-backend
+objectClass: ds-cfg-local-db-backend
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.backends.jeb.BackendImpl
+ds-cfg-backend-id: userRoot
+ds-cfg-writability-mode: enabled
+ds-cfg-base-dn: dc=example,dc=com
+ds-cfg-db-directory: db
+ds-cfg-db-directory-permissions: 700
+ds-cfg-index-entry-limit: 4000
+ds-cfg-preload-time-limit: 0 seconds
+ds-cfg-import-queue-size: 100
+ds-cfg-import-thread-count: 8
+ds-cfg-entries-compressed: false
+ds-cfg-compact-encoding: true
+ds-cfg-db-cache-percent: 10
+ds-cfg-db-cache-size: 0 megabytes
+ds-cfg-db-txn-no-sync: false
+ds-cfg-db-txn-write-no-sync: true
+ds-cfg-db-run-cleaner: true
+ds-cfg-db-num-cleaner-threads: 1
+ds-cfg-db-cleaner-min-utilization: 75
+ds-cfg-db-evictor-lru-only: true
+ds-cfg-db-evictor-nodes-per-scan: 10
+ds-cfg-db-log-file-max: 50 megabytes
+ds-cfg-db-logging-file-handler-on: true
+ds-cfg-db-logging-level: CONFIG
+ds-cfg-db-checkpointer-bytes-interval: 20 megabytes
+ds-cfg-db-checkpointer-wakeup-interval: 30 seconds
+ds-cfg-db-num-lock-tables: 19
+
+dn: cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Index
+
+dn: ds-cfg-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: aci
+ds-cfg-index-type: presence
+
+dn: ds-cfg-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: cn
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: ds-sync-hist
+ds-cfg-index-type: ordering
+
+dn: ds-cfg-attribute=entryUUID,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: entryUUID
+ds-cfg-index-type: equality
+
+dn: ds-cfg-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: givenName
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: mail
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: member
+ds-cfg-index-type: equality
+
+dn: ds-cfg-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: objectClass
+ds-cfg-index-type: equality
+
+dn: ds-cfg-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: sn
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: telephoneNumber
+ds-cfg-index-type: equality
+ds-cfg-index-type: substring
+
+dn: ds-cfg-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: uid
+ds-cfg-index-type: equality
+
+dn: ds-cfg-attribute=uniqueMember,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-local-db-index
+ds-cfg-attribute: uniqueMember
+ds-cfg-index-type: equality
+
+dn: cn=VLV Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: VLV Index
+
+dn: ds-cfg-backend-id=backup,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-backend
+objectClass: ds-cfg-backup-backend
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.backends.BackupBackend
+ds-cfg-backend-id: backup
+ds-cfg-writability-mode: disabled
+ds-cfg-base-dn: cn=backups
+ds-cfg-backup-directory: bak
+
+dn: ds-cfg-backend-id=config,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-backend
+objectClass: ds-cfg-config-file-handler-backend
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.extensions.ConfigFileHandler
+ds-cfg-backend-id: config
+ds-cfg-writability-mode: enabled
+ds-cfg-base-dn: cn=config
+
+dn: ds-cfg-backend-id=ads-truststore,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-backend
+objectClass: ds-cfg-trust-store-backend
+ds-cfg-backend-id: ads-truststore
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.backends.TrustStoreBackend
+ds-cfg-writability-mode: enabled
+ds-cfg-base-dn: cn=ads-truststore
+ds-cfg-trust-store-type: JKS
+ds-cfg-trust-store-file: config/ads-truststore
+ds-cfg-trust-store-pin-file: config/ads-truststore.pin
+
+dn: ds-cfg-backend-id=monitor,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-backend
+objectClass: ds-cfg-monitor-backend
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.backends.MonitorBackend
+ds-cfg-backend-id: monitor
+ds-cfg-writability-mode: disabled
+ds-cfg-base-dn: cn=monitor
+
+dn: ds-cfg-backend-id=schema,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-backend
+objectClass: ds-cfg-schema-backend
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.backends.SchemaBackend
+ds-cfg-backend-id: schema
+ds-cfg-writability-mode: enabled
+ds-cfg-base-dn: cn=schema
+ds-cfg-show-all-attributes: false
+
+dn: ds-cfg-backend-id=tasks,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-backend
+objectClass: ds-cfg-task-backend
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.backends.task.TaskBackend
+ds-cfg-backend-id: tasks
+ds-cfg-writability-mode: enabled
+ds-cfg-base-dn: cn=tasks
+ds-cfg-task-backing-file: config/tasks.ldif
+ds-cfg-task-retention-time: 24 hours
+
+dn: ds-cfg-backend-id=adminRoot,cn=Backends,cn=config
+objectClass: top
+objectClass: ds-cfg-backend
+objectClass: ds-cfg-ldif-backend
+ds-cfg-backend-id: adminRoot
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.backends.LDIFBackend
+ds-cfg-writability-mode: enabled
+ds-cfg-base-dn: cn=admin data
+ds-cfg-ldif-file: config/admin-backend.ldif
+ds-cfg-is-private-backend: true
+
+dn: cn=Certificate Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Certificate Mappers
+
+dn: cn=Subject Equals DN,cn=Certificate Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-certificate-mapper
+objectClass: ds-cfg-subject-equals-dn-certificate-mapper
+cn: Subject Equals DN
+ds-cfg-java-class: org.opends.server.extensions.SubjectEqualsDNCertificateMapper
+ds-cfg-enabled: true
+
+dn: cn=Subject DN to User Attribute,cn=Certificate Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-certificate-mapper
+objectClass: ds-cfg-subject-dn-to-user-attribute-certificate-mapper
+cn: Subject DN to User Attribute
+ds-cfg-java-class: org.opends.server.extensions.SubjectDNToUserAttributeCertificateMapper
+ds-cfg-enabled: true
+ds-cfg-subject-attribute: ds-certificate-subject-dn
+
+dn: cn=Subject Attribute to User Attribute,cn=Certificate Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-certificate-mapper
+objectClass: ds-cfg-subject-attribute-to-user-attribute-certificate-mapper
+cn: Subject Attribute to User Attribute
+ds-cfg-java-class: org.opends.server.extensions.SubjectAttributeToUserAttributeCertificateMapper
+ds-cfg-enabled: true
+ds-cfg-subject-attribute-mapping: cn:cn
+ds-cfg-subject-attribute-mapping: e:mail
+
+dn: cn=Fingerprint Mapper,cn=Certificate Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-certificate-mapper
+objectClass: ds-cfg-fingerprint-certificate-mapper
+cn: Fingerprint Mapper
+ds-cfg-java-class: org.opends.server.extensions.FingerprintCertificateMapper
+ds-cfg-enabled: true
+ds-cfg-fingerprint-attribute: ds-certificate-fingerprint
+ds-cfg-fingerprint-algorithm: MD5
+
+dn: cn=Connection Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Connection Handlers
+
+dn: cn=LDAP Connection Handler,cn=Connection Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-connection-handler
+objectClass: ds-cfg-ldap-connection-handler
+cn: LDAP Connection Handler
+ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler
+ds-cfg-enabled: true
+ds-cfg-listen-address: 0.0.0.0
+ds-cfg-listen-port: 389
+ds-cfg-accept-backlog: 128
+ds-cfg-allow-ldap-v2: true
+ds-cfg-keep-stats: true
+ds-cfg-use-tcp-keep-alive: true
+ds-cfg-use-tcp-no-delay: true
+ds-cfg-allow-tcp-reuse-address: true
+ds-cfg-send-rejection-notice: true
+ds-cfg-max-request-size: 5 megabytes
+ds-cfg-max-blocked-write-time-limit: 2 minutes
+ds-cfg-num-request-handlers: 2
+ds-cfg-allow-start-tls: false
+ds-cfg-use-ssl: false
+ds-cfg-ssl-client-auth-policy: optional
+ds-cfg-ssl-cert-nickname: server-cert
+
+dn: cn=LDAPS Connection Handler,cn=Connection Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-connection-handler
+objectClass: ds-cfg-ldap-connection-handler
+cn: LDAPS Connection Handler
+ds-cfg-java-class: org.opends.server.protocols.ldap.LDAPConnectionHandler
+ds-cfg-enabled: false
+ds-cfg-listen-address: 0.0.0.0
+ds-cfg-listen-port: 636
+ds-cfg-accept-backlog: 128
+ds-cfg-allow-ldap-v2: true
+ds-cfg-keep-stats: true
+ds-cfg-use-tcp-keep-alive: true
+ds-cfg-use-tcp-no-delay: true
+ds-cfg-allow-tcp-reuse-address: true
+ds-cfg-send-rejection-notice: true
+ds-cfg-max-request-size: 5 megabytes
+ds-cfg-max-blocked-write-time-limit: 2 minutes
+ds-cfg-num-request-handlers: 2
+ds-cfg-allow-start-tls: false
+ds-cfg-use-ssl: true
+ds-cfg-ssl-client-auth-policy: optional
+ds-cfg-ssl-cert-nickname: server-cert
+ds-cfg-key-manager-provider: cn=JKS,cn=Key Manager Providers,cn=config
+ds-cfg-trust-manager-provider: cn=JKS,cn=Trust Manager Providers,cn=config
+
+dn: cn=LDIF Connection Handler,cn=Connection Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-connection-handler
+objectClass: ds-cfg-ldif-connection-handler
+cn: LDIF Connection Handler
+ds-cfg-java-class: org.opends.server.protocols.LDIFConnectionHandler
+ds-cfg-enabled: true
+ds-cfg-ldif-directory: config/auto-process-ldif
+ds-cfg-poll-interval: 5 seconds
+
+dn: cn=JMX Connection Handler,cn=Connection Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-connection-handler
+objectClass: ds-cfg-jmx-connection-handler
+cn: JMX Connection Handler
+ds-cfg-java-class: org.opends.server.protocols.jmx.JmxConnectionHandler
+ds-cfg-enabled: false
+ds-cfg-use-ssl: false
+ds-cfg-listen-port: 1689
+ds-cfg-ssl-cert-nickname: server-cert
+
+dn: cn=Entry Caches,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Entry Caches
+
+dn: cn=FIFO,cn=Entry Caches,cn=config
+objectClass: top
+objectClass: ds-cfg-entry-cache
+objectClass: ds-cfg-fifo-entry-cache
+cn: FIFO
+ds-cfg-enabled: false
+ds-cfg-cache-level: 1
+ds-cfg-java-class: org.opends.server.extensions.FIFOEntryCache
+
+dn: cn=Soft Reference,cn=Entry Caches,cn=config
+objectClass: top
+objectClass: ds-cfg-entry-cache
+objectClass: ds-cfg-soft-reference-entry-cache
+cn: Soft Reference
+ds-cfg-enabled: false
+ds-cfg-cache-level: 2
+ds-cfg-java-class: org.opends.server.extensions.SoftReferenceEntryCache
+
+dn: cn=File System,cn=Entry Caches,cn=config
+objectClass: top
+objectClass: ds-cfg-entry-cache
+objectClass: ds-cfg-file-system-entry-cache
+cn: File System
+ds-cfg-enabled: false
+ds-cfg-cache-level: 3
+ds-cfg-java-class: org.opends.server.extensions.FileSystemEntryCache
+
+dn: cn=Extended Operations,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Extended Operations
+
+dn: cn=Cancel,cn=Extended Operations,cn=config
+objectClass: top
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-cancel-extended-operation-handler
+cn: Cancel
+ds-cfg-java-class: org.opends.server.extensions.CancelExtendedOperation
+ds-cfg-enabled: true
+
+dn: cn=Get Connection ID,cn=Extended Operations,cn=config
+objectClass: top
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-get-connection-id-extended-operation-handler
+cn: Get Connection ID
+ds-cfg-java-class: org.opends.server.extensions.GetConnectionIDExtendedOperation
+ds-cfg-enabled: true
+
+dn: cn=Password Modify,cn=Extended Operations,cn=config
+objectClass: top
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-password-modify-extended-operation-handler
+cn: Password Modify
+ds-cfg-java-class: org.opends.server.extensions.PasswordModifyExtendedOperation
+ds-cfg-enabled: true
+ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+
+dn: cn=Password Policy State,cn=Extended Operations,cn=config
+objectClass: top
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-password-policy-state-extended-operation-handler
+cn: Password Policy State
+ds-cfg-java-class: org.opends.server.extensions.PasswordPolicyStateExtendedOperation
+ds-cfg-enabled: true
+
+dn: cn=StartTLS,cn=Extended Operations,cn=config
+objectClass: top
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-start-tls-extended-operation-handler
+cn: StartTLS
+ds-cfg-java-class: org.opends.server.extensions.StartTLSExtendedOperation
+ds-cfg-enabled: true
+
+dn: cn=Get Symmetric Key,cn=Extended Operations,cn=config
+objectClass: top
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-get-symmetric-key-extended-operation-handler
+cn: Get Symmetric Key
+ds-cfg-java-class: org.opends.server.crypto.GetSymmetricKeyExtendedOperation
+ds-cfg-enabled: true
+
+dn: cn=Who Am I,cn=Extended Operations,cn=config
+objectClass: top
+objectClass: ds-cfg-extended-operation-handler
+objectClass: ds-cfg-who-am-i-extended-operation-handler
+cn: Who Am I
+ds-cfg-java-class: org.opends.server.extensions.WhoAmIExtendedOperation
+ds-cfg-enabled: true
+
+dn: cn=Group Implementations,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Group Implementations
+
+dn: cn=Dynamic,cn=Group Implementations,cn=config
+objectClass: top
+objectClass: ds-cfg-group-implementation
+objectClass: ds-cfg-dynamic-group-implementation
+cn: Dynamic
+ds-cfg-java-class: org.opends.server.extensions.DynamicGroup
+ds-cfg-enabled: true
+
+dn: cn=Static,cn=Group Implementations,cn=config
+objectClass: top
+objectClass: ds-cfg-group-implementation
+objectClass: ds-cfg-static-group-implementation
+cn: Static
+ds-cfg-java-class: org.opends.server.extensions.StaticGroup
+ds-cfg-enabled: true
+
+dn: cn=Virtual Static,cn=Group Implementations,cn=config
+objectClass: top
+objectClass: ds-cfg-group-implementation
+objectClass: ds-cfg-virtual-static-group-implementation
+cn: Virtual Static
+ds-cfg-java-class: org.opends.server.extensions.VirtualStaticGroup
+ds-cfg-enabled: true
+
+dn: cn=Identity Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Identity Mappers
+
+dn: cn=Exact Match,cn=Identity Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-identity-mapper
+objectClass: ds-cfg-exact-match-identity-mapper
+cn: Exact Match
+ds-cfg-java-class: org.opends.server.extensions.ExactMatchIdentityMapper
+ds-cfg-enabled: true
+ds-cfg-match-attribute: uid
+
+dn: cn=Regular Expression,cn=Identity Mappers,cn=config
+objectClass: top
+objectClass: ds-cfg-identity-mapper
+objectClass: ds-cfg-regular-expression-identity-mapper
+cn: Regular Expression
+ds-cfg-java-class: org.opends.server.extensions.RegularExpressionIdentityMapper
+ds-cfg-enabled: true
+ds-cfg-match-attribute: uid
+ds-cfg-match-pattern: ^([^@]+)@.+$
+ds-cfg-replace-pattern: $1
+
+dn: cn=Key Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Key Manager Providers
+
+dn: cn=JKS,cn=Key Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-key-manager-provider
+objectClass: ds-cfg-file-based-key-manager-provider
+cn: JKS
+ds-cfg-java-class: org.opends.server.extensions.FileBasedKeyManagerProvider
+ds-cfg-enabled: false
+ds-cfg-key-store-type: JKS
+ds-cfg-key-store-file: config/keystore
+ds-cfg-key-store-pin-file: config/keystore.pin
+
+dn: cn=PKCS12,cn=Key Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-key-manager-provider
+objectClass: ds-cfg-file-based-key-manager-provider
+cn: PKCS12
+ds-cfg-java-class: org.opends.server.extensions.FileBasedKeyManagerProvider
+ds-cfg-enabled: false
+ds-cfg-key-store-type: PKCS12
+ds-cfg-key-store-file: config/keystore.p12
+ds-cfg-key-store-pin-file: config/keystore.pin
+
+dn: cn=PKCS11,cn=Key Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-key-manager-provider
+objectClass: ds-cfg-pkcs11-key-manager-provider
+cn: PKCS11
+ds-cfg-java-class: org.opends.server.extensions.PKCS11KeyManagerProvider
+ds-cfg-enabled: false
+ds-cfg-key-store-pin-file: config/keystore.pin
+
+dn: cn=Loggers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Loggers
+
+dn: cn=File-Based Access Logger,cn=Loggers,cn=config
+objectClass: top
+objectClass: ds-cfg-log-publisher
+objectClass: ds-cfg-access-log-publisher
+objectClass: ds-cfg-file-based-access-log-publisher
+cn: File-Based Access Logger
+ds-cfg-java-class: org.opends.server.loggers.TextAccessLogPublisher
+ds-cfg-enabled: true
+ds-cfg-log-file: logs/access
+ds-cfg-log-file-permissions: 640
+ds-cfg-suppress-internal-operations: true
+ds-cfg-suppress-synchronization-operations: false
+ds-cfg-asynchronous: true
+ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+
+dn: cn=File-Based Audit Logger,cn=Loggers,cn=config
+objectClass: top
+objectClass: ds-cfg-log-publisher
+objectClass: ds-cfg-access-log-publisher
+objectClass: ds-cfg-file-based-access-log-publisher
+cn: File-Based Audit Logger
+ds-cfg-java-class: org.opends.server.loggers.TextAuditLogPublisher
+ds-cfg-enabled: false
+ds-cfg-log-file: logs/audit
+ds-cfg-log-file-permissions: 640
+ds-cfg-suppress-internal-operations: true
+ds-cfg-suppress-synchronization-operations: false
+ds-cfg-asynchronous: true
+ds-cfg-rotation-policy: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+
+dn: cn=File-Based Error Logger,cn=Loggers,cn=config
+objectClass: top
+objectClass: ds-cfg-log-publisher
+objectClass: ds-cfg-error-log-publisher
+objectClass: ds-cfg-file-based-error-log-publisher
+cn: File-Based Error Logger
+ds-cfg-java-class: org.opends.server.loggers.TextErrorLogPublisher
+ds-cfg-enabled: true
+ds-cfg-log-file: logs/errors
+ds-cfg-log-file-permissions: 640
+ds-cfg-default-severity: severe-warning
+ds-cfg-default-severity: severe-error
+ds-cfg-default-severity: fatal-error
+ds-cfg-default-severity: notice
+ds-cfg-asynchronous: false
+ds-cfg-rotation-policy: cn=7 Days Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+
+dn: cn=Replication Repair Logger,cn=Loggers,cn=config
+objectClass: top
+objectClass: ds-cfg-log-publisher
+objectClass: ds-cfg-error-log-publisher
+objectClass: ds-cfg-file-based-error-log-publisher
+cn: Replication Repair Logger
+ds-cfg-java-class: org.opends.server.loggers.TextErrorLogPublisher
+ds-cfg-enabled: true
+ds-cfg-log-file: logs/replication
+ds-cfg-log-file-permissions: 640
+ds-cfg-default-severity: none
+ds-cfg-override-severity: SYNC=INFO,MILD_ERROR,MILD_WARNING,NOTICE
+ds-cfg-asynchronous: false
+ds-cfg-rotation-policy: cn=7 Days Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-rotation-policy: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+ds-cfg-retention-policy: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+
+dn: cn=File-Based Debug Logger,cn=Loggers,cn=config
+objectClass: top
+objectClass: ds-cfg-log-publisher
+objectClass: ds-cfg-debug-log-publisher
+objectClass: ds-cfg-file-based-debug-log-publisher
+cn: File-Based Debug Logger
+ds-cfg-java-class: org.opends.server.loggers.debug.TextDebugLogPublisher
+ds-cfg-enabled: false
+ds-cfg-log-file: logs/debug
+ds-cfg-log-file-permissions: 640
+ds-cfg-default-debug-level: error
+ds-cfg-asynchronous: false
+
+dn: cn=Log Rotation Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Log Rotation Policies
+
+dn: cn=24 Hours Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-log-rotation-policy
+objectClass: ds-cfg-time-limit-log-rotation-policy
+cn: Time Limit Rotation Policy
+ds-cfg-java-class: org.opends.server.loggers.TimeLimitRotationPolicy
+ds-cfg-rotation-interval: 24 hours
+
+dn: cn=7 Days Time Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-log-rotation-policy
+objectClass: ds-cfg-time-limit-log-rotation-policy
+cn: Time Limit Rotation Policy
+ds-cfg-java-class: org.opends.server.loggers.TimeLimitRotationPolicy
+ds-cfg-rotation-interval: 7 days
+
+dn: cn=Size Limit Rotation Policy,cn=Log Rotation Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-log-rotation-policy
+objectClass: ds-cfg-size-limit-log-rotation-policy
+cn: Size Limit Rotation Policy
+ds-cfg-java-class: org.opends.server.loggers.SizeBasedRotationPolicy
+ds-cfg-file-size-limit: 100 megabytes
+
+dn: cn=Fixed Time Rotation Policy,cn=Log Rotation Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-log-rotation-policy
+objectClass: ds-cfg-fixed-time-log-rotation-policy
+cn: Fixed Time Rotation Policy
+ds-cfg-java-class: org.opends.server.loggers.FixedTimeRotationPolicy
+ds-cfg-time-of-day: 2359
+
+dn: cn=Log Retention Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Log Retention Policies
+
+dn: cn=File Count Retention Policy,cn=Log Retention Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-log-retention-policy
+objectClass: ds-cfg-file-count-log-retention-policy
+cn: File Count Retention Policy
+ds-cfg-java-class: org.opends.server.loggers.FileNumberRetentionPolicy
+ds-cfg-number-of-files: 10
+
+dn: cn=Free Disk Space Retention Policy,cn=Log Retention Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-log-retention-policy
+objectClass: ds-cfg-free-disk-space-log-retention-policy
+cn: Free Disk Space Retention Policy
+ds-cfg-java-class: org.opends.server.loggers.FreeDiskSpaceRetentionPolicy
+ds-cfg-free-disk-space: 500 megabytes
+
+dn: cn=Size Limit Retention Policy,cn=Log Retention Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-log-retention-policy
+objectClass: ds-cfg-size-limit-log-retention-policy
+cn: Size Limit Retention Policy
+ds-cfg-java-class: org.opends.server.loggers.SizeBasedRetentionPolicy
+ds-cfg-disk-space-used: 500 megabytes
+
+dn: cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Matching Rules
+
+dn: cn=Auth Password Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Auth Password Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.AuthPasswordEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Auth Password Exact Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Auth Password Exact Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.AuthPasswordExactEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Bit String Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Bit String Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.BitStringEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Boolean Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Boolean Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.BooleanEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Exact Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Case Exact Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseExactEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Exact Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-ordering-matching-rule
+cn: Case Exact Ordering Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseExactOrderingMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Exact Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-substring-matching-rule
+cn: Case Exact Substring Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseExactSubstringMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Exact IA5 Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Case Exact IA5 Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseExactIA5EqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Exact IA5 Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-substring-matching-rule
+cn: Case Exact IA5 Substring Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseExactIA5SubstringMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Ignore Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Case Ignore Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Ignore Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-ordering-matching-rule
+cn: Case Ignore Ordering Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreOrderingMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Ignore Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-substring-matching-rule
+cn: Case Ignore Substring Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreSubstringMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Ignore IA5 Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Case Ignore IA5 Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreIA5EqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Ignore IA5 Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-substring-matching-rule
+cn: Case Ignore IA5 Substring Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreIA5SubstringMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Ignore List Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Case Ignore List Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreListEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Case Ignore List Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-substring-matching-rule
+cn: Case Ignore List Substring Matching Rule
+ds-cfg-java-class: org.opends.server.schema.CaseIgnoreListSubstringMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Directory String First Component Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Directory String First Component Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.DirectoryStringFirstComponentEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Distinguished Name Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Distinguished Name Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.DistinguishedNameEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Double Metaphone Approximate Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-approximate-matching-rule
+cn: Double Metaphone Approximate Matching Rule
+ds-cfg-java-class: org.opends.server.schema.DoubleMetaphoneApproximateMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Generalized Time Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Generalized Time Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.GeneralizedTimeEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Generalized Time Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-ordering-matching-rule
+cn: Generalized Time Ordering Matching Rule
+ds-cfg-java-class: org.opends.server.schema.GeneralizedTimeOrderingMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Historical CSN Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: ds-cfg-ordering-matching-rule
+objectClass: top
+objectClass: ds-cfg-matching-rule
+ds-cfg-java-class: org.opends.server.replication.plugin.HistoricalCsnOrderingMatchingRule
+ds-cfg-enabled: true
+cn: Historical CSN Ordering Matching Rule
+
+dn: cn=Integer Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Integer Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.IntegerEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Integer Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-ordering-matching-rule
+cn: Integer Ordering Matching Rule
+ds-cfg-java-class: org.opends.server.schema.IntegerOrderingMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Integer First Component Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Integer First Component Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.IntegerFirstComponentEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Keyword Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Keyword Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.KeywordEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Numeric String Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Numeric String Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.NumericStringEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Numeric String Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-ordering-matching-rule
+cn: Numeric String Ordering Matching Rule
+ds-cfg-java-class: org.opends.server.schema.NumericStringOrderingMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Numeric String Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-substring-matching-rule
+cn: Numeric String Substring Matching Rule
+ds-cfg-java-class: org.opends.server.schema.NumericStringSubstringMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Object Identifier Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Object Identifier Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.ObjectIdentifierEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Object Identifier First Component Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Object Identifier First Component Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.ObjectIdentifierFirstComponentEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Octet String Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Octet String Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.OctetStringEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Octet String Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-ordering-matching-rule
+cn: Octet String Ordering Matching Rule
+ds-cfg-java-class: org.opends.server.schema.OctetStringOrderingMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Octet String Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-substring-matching-rule
+cn: Octet String Substring Matching Rule
+ds-cfg-java-class: org.opends.server.schema.OctetStringSubstringMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Presentation Address Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Presentation Address Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.PresentationAddressEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Protocol Information Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Protocol Information Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.ProtocolInformationEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Telephone Number Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Telephone Number Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.TelephoneNumberEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Telephone Number Substring Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-substring-matching-rule
+cn: Telephone Number Substring Matching Rule
+ds-cfg-java-class: org.opends.server.schema.TelephoneNumberSubstringMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Unique Member Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Unique Member Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.UniqueMemberEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=User Password Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: User Password Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.UserPasswordEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=User Password Exact Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: User Password Exact Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.UserPasswordExactEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=UUID Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: UUID Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.UUIDEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=UUID Ordering Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-ordering-matching-rule
+cn: UUID Ordering Matching Rule
+ds-cfg-java-class: org.opends.server.schema.UUIDOrderingMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Word Equality Matching Rule,cn=Matching Rules,cn=config
+objectClass: top
+objectClass: ds-cfg-matching-rule
+objectClass: ds-cfg-equality-matching-rule
+cn: Word Equality Matching Rule
+ds-cfg-java-class: org.opends.server.schema.WordEqualityMatchingRule
+ds-cfg-enabled: true
+
+dn: cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Monitor Providers
+
+dn: cn=Client Connections,cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+objectClass: ds-cfg-client-connection-monitor-provider
+cn: Client Connections
+ds-cfg-java-class: org.opends.server.monitors.ClientConnectionMonitorProvider
+ds-cfg-enabled: true
+
+dn: cn=Entry Caches,cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+objectClass: ds-cfg-entry-cache-monitor-provider
+cn: Entry Caches
+ds-cfg-java-class: org.opends.server.monitors.EntryCacheMonitorProvider
+ds-cfg-enabled: true
+
+dn: cn=JVM Memory Usage,cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+objectClass: ds-cfg-memory-usage-monitor-provider
+cn: JVM Memory Usage
+ds-cfg-java-class: org.opends.server.monitors.MemoryUsageMonitorProvider
+ds-cfg-enabled: true
+
+dn: cn=JVM Stack Trace,cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+objectClass: ds-cfg-stack-trace-monitor-provider
+cn: JVM Stack Trace
+ds-cfg-java-class: org.opends.server.monitors.StackTraceMonitorProvider
+ds-cfg-enabled: true
+
+dn: cn=System Info,cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+objectClass: ds-cfg-system-info-monitor-provider
+cn: System Info
+ds-cfg-java-class: org.opends.server.monitors.SystemInfoMonitorProvider
+ds-cfg-enabled: true
+
+dn: cn=Version,cn=Monitor Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-monitor-provider
+objectClass: ds-cfg-version-monitor-provider
+cn: Version
+ds-cfg-java-class: org.opends.server.monitors.VersionMonitorProvider
+ds-cfg-enabled: true
+
+dn: cn=Password Generators,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Password Generators
+
+dn: cn=Random Password Generator,cn=Password Generators,cn=config
+objectClass: top
+objectClass: ds-cfg-password-generator
+objectClass: ds-cfg-random-password-generator
+cn: Random Password Generator
+ds-cfg-java-class: org.opends.server.extensions.RandomPasswordGenerator
+ds-cfg-enabled: true
+ds-cfg-password-character-set: alpha:abcdefghijklmnopqrstuvwxyz
+ds-cfg-password-character-set: numeric:0123456789
+ds-cfg-password-format: alpha:3,numeric:2,alpha:3
+
+dn: cn=Password Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Password Policies
+
+dn: cn=Default Password Policy,cn=Password Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-password-policy
+cn: Default Password Policy
+ds-cfg-password-attribute: userPassword
+ds-cfg-default-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config
+ds-cfg-allow-expired-password-changes: false
+ds-cfg-allow-multiple-password-values: false
+ds-cfg-allow-pre-encoded-passwords: false
+ds-cfg-allow-user-password-changes: true
+ds-cfg-expire-passwords-without-warning: false
+ds-cfg-force-change-on-add: false
+ds-cfg-force-change-on-reset: false
+ds-cfg-grace-login-count: 0
+ds-cfg-idle-lockout-interval: 0 seconds
+ds-cfg-lockout-failure-count: 0
+ds-cfg-lockout-duration: 0 seconds
+ds-cfg-lockout-failure-expiration-interval: 0 seconds
+ds-cfg-min-password-age: 0 seconds
+ds-cfg-max-password-age: 0 seconds
+ds-cfg-max-password-reset-age: 0 seconds
+ds-cfg-password-expiration-warning-interval: 5 days
+ds-cfg-password-generator: cn=Random Password Generator,cn=Password Generators,cn=config
+ds-cfg-password-change-requires-current-password: false
+ds-cfg-require-secure-authentication: false
+ds-cfg-require-secure-password-changes: false
+ds-cfg-skip-validation-for-administrators: false
+ds-cfg-state-update-failure-policy: reactive
+ds-cfg-password-history-count: 0
+ds-cfg-password-history-duration: 0 seconds
+
+dn: cn=Root Password Policy,cn=Password Policies,cn=config
+objectClass: top
+objectClass: ds-cfg-password-policy
+cn: Root Password Policy
+ds-cfg-password-attribute: userPassword
+ds-cfg-default-password-storage-scheme: cn=Salted SHA-512,cn=Password Storage Schemes,cn=config
+ds-cfg-allow-expired-password-changes: false
+ds-cfg-allow-multiple-password-values: false
+ds-cfg-allow-pre-encoded-passwords: false
+ds-cfg-allow-user-password-changes: true
+ds-cfg-expire-passwords-without-warning: false
+ds-cfg-force-change-on-add: false
+ds-cfg-force-change-on-reset: false
+ds-cfg-grace-login-count: 0
+ds-cfg-idle-lockout-interval: 0 seconds
+ds-cfg-lockout-failure-count: 0
+ds-cfg-lockout-duration: 0 seconds
+ds-cfg-lockout-failure-expiration-interval: 0 seconds
+ds-cfg-min-password-age: 0 seconds
+ds-cfg-max-password-age: 0 seconds
+ds-cfg-max-password-reset-age: 0 seconds
+ds-cfg-password-expiration-warning-interval: 5 days
+ds-cfg-password-change-requires-current-password: true
+ds-cfg-require-secure-authentication: false
+ds-cfg-require-secure-password-changes: false
+ds-cfg-skip-validation-for-administrators: false
+ds-cfg-state-update-failure-policy: ignore
+ds-cfg-password-history-count: 0
+ds-cfg-password-history-duration: 0 seconds
+
+dn: cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Password Storage Schemes
+
+dn: cn=Base64,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-base64-password-storage-scheme
+cn: Base64
+ds-cfg-java-class: org.opends.server.extensions.Base64PasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=Clear,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-clear-password-storage-scheme
+cn: Clear
+ds-cfg-java-class: org.opends.server.extensions.ClearPasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=CRYPT,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-crypt-password-storage-scheme
+cn: CRYPT
+ds-cfg-java-class: org.opends.server.extensions.CryptPasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=MD5,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-md5-password-storage-scheme
+cn: MD5
+ds-cfg-java-class: org.opends.server.extensions.MD5PasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=Salted MD5,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-salted-md5-password-storage-scheme
+cn: Salted MD5
+ds-cfg-java-class: org.opends.server.extensions.SaltedMD5PasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-salted-sha1-password-storage-scheme
+cn: Salted SHA-1
+ds-cfg-java-class: org.opends.server.extensions.SaltedSHA1PasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=Salted SHA-256,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-salted-sha256-password-storage-scheme
+cn: Salted SHA-256
+ds-cfg-java-class: org.opends.server.extensions.SaltedSHA256PasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=Salted SHA-384,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-salted-sha384-password-storage-scheme
+cn: Salted SHA-384
+ds-cfg-java-class: org.opends.server.extensions.SaltedSHA384PasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=Salted SHA-512,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-salted-sha512-password-storage-scheme
+cn: Salted SHA-512
+ds-cfg-java-class: org.opends.server.extensions.SaltedSHA512PasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=SHA-1,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-sha1-password-storage-scheme
+cn: SHA-1
+ds-cfg-java-class: org.opends.server.extensions.SHA1PasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=3DES,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-triple-des-password-storage-scheme
+cn: 3DES
+ds-cfg-java-class: org.opends.server.extensions.TripleDESPasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=AES,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-aes-password-storage-scheme
+cn: AES
+ds-cfg-java-class: org.opends.server.extensions.AESPasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=Blowfish,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-blowfish-password-storage-scheme
+cn: Blowfish
+ds-cfg-java-class: org.opends.server.extensions.BlowfishPasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=RC4,cn=Password Storage Schemes,cn=config
+objectClass: top
+objectClass: ds-cfg-password-storage-scheme
+objectClass: ds-cfg-rc4-password-storage-scheme
+cn: RC4
+ds-cfg-java-class: org.opends.server.extensions.RC4PasswordStorageScheme
+ds-cfg-enabled: true
+
+dn: cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Password Validators
+
+dn: cn=Attribute Value,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-password-validator
+objectClass: ds-cfg-attribute-value-password-validator
+cn: Attribute Value
+ds-cfg-java-class: org.opends.server.extensions.AttributeValuePasswordValidator
+ds-cfg-enabled: true
+ds-cfg-test-reversed-password: true
+
+dn: cn=Character Set,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-password-validator
+objectClass: ds-cfg-character-set-password-validator
+cn: Character Set
+ds-cfg-java-class: org.opends.server.extensions.CharacterSetPasswordValidator
+ds-cfg-enabled: true
+ds-cfg-character-set: 1:abcdefghijklmnopqrstuvwxyz
+ds-cfg-character-set: 1:ABCDEFGHIJKLMNOPQRSTUVWXYZ
+ds-cfg-character-set: 1:0123456789
+ds-cfg-character-set: 1:~!@#$%^&*()-_=+[]{}|;:,.<>/?
+ds-cfg-allow-unclassified-characters: true
+
+dn: cn=Dictionary,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-password-validator
+objectClass: ds-cfg-dictionary-password-validator
+cn: Dictionary
+ds-cfg-java-class: org.opends.server.extensions.DictionaryPasswordValidator
+ds-cfg-enabled: false
+ds-cfg-dictionary-file: config/wordlist.txt
+ds-cfg-case-sensitive-validation: false
+ds-cfg-test-reversed-password: true
+
+dn: cn=Length-Based Password Validator,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-password-validator
+objectClass: ds-cfg-length-based-password-validator
+cn: Length-Based Password Validator
+ds-cfg-java-class: org.opends.server.extensions.LengthBasedPasswordValidator
+ds-cfg-enabled: true
+ds-cfg-min-password-length: 6
+ds-cfg-max-password-length: 0
+
+dn: cn=Repeated Characters,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-password-validator
+objectClass: ds-cfg-repeated-characters-password-validator
+cn: Repeated Characters
+ds-cfg-java-class: org.opends.server.extensions.RepeatedCharactersPasswordValidator
+ds-cfg-enabled: true
+ds-cfg-max-consecutive-length: 2
+ds-cfg-case-sensitive-validation: false
+
+dn: cn=Similarity-Based Password Validator,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-password-validator
+objectClass: ds-cfg-similarity-based-password-validator
+cn: Similarity-Based Password Validator
+ds-cfg-java-class: org.opends.server.extensions.SimilarityBasedPasswordValidator
+ds-cfg-enabled: true
+ds-cfg-min-password-difference: 3
+
+dn: cn=Unique Characters,cn=Password Validators,cn=config
+objectClass: top
+objectClass: ds-cfg-password-validator
+objectClass: ds-cfg-unique-characters-password-validator
+cn: Unique Characters
+ds-cfg-java-class: org.opends.server.extensions.UniqueCharactersPasswordValidator
+ds-cfg-enabled: true
+ds-cfg-min-unique-characters: 5
+ds-cfg-case-sensitive-validation: false
+
+dn: cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+objectClass: ds-cfg-plugin-root
+cn: Plugins
+
+dn: cn=7-Bit Clean,cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-plugin
+objectClass: ds-cfg-seven-bit-clean-plugin
+cn: 7-Bit Clean
+ds-cfg-java-class: org.opends.server.plugins.SevenBitCleanPlugin
+ds-cfg-enabled: false
+ds-cfg-plugin-type: ldifImport
+ds-cfg-plugin-type: preParseAdd
+ds-cfg-plugin-type: preParseModify
+ds-cfg-plugin-type: preParseModifyDN
+ds-cfg-attribute-type: uid
+ds-cfg-attribute-type: mail
+ds-cfg-attribute-type: userPassword
+ds-cfg-invoke-for-internal-operations: true
+
+dn: cn=Entry UUID,cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-plugin
+objectClass: ds-cfg-entry-uuid-plugin
+cn: Entry UUID
+ds-cfg-java-class: org.opends.server.plugins.EntryUUIDPlugin
+ds-cfg-enabled: true
+ds-cfg-plugin-type: ldifImport
+ds-cfg-plugin-type: preOperationAdd
+ds-cfg-invoke-for-internal-operations: true
+
+dn: cn=LastMod,cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-plugin
+objectClass: ds-cfg-last-mod-plugin
+cn: LastMod
+ds-cfg-java-class: org.opends.server.plugins.LastModPlugin
+ds-cfg-enabled: true
+ds-cfg-plugin-type: preOperationAdd
+ds-cfg-plugin-type: preOperationModify
+ds-cfg-plugin-type: preOperationModifyDN
+ds-cfg-invoke-for-internal-operations: true
+
+dn: cn=LDAP Attribute Description List,cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-plugin
+objectClass: ds-cfg-ldap-attribute-description-list-plugin
+cn: LDAP Attribute Description List
+ds-cfg-java-class: org.opends.server.plugins.LDAPADListPlugin
+ds-cfg-enabled: true
+ds-cfg-plugin-type: preParseSearch
+ds-cfg-invoke-for-internal-operations: true
+
+dn: cn=Password Policy Import,cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-plugin
+objectClass: ds-cfg-password-policy-import-plugin
+cn: Password Policy Import
+ds-cfg-java-class: org.opends.server.plugins.PasswordPolicyImportPlugin
+ds-cfg-enabled: true
+ds-cfg-plugin-type: ldifImport
+ds-cfg-default-user-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config
+ds-cfg-default-auth-password-storage-scheme: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config
+ds-cfg-invoke-for-internal-operations: false
+
+dn: cn=Profiler,cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-plugin
+objectClass: ds-cfg-profiler-plugin
+cn: Profiler
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.plugins.profiler.ProfilerPlugin
+ds-cfg-plugin-type: startup
+ds-cfg-enable-profiling-on-startup: false
+ds-cfg-profile-directory: logs
+ds-cfg-profile-sample-interval: 10 milliseconds
+ds-cfg-invoke-for-internal-operations: false
+
+dn: cn=Referential Integrity,cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-plugin
+objectClass: ds-cfg-referential-integrity-plugin
+cn: Referential Integrity
+ds-cfg-java-class: org.opends.server.plugins.ReferentialIntegrityPlugin
+ds-cfg-enabled: false
+ds-cfg-plugin-type: postOperationDelete
+ds-cfg-plugin-type: postOperationModifyDN
+ds-cfg-plugin-type: subordinateModifyDN
+ds-cfg-attribute-type: member
+ds-cfg-attribute-type: uniqueMember
+ds-cfg-invoke-for-internal-operations: true
+
+dn: cn=UID Unique Attribute,cn=Plugins,cn=config
+objectClass: top
+objectClass: ds-cfg-plugin
+objectClass: ds-cfg-unique-attribute-plugin
+cn: UID Unique Attribute
+ds-cfg-java-class: org.opends.server.plugins.UniqueAttributePlugin
+ds-cfg-enabled: false
+ds-cfg-plugin-type: preOperationAdd
+ds-cfg-plugin-type: preOperationModify
+ds-cfg-plugin-type: preOperationModifyDN
+ds-cfg-plugin-type: postSynchronizationAdd
+ds-cfg-plugin-type: postSynchronizationModify
+ds-cfg-plugin-type: postSynchronizationModifyDN
+ds-cfg-type: uid
+ds-cfg-invoke-for-internal-operations: true
+
+dn: cn=Root DNs,cn=config
+objectClass: top
+objectClass: ds-cfg-root-dn
+cn: Root DNs
+ds-cfg-default-root-privilege-name: bypass-acl
+ds-cfg-default-root-privilege-name: modify-acl
+ds-cfg-default-root-privilege-name: config-read
+ds-cfg-default-root-privilege-name: config-write
+ds-cfg-default-root-privilege-name: ldif-import
+ds-cfg-default-root-privilege-name: ldif-export
+ds-cfg-default-root-privilege-name: backend-backup
+ds-cfg-default-root-privilege-name: backend-restore
+ds-cfg-default-root-privilege-name: server-shutdown
+ds-cfg-default-root-privilege-name: server-restart
+ds-cfg-default-root-privilege-name: disconnect-client
+ds-cfg-default-root-privilege-name: cancel-request
+ds-cfg-default-root-privilege-name: password-reset
+ds-cfg-default-root-privilege-name: update-schema
+ds-cfg-default-root-privilege-name: privilege-change
+ds-cfg-default-root-privilege-name: unindexed-search
+
+dn: cn=Directory Manager,cn=Root DNs,cn=config
+objectClass: top
+objectClass: person
+objectClass: organizationalPerson
+objectClass: inetOrgPerson
+objectClass: ds-cfg-root-dn-user
+cn: Directory Manager
+givenName: Directory
+sn: Manager
+userPassword: {SSHA512}l1t43vVl7Uh03PpQ2vCsT0B7Q0HTi+tKJmH7tZTmSGaKrMHWHO1czfwEsjMgfbeQoiYQDGDuxolipR0H6ajMu1YHlTjPNG9Z
+ds-cfg-alternate-bind-dn: cn=Directory Manager
+ds-rlim-size-limit: 0
+ds-rlim-time-limit: 0
+ds-rlim-idle-time-limit: 0
+ds-rlim-lookthrough-limit: 0
+ds-pwp-password-policy-dn: cn=Root Password Policy,cn=Password Policies,cn=config
+
+dn: cn=Root DSE,cn=config
+objectClass: top
+objectClass: ds-cfg-root-dse-backend
+cn: Root DSE
+ds-cfg-show-all-attributes: false
+
+dn: cn=SASL Mechanisms,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: SASL Mechanisms
+
+dn: cn=ANONYMOUS,cn=SASL Mechanisms,cn=config
+objectClass: top
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: ds-cfg-anonymous-sasl-mechanism-handler
+cn: ANONYMOUS
+ds-cfg-java-class: org.opends.server.extensions.AnonymousSASLMechanismHandler
+ds-cfg-enabled: false
+
+dn: cn=CRAM-MD5,cn=SASL Mechanisms,cn=config
+objectClass: top
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: ds-cfg-cram-md5-sasl-mechanism-handler
+cn: CRAM-MD5
+ds-cfg-java-class: org.opends.server.extensions.CRAMMD5SASLMechanismHandler
+ds-cfg-enabled: true
+ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+
+dn: cn=DIGEST-MD5,cn=SASL Mechanisms,cn=config
+objectClass: top
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: ds-cfg-digest-md5-sasl-mechanism-handler
+cn: DIGEST-MD5
+ds-cfg-java-class: org.opends.server.extensions.DigestMD5SASLMechanismHandler
+ds-cfg-enabled: true
+ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+
+dn: cn=EXTERNAL,cn=SASL Mechanisms,cn=config
+objectClass: top
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: ds-cfg-external-sasl-mechanism-handler
+cn: EXTERNAL
+ds-cfg-java-class: org.opends.server.extensions.ExternalSASLMechanismHandler
+ds-cfg-enabled: true
+ds-cfg-certificate-validation-policy: ifpresent
+ds-cfg-certificate-attribute: userCertificate
+ds-cfg-certificate-mapper: cn=Subject Equals DN,cn=Certificate Mappers,cn=config
+
+dn: cn=GSSAPI,cn=SASL Mechanisms,cn=config
+objectClass: top
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: ds-cfg-gssapi-sasl-mechanism-handler
+cn: GSSAPI
+ds-cfg-java-class: org.opends.server.extensions.GSSAPISASLMechanismHandler
+ds-cfg-enabled: false
+ds-cfg-identity-mapper: cn=Regular Expression,cn=Identity Mappers,cn=config
+ds-cfg-keytab: /etc/krb5/krb5.keytab
+
+dn: cn=PLAIN,cn=SASL Mechanisms,cn=config
+objectClass: top
+objectClass: ds-cfg-sasl-mechanism-handler
+objectClass: ds-cfg-plain-sasl-mechanism-handler
+cn: PLAIN
+ds-cfg-java-class: org.opends.server.extensions.PlainSASLMechanismHandler
+ds-cfg-enabled: true
+ds-cfg-identity-mapper: cn=Exact Match,cn=Identity Mappers,cn=config
+
+dn: cn=Synchronization Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Synchronization Providers
+
+dn: cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-synchronization-provider
+objectClass: ds-cfg-replication-synchronization-provider
+cn: Multimaster Synchronization
+ds-cfg-enabled: true
+ds-cfg-java-class: org.opends.server.replication.plugin.MultimasterReplication
+
+dn: cn=domains,cn=Multimaster Synchronization,cn=Synchronization Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: domains
+
+dn: cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Syntaxes
+
+dn: cn=Absolute Subtree Specification,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Absolute Subtree Specification
+ds-cfg-java-class: org.opends.server.schema.AbsoluteSubtreeSpecificationSyntax
+ds-cfg-enabled: true
+
+dn: cn=Sun-defined Access Control Information,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Sun-defined Access Control Information
+ds-cfg-java-class: org.opends.server.schema.AciSyntax
+ds-cfg-enabled: true
+
+dn: cn=Attribute Type Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+objectClass: ds-cfg-attribute-type-description-attribute-syntax
+cn: Attribute Type Description
+ds-cfg-java-class: org.opends.server.schema.AttributeTypeSyntax
+ds-cfg-enabled: true
+ds-cfg-strip-syntax-min-upper-bound: false
+
+dn: cn=Authentication Password,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Authentiation Password
+ds-cfg-java-class: org.opends.server.schema.AuthPasswordSyntax
+ds-cfg-enabled: true
+
+dn: cn=Binary,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Binary
+ds-cfg-java-class: org.opends.server.schema.BinarySyntax
+ds-cfg-enabled: true
+
+dn: cn=Bit String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Bit String
+ds-cfg-java-class: org.opends.server.schema.BitStringSyntax
+ds-cfg-enabled: true
+
+dn: cn=Boolean,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Boolean
+ds-cfg-java-class: org.opends.server.schema.BooleanSyntax
+ds-cfg-enabled: true
+
+dn: cn=Certificate,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Certificate
+ds-cfg-java-class: org.opends.server.schema.CertificateSyntax
+ds-cfg-enabled: true
+
+dn: cn=Certificate List,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Certificate List
+ds-cfg-java-class: org.opends.server.schema.CertificateListSyntax
+ds-cfg-enabled: true
+
+dn: cn=Certificate Pair,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Certificate Pair
+ds-cfg-java-class: org.opends.server.schema.CertificatePairSyntax
+ds-cfg-enabled: true
+
+dn: cn=Country String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Country String
+ds-cfg-java-class: org.opends.server.schema.CountryStringSyntax
+ds-cfg-enabled: true
+
+dn: cn=Delivery Method,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Delivery Method
+ds-cfg-java-class: org.opends.server.schema.DeliveryMethodSyntax
+ds-cfg-enabled: true
+
+dn: cn=Directory String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+objectClass: ds-cfg-directory-string-attribute-syntax
+cn: Directory String
+ds-cfg-java-class: org.opends.server.schema.DirectoryStringSyntax
+ds-cfg-enabled: true
+ds-cfg-allow-zero-length-values: false
+
+dn: cn=Distinguished Name,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Distinguished Name
+ds-cfg-java-class: org.opends.server.schema.DistinguishedNameSyntax
+ds-cfg-enabled: true
+
+dn: cn=DIT Content Rule Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: DIT Content Rule Description
+ds-cfg-java-class: org.opends.server.schema.DITContentRuleSyntax
+ds-cfg-enabled: true
+
+dn: cn=DIT Structure Rule Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: DIT Structure Rule Description
+ds-cfg-java-class: org.opends.server.schema.DITStructureRuleSyntax
+ds-cfg-enabled: true
+
+dn: cn=Enhanced Guide,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Enhanced Guide
+ds-cfg-java-class: org.opends.server.schema.EnhancedGuideSyntax
+ds-cfg-enabled: true
+
+dn: cn=Facsimile Telephone Number,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Facsimile Telephone Number
+ds-cfg-java-class: org.opends.server.schema.FaxNumberSyntax
+ds-cfg-enabled: true
+
+dn: cn=Fax,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Fax
+ds-cfg-java-class: org.opends.server.schema.FaxSyntax
+ds-cfg-enabled: true
+
+dn: cn=Generalized Time,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Generalized Time
+ds-cfg-java-class: org.opends.server.schema.GeneralizedTimeSyntax
+ds-cfg-enabled: true
+
+dn: cn=Guide,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Guide
+ds-cfg-java-class: org.opends.server.schema.GuideSyntax
+ds-cfg-enabled: true
+
+dn: cn=IA5 String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: IA5 String
+ds-cfg-java-class: org.opends.server.schema.IA5StringSyntax
+ds-cfg-enabled: true
+
+dn: cn=Integer,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Integer
+ds-cfg-java-class: org.opends.server.schema.IntegerSyntax
+ds-cfg-enabled: true
+
+dn: cn=JPEG,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: JPEG
+ds-cfg-java-class: org.opends.server.schema.JPEGSyntax
+ds-cfg-enabled: true
+
+dn: cn=LDAP Syntax Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: LDAP Syntax Description
+ds-cfg-java-class: org.opends.server.schema.LDAPSyntaxDescriptionSyntax
+ds-cfg-enabled: true
+
+dn: cn=Matching Rule Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Matching Rule Description
+ds-cfg-java-class: org.opends.server.schema.MatchingRuleSyntax
+ds-cfg-enabled: true
+
+dn: cn=Matching Rule Use Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Matching Rule Use Description
+ds-cfg-java-class: org.opends.server.schema.MatchingRuleUseSyntax
+ds-cfg-enabled: true
+
+dn: cn=Name and Optional UID,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Name and Optional UID
+ds-cfg-java-class: org.opends.server.schema.NameAndOptionalUIDSyntax
+ds-cfg-enabled: true
+
+dn: cn=Name Form Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Name Form Description
+ds-cfg-java-class: org.opends.server.schema.NameFormSyntax
+ds-cfg-enabled: true
+
+dn: cn=Numeric String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Numeric String
+ds-cfg-java-class: org.opends.server.schema.NumericStringSyntax
+ds-cfg-enabled: true
+
+dn: cn=Object Class Description,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Object Class Description
+ds-cfg-java-class: org.opends.server.schema.ObjectClassSyntax
+ds-cfg-enabled: true
+
+dn: cn=Object Identifier,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Object Identifier
+ds-cfg-java-class: org.opends.server.schema.OIDSyntax
+ds-cfg-enabled: true
+
+dn: cn=Octet String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Octet String
+ds-cfg-java-class: org.opends.server.schema.OctetStringSyntax
+ds-cfg-enabled: true
+
+dn: cn=Other Mailbox,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Other Mailbox
+ds-cfg-java-class: org.opends.server.schema.OtherMailboxSyntax
+ds-cfg-enabled: true
+
+dn: cn=Postal Address,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Postal Address
+ds-cfg-java-class: org.opends.server.schema.PostalAddressSyntax
+ds-cfg-enabled: true
+
+dn: cn=Presentation Address,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Presentation Address
+ds-cfg-java-class: org.opends.server.schema.PresentationAddressSyntax
+ds-cfg-enabled: true
+
+dn: cn=Printable String,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Printable String
+ds-cfg-java-class: org.opends.server.schema.PrintableStringSyntax
+ds-cfg-enabled: true
+
+dn: cn=Protocol Information,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Protocol Information
+ds-cfg-java-class: org.opends.server.schema.ProtocolInformationSyntax
+ds-cfg-enabled: true
+
+dn: cn=Relative Subtree Specification,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Relative Subtree Specification
+ds-cfg-java-class: org.opends.server.schema.RelativeSubtreeSpecificationSyntax
+ds-cfg-enabled: true
+
+dn: cn=Substring Assertion,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Substring Assertion
+ds-cfg-java-class: org.opends.server.schema.SubstringAssertionSyntax
+ds-cfg-enabled: true
+
+dn: cn=Subtree Specification,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Subtree Specification
+ds-cfg-java-class: org.opends.server.schema.RFC3672SubtreeSpecificationSyntax
+ds-cfg-enabled: true
+
+dn: cn=Supported Algorithm,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Supported Algorithm
+ds-cfg-java-class: org.opends.server.schema.SupportedAlgorithmSyntax
+ds-cfg-enabled: true
+
+dn: cn=Telephone Number,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+objectClass: ds-cfg-telephone-number-attribute-syntax
+cn: Telephone Number
+ds-cfg-java-class: org.opends.server.schema.TelephoneNumberSyntax
+ds-cfg-enabled: true
+ds-cfg-strict-format: false
+
+dn: cn=Teletex Terminal Identifier,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Teletex Terminal Identifier
+ds-cfg-java-class: org.opends.server.schema.TeletexTerminalIdentifierSyntax
+ds-cfg-enabled: true
+
+dn: cn=Telex Number,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: Telex Number
+ds-cfg-java-class: org.opends.server.schema.TelexNumberSyntax
+ds-cfg-enabled: true
+
+dn: cn=UTC Time,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: UTC Time
+ds-cfg-java-class: org.opends.server.schema.UTCTimeSyntax
+ds-cfg-enabled: true
+
+dn: cn=User Password,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: User Password
+ds-cfg-java-class: org.opends.server.schema.UserPasswordSyntax
+ds-cfg-enabled: true
+
+dn: cn=UUID,cn=Syntaxes,cn=config
+objectClass: top
+objectClass: ds-cfg-attribute-syntax
+cn: UUID
+ds-cfg-java-class: org.opends.server.schema.UUIDSyntax
+ds-cfg-enabled: true
+
+dn: cn=Trust Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Trust Manager Providers
+
+dn: cn=Blind Trust,cn=Trust Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-trust-manager-provider
+objectClass: ds-cfg-blind-trust-manager-provider
+cn: Blind Trust
+ds-cfg-java-class: org.opends.server.extensions.BlindTrustManagerProvider
+ds-cfg-enabled: false
+
+dn: cn=JKS,cn=Trust Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-trust-manager-provider
+objectClass: ds-cfg-file-based-trust-manager-provider
+cn: JKS
+ds-cfg-java-class: org.opends.server.extensions.FileBasedTrustManagerProvider
+ds-cfg-enabled: false
+ds-cfg-trust-store-type: JKS
+ds-cfg-trust-store-file: config/truststore
+
+dn: cn=PKCS12,cn=Trust Manager Providers,cn=config
+objectClass: top
+objectClass: ds-cfg-trust-manager-provider
+objectClass: ds-cfg-file-based-trust-manager-provider
+cn: PKCS12
+ds-cfg-java-class: org.opends.server.extensions.FileBasedTrustManagerProvider
+ds-cfg-enabled: false
+ds-cfg-trust-store-type: PKCS12
+ds-cfg-trust-store-file: config/truststore.p12
+
+dn: cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-branch
+cn: Virtual Attributes
+
+dn: cn=entryDN,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-entry-dn-virtual-attribute
+cn: entryDN
+ds-cfg-java-class: org.opends.server.extensions.EntryDNVirtualAttributeProvider
+ds-cfg-enabled: true
+ds-cfg-attribute-type: entryDN
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=entryUUID,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-entry-uuid-virtual-attribute
+cn: entryUUIUD
+ds-cfg-java-class: org.opends.server.extensions.EntryUUIDVirtualAttributeProvider
+ds-cfg-enabled: true
+ds-cfg-attribute-type: entryUUID
+ds-cfg-conflict-behavior: real-overrides-virtual
+
+dn: cn=hasSubordinates,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-has-subordinates-virtual-attribute
+cn: hasSubordinates
+ds-cfg-java-class: org.opends.server.extensions.HasSubordinatesVirtualAttributeProvider
+ds-cfg-enabled: true
+ds-cfg-attribute-type: hasSubordinates
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=isMemberOf,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-is-member-of-virtual-attribute
+cn: isMemberOf
+ds-cfg-java-class: org.opends.server.extensions.IsMemberOfVirtualAttributeProvider
+ds-cfg-enabled: true
+ds-cfg-attribute-type: isMemberOf
+ds-cfg-filter: (objectClass=person)
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=numSubordinates,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-num-subordinates-virtual-attribute
+cn: numSubordinates
+ds-cfg-java-class: org.opends.server.extensions.NumSubordinatesVirtualAttributeProvider
+ds-cfg-enabled: true
+ds-cfg-attribute-type: numSubordinates
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=subschemaSubentry,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-subschema-subentry-virtual-attribute
+cn: subschemaSubentry
+ds-cfg-java-class: org.opends.server.extensions.SubschemaSubentryVirtualAttributeProvider
+ds-cfg-enabled: true
+ds-cfg-attribute-type: subschemaSubentry
+ds-cfg-conflict-behavior: virtual-overrides-real
+
+dn: cn=Virtual Static member,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-member-virtual-attribute
+cn: Virtual Static member
+ds-cfg-java-class: org.opends.server.extensions.MemberVirtualAttributeProvider
+ds-cfg-enabled: true
+ds-cfg-attribute-type: member
+ds-cfg-conflict-behavior: virtual-overrides-real
+ds-cfg-filter: (&(objectClass=groupOfNames)(objectClass=ds-virtual-static-group))
+ds-cfg-allow-retrieving-membership: false
+
+dn: cn=Virtual Static uniqueMember,cn=Virtual Attributes,cn=config
+objectClass: top
+objectClass: ds-cfg-virtual-attribute
+objectClass: ds-cfg-member-virtual-attribute
+cn: Virtual Static uniqueMember
+ds-cfg-java-class: org.opends.server.extensions.MemberVirtualAttributeProvider
+ds-cfg-enabled: true
+ds-cfg-attribute-type: uniqueMember
+ds-cfg-conflict-behavior: virtual-overrides-real
+ds-cfg-filter: (&(objectClass=groupOfUniqueNames)(objectClass=ds-virtual-static-group))
+ds-cfg-allow-retrieving-membership: false
+
+dn: cn=Work Queue,cn=config
+objectClass: top
+objectClass: ds-cfg-work-queue
+objectClass: ds-cfg-traditional-work-queue
+cn: Work Queue
+ds-cfg-java-class: org.opends.server.extensions.TraditionalWorkQueue
+ds-cfg-num-worker-threads: 24
+ds-cfg-max-work-queue-capacity: 0
+
+
+dn: cn=SNMP Connection Handler,cn=Connection Handlers,cn=config
+objectClass: top
+objectClass: ds-cfg-connection-handler
+objectClass: ds-cfg-snmp-connection-handler
+cn: SNMP Connection Handler
+ds-cfg-java-class: org.opends.server.snmp.SNMPConnectionHandler
+ds-cfg-enabled: false
+ds-cfg-trap-port: 162
+ds-cfg-listen-port: 161
+
Added: idm/trunk/example/maven2/src/test/resources/opends/config/upgrade/schema.ldif.4337
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/config/upgrade/schema.ldif.4337 (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/config/upgrade/schema.ldif.4337 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,1070 @@
+dn: cn=schema
+objectClass: top
+objectClass: ldapSubentry
+objectClass: subschema
+attributeTypes: ( 2.5.4.41 NAME 'name' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.49 NAME 'distinguishedName' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.0 NAME 'objectClass' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.1 NAME 'aliasedObjectName' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.2 NAME 'knowledgeInformation' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.3 NAME ( 'cn' 'commonName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.4 NAME ( 'sn' 'surname' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.5 NAME 'serialNumber' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44{64} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.6 NAME ( 'c' 'countryName' ) SUP name SINGLE-VALUE X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.7 NAME ( 'l' 'localityName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.8 NAME ( 'st' 'stateOrProvinceName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.9 NAME ( 'street' 'streetAddress' ) EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.10 NAME ( 'o' 'organizationName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.11 NAME ( 'ou' 'organizationalUnitName' ) SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.12 NAME 'title' SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.13 NAME 'description' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1024} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.14 NAME 'searchGuide' SYNTAX 1.3.6.1.4.1.1466.115.121.1.25 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.15 NAME 'businessCategory' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.16 NAME 'postalAddress' EQUALITY caseIgnoreListMatch SUBSTR caseIgnoreListSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.17 NAME 'postalCode' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{40} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.18 NAME 'postOfficeBox' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{40} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.19 NAME 'physicalDeliveryOfficeName' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.20 NAME 'telephoneNumber' EQUALITY telephoneNumberMatch SUBSTR telephoneNumberSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.50{32} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.21 NAME 'telexNumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.52 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.22 NAME 'teletexTerminalIdentifier' SYNTAX 1.3.6.1.4.1.1466.115.121.1.51 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.23 NAME 'facsimileTelephoneNumber' SYNTAX 1.3.6.1.4.1.1466.115.121.1.22 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.24 NAME 'x121Address' EQUALITY numericStringMatch SUBSTR numericStringSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.36{15} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.25 NAME 'internationaliSDNNumber' EQUALITY numericStringMatch SUBSTR numericStringSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.36{16} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.26 NAME 'registeredAddress' SUP postalAddress SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.27 NAME 'destinationIndicator' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44{128} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.28 NAME 'preferredDeliveryMethod' SYNTAX 1.3.6.1.4.1.1466.115.121.1.14 SINGLE-VALUE X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.29 NAME 'presentationAddress' EQUALITY presentationAddressMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.43 SINGLE-VALUE X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.30 NAME 'supportedApplicationContext' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.31 NAME 'member' SUP distinguishedName X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.32 NAME 'owner' SUP distinguishedName X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.33 NAME 'roleOccupant' SUP distinguishedName X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.34 NAME 'seeAlso' SUP distinguishedName X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.35 NAME 'userPassword' SYNTAX 1.3.6.1.4.1.26027.1.3.1 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.36 NAME 'userCertificate' SYNTAX 1.3.6.1.4.1.1466.115.121.1.8 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.37 NAME 'cACertificate' SYNTAX 1.3.6.1.4.1.1466.115.121.1.8 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.38 NAME 'authorityRevocationList' SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.39 NAME 'certificateRevocationList' SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.40 NAME 'crossCertificatePair' SYNTAX 1.3.6.1.4.1.1466.115.121.1.10 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.42 NAME 'givenName' SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.43 NAME 'initials' SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.44 NAME 'generationQualifier' SUP name X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.45 NAME 'x500UniqueIdentifier' EQUALITY bitStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.6 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.46 NAME 'dnQualifier' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.44 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.47 NAME 'enhancedSearchGuide' SYNTAX 1.3.6.1.4.1.1466.115.121.1.21 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.1.16.4 NAME 'entryUUID' DESC 'UUID of the entry' EQUALITY uuidMatch ORDERING uuidOrderingMatch SYNTAX 1.3.6.1.1.16.1 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 4530' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.48 NAME 'protocolInformation' EQUALITY protocolInformationMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.42 X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.50 NAME 'uniqueMember' EQUALITY uniqueMemberMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.51 NAME 'houseIdentifier' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.52 NAME 'supportedAlgorithms' SYNTAX 1.3.6.1.4.1.1466.115.121.1.49 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.53 NAME 'deltaRevocationList' SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.4.54 NAME 'dmdName' SUP name X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.18.1 NAME 'createTimestamp' EQUALITY generalizedTimeMatch ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.18.2 NAME 'modifyTimestamp' EQUALITY generalizedTimeMatch ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.18.3 NAME 'creatorsName' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.18.4 NAME 'modifiersName' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.18.9 NAME 'hasSubordinates' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'X.501' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.18.10 NAME 'subschemaSubentry' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.21.5 NAME 'attributeTypes' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.3 USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.21.6 NAME 'objectClasses' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.37 USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.21.4 NAME 'matchingRules' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.30 USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.21.8 NAME 'matchingRuleUse' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.31 USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.5 NAME 'namingContexts' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE dSAOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.6 NAME 'altServer' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE dSAOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.7 NAME 'supportedExtension' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 USAGE dSAOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.13 NAME 'supportedControl' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 USAGE dSAOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.14 NAME 'supportedSASLMechanisms' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE dSAOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.15 NAME 'supportedLDAPVersion' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 USAGE dSAOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.4203.1.3.5 NAME 'supportedFeatures' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 USAGE dSAOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.16 NAME 'ldapSyntaxes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.54 USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.21.1 NAME 'dITStructureRules' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.17 USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.21.7 NAME 'nameForms' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.35 USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.5.21.2 NAME 'dITContentRules' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.16 USAGE directoryOperation X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.25 NAME ( 'dc' 'domainComponent' ) EQUALITY caseIgnoreIA5Match SUBSTR caseIgnoreIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.1 NAME 'carLicense' DESC 'vehicle license or registration plate' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.2 NAME 'departmentNumber' DESC 'identifies a department within an organization' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.241 NAME 'displayName' DESC 'preferred name of a person to be used when displaying entries' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.3 NAME 'employeeNumber' DESC 'numerically identifies an employee within an organization' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.4 NAME 'employeeType' DESC 'type of employment for a person' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.60 NAME 'jpegPhoto' DESC 'a JPEG image' SYNTAX 1.3.6.1.4.1.1466.115.121.1.28 X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.39 NAME 'preferredLanguage' DESC 'preferred written or spoken language for a person' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.40 NAME 'userSMIMECertificate' DESC 'PKCS#7 SignedData used to support S/MIME' SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.216 NAME 'userPKCS12' DESC 'PKCS #12 PFX PDU for exchange of personal identity information' SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.37 NAME 'associatedDomain' EQUALITY caseIgnoreIA5Match SUBSTR caseIgnoreIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.38 NAME 'associatedName' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.48 NAME 'buildingName' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.43 NAME ('co' 'friendlyCountryName' ) EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.14 NAME 'documentAuthor' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.11 NAME 'documentIdentifier' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.15 NAME 'documentLocation' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.56 NAME 'documentPublisher' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.12 NAME 'documentTitle' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.13 NAME 'documentVersion' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.5 NAME ( 'drink' 'favouriteDrink' ) EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.20 NAME ( 'homePhone' 'homeTelephoneNumber' ) EQUALITY telephoneNumberMatch SUBSTR telephoneNumberSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.50 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.39 NAME 'homePostalAddress' EQUALITY caseIgnoreListMatch SUBSTR caseIgnoreListSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.9 NAME 'host' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.4 NAME 'info' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{2048} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.3 NAME ( 'mail' 'rfc822Mailbox' ) EQUALITY caseIgnoreIA5Match SUBSTR caseIgnoreIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.10 NAME 'manager' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.41 NAME ( 'mobile' 'mobileTelephoneNumber' ) EQUALITY telephoneNumberMatch SUBSTR telephoneNumberSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.50 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.45 NAME 'organizationalStatus' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.42 NAME ( 'pager' 'pagerTelephoneNumber' ) EQUALITY telephoneNumberMatch SUBSTR telephoneNumberSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.50 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.40 NAME 'personalTitle' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.6 NAME 'roomNumber' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.21 NAME 'secretary' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.44 NAME 'uniqueIdentifier' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.8 NAME 'userClass' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.250.1.57 NAME 'labeledURI' DESC 'Uniform Resource Identifier with optional label' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2079' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.250.1.41 NAME 'labeledURL' DESC 'Uniform Resource Locator with optional label' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2079' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.55 NAME 'audio' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40{250000} X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.7 NAME 'photo' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.1 NAME ( 'uid' 'userid' ) EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.1.4 NAME 'vendorName' EQUALITY 1.3.6.1.4.1.1466.109.114.1 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE dSAOperation X-ORIGIN 'RFC 3045' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.1.5 NAME 'vendorVersion' EQUALITY 1.3.6.1.4.1.1466.109.114.1 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE dSAOperation X-ORIGIN 'RFC 3045' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.34 NAME 'ref' DESC 'named reference - a labeledURI' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE distributedOperation X-ORIGIN 'RFC 3296' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.7628.5.4.1 NAME 'inheritable' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE NO-USER-MODIFICATION USAGE dSAOperation X-ORIGIN 'draft-ietf-ldup-subentry' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.7628.5.4.2 NAME 'blockInheritance' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE NO-USER-MODIFICATION USAGE dSAOperation X-ORIGIN 'draft-ietf-ldup-subentry' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.55 NAME 'aci' DESC 'Sun-defined access control information attribute type' SYNTAX 1.3.6.1.4.1.26027.1.3.4 USAGE directoryOperation X-ORIGIN 'Sun Java System Directory Server' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.39 NAME 'aclRights' DESC 'Sun-defined access control effective rights attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'Sun Java System Directory Server' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.40 NAME 'aclRightsInfo' DESC 'Sun-defined access control effective rights information attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'Sun Java System Directory Server' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.542 NAME 'nsUniqueId' DESC 'Sun-defined unique identifier' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'Sun Java System Directory Server' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.1466.101.120.1 NAME 'administratorsAddress' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE directoryOperation X-ORIGIN 'draft-wahl-ldap-adminaddr' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.198 NAME 'memberURL' DESC 'Sun-defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'Sun Java System Directory Server' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.9.1.792 NAME 'isMemberOf' DESC 'Sun-defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'Sun Java System Directory Server' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.54 NAME 'dITRedirect' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.49 NAME 'dSAQuality' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.46 NAME 'janetMailbox' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.24 NAME 'lastModifiedBy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.23 NAME 'lastModifiedTime' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.47 NAME 'mailPreferenceOption' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.53 NAME 'personalSignature' SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.50 NAME 'singleLevelQuality' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.51 NAME 'subtreeMinimumQuality' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.52 NAME 'subtreeMaximumQuality' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.2 NAME 'textEncodedORAddress' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.22 NAME 'otherMailbox' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.26 NAME 'aRecord' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.27 NAME 'mDRecord' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.28 NAME 'mxRecord' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.29 NAME 'nSRecord' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.30 NAME 'sOARecord' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 0.9.2342.19200300.100.1.31 NAME 'cNAMERecord' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.1.20 NAME 'entryDN' DESC 'DN of the entry' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'RFC 5020' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.453.16.2.103 NAME 'numSubordinates' DESC 'Count of immediate subordinates' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-ietf-boreham-numsubordinates' X-SCHEMA-FILE '00-core.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.1 NAME 'pwdAttribute' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.2 NAME 'pwdMinAge' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.3 NAME 'pwdMaxAge' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.4 NAME 'pwdInHistory' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.5 NAME 'pwdCheckQuality' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.6 NAME 'pwdMinLength' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.7 NAME 'pwdExpireWarning' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.8 NAME 'pwdGraceAuthNLimit' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.9 NAME 'pwdLockout' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.10 NAME 'pwdLockoutDuration' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.11 NAME 'pwdMaxFailure' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.12 NAME 'pwdFailureCountInterval' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.13 NAME 'pwdMustChange' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.14 NAME 'pwdAllowUserChange' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.15 NAME 'pwdSafeModify' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.16 NAME 'pwdChangedTime' DESC 'The time the password was last changed' EQUALITY generalizedTimeMatch ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.17 NAME 'pwdAccountLockedTime' DESC 'The time an user account was locked' EQUALITY generalizedTimeMatch ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.19 NAME 'pwdFailureTime' DESC 'The timestamps of the last consecutive authentication failures' EQUALITY generalizedTimeMatch ORDERING generalizedTimeOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.20 NAME 'pwdHistory' DESC 'The history of user s passwords' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.21 NAME 'pwdGraceUseTime' DESC 'The timestamps of the grace authentication after the password has expired' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.22 NAME 'pwdReset' DESC 'The indication that the password has been reset' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.8.1.23 NAME 'pwdPolicySubentry' DESC 'The pwdPolicy subentry in effect for this object' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.1 NAME 'ds-cfg-java-class' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.2 NAME 'ds-cfg-enabled' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.3 NAME 'ds-cfg-allow-attribute-name-exceptions' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.4 NAME 'ds-cfg-allowed-client' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.5 NAME 'ds-cfg-allow-ldap-v2' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.6 NAME 'ds-cfg-allow-start-tls' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.7 NAME 'ds-cfg-allow-tcp-reuse-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.8 NAME 'ds-cfg-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.9 NAME 'ds-cfg-db-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.10 NAME 'ds-cfg-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.11 NAME 'ds-cfg-index-entry-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.13 NAME 'ds-cfg-alternate-bind-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.14 NAME 'ds-cfg-certificate-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.15 NAME 'ds-cfg-check-schema' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.16 NAME 'ds-cfg-certificate-validation-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.17 NAME 'ds-cfg-db-cache-percent' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.18 NAME 'ds-cfg-db-cleaner-min-utilization' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.19 NAME 'ds-cfg-db-cache-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.20 NAME 'ds-cfg-db-run-cleaner' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.21 NAME 'ds-cfg-db-txn-no-sync' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.22 NAME 'ds-cfg-db-txn-write-no-sync' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.23 NAME 'ds-cfg-default-severity' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.24 NAME 'ds-cfg-denied-client' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.25 NAME 'ds-cfg-enable-profiling-on-startup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.26 NAME 'ds-cfg-exclude-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.27 NAME 'ds-cfg-rotation-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.28 NAME 'ds-cfg-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.29 NAME 'ds-cfg-index-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.30 NAME 'ds-cfg-include-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.31 NAME 'ds-cfg-invalid-attribute-syntax-behavior' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.32 NAME 'ds-cfg-kdc-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.33 NAME 'ds-cfg-keytab' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.34 NAME 'ds-cfg-keep-stats' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.35 NAME 'ds-cfg-key-store-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.36 NAME 'ds-cfg-key-store-pin' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.37 NAME 'ds-cfg-key-store-pin-environment-variable' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.38 NAME 'ds-cfg-key-store-pin-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.39 NAME 'ds-cfg-key-store-pin-property' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.40 NAME 'ds-cfg-key-store-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.41 NAME 'ds-cfg-listen-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.42 NAME 'ds-cfg-listen-port' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.43 NAME 'ds-cfg-lock-timeout' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.44 NAME 'ds-cfg-log-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.45 NAME 'ds-cfg-max-allowed-client-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.46 NAME 'ds-cfg-max-entries' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.47 NAME 'ds-cfg-max-memory-percent' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.48 NAME 'ds-cfg-max-request-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.49 NAME 'ds-cfg-max-work-queue-capacity' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.50 NAME 'ds-cfg-notify-abandoned-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.51 NAME 'ds-cfg-num-request-handlers' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.52 NAME 'ds-cfg-num-worker-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.53 NAME 'ds-cfg-override-severity' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.54 NAME 'ds-cfg-plugin-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.55 NAME 'ds-cfg-profile-action' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.56 NAME 'ds-cfg-profile-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.57 NAME 'ds-cfg-profiler-state' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.58 NAME 'ds-cfg-profile-sample-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.59 NAME 'ds-cfg-realm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.60 NAME 'ds-recurring-task-class-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.61 NAME 'ds-recurring-task-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.62 NAME 'ds-cfg-rotation-action' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.63 NAME 'ds-cfg-rotation-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.64 NAME 'ds-cfg-retention-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.65 NAME 'ds-cfg-number-of-files' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.66 NAME 'ds-cfg-disk-space-used' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.67 NAME 'ds-cfg-free-disk-space' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.68 NAME 'ds-task-shutdown-message' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.69 NAME 'ds-task-actual-start-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.70 NAME 'ds-cfg-task-backing-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.71 NAME 'ds-task-class-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.72 NAME 'ds-task-completion-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.73 NAME 'ds-task-dependency-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.74 NAME 'ds-task-failed-dependency-action' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.75 NAME 'ds-task-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.76 NAME 'ds-task-log-message' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.77 NAME 'ds-task-notify-on-completion' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.78 NAME 'ds-task-notify-on-error' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.79 NAME 'ds-cfg-task-retention-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.80 NAME 'ds-task-scheduled-start-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.81 NAME 'ds-task-state' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.82 NAME 'ds-cfg-time-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.83 NAME 'ds-cfg-buffer-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.84 NAME 'ds-cfg-schema-entry-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.85 NAME 'ds-cfg-send-rejection-notice' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.86 NAME 'ds-cfg-server-fqdn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.87 NAME 'ds-task-shutdown-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.88 NAME 'ds-cfg-single-structural-objectclass-behavior' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.89 NAME 'ds-cfg-size-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.90 NAME 'ds-cfg-ssl-client-auth-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.91 NAME 'ds-cfg-ssl-cert-nickname' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.92 NAME 'ds-cfg-strict-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.93 NAME 'ds-cfg-subordinate-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.94 NAME 'ds-cfg-suppress-internal-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.95 NAME 'ds-cfg-time-of-day' SYNTAX 1.3.6.1.4.1.1466.115.121.1.36 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.96 NAME 'ds-cfg-trust-store-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.97 NAME 'ds-cfg-trust-store-pin' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.98 NAME 'ds-cfg-trust-store-pin-environment-variable' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.99 NAME 'ds-cfg-trust-store-pin-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.100 NAME 'ds-cfg-trust-store-pin-property' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.101 NAME 'ds-cfg-trust-store-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.102 NAME 'ds-cfg-user-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.103 NAME 'ds-cfg-user-name-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.104 NAME 'ds-cfg-use-ssl' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.105 NAME 'ds-cfg-use-tcp-keep-alive' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.106 NAME 'ds-cfg-use-tcp-no-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.107 NAME 'ds-cfg-allow-zero-length-values' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.108 NAME 'ds-cfg-show-all-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.109 NAME 'ds-cfg-add-missing-rdn-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.110 NAME 'ds-cfg-server-error-result-code' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.111 NAME 'ds-cfg-match-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.112 NAME 'ds-cfg-match-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.113 NAME 'ds-cfg-identity-mapper' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.114 NAME 'ds-cfg-proxied-authorization-identity-mapper' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.115 NAME 'ds-cfg-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.116 NAME 'ds-rlim-size-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.117 NAME 'ds-rlim-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.118 NAME 'ds-cfg-accept-backlog' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.119 NAME 'ds-sync-hist' ORDERING historicalCsnOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.120 NAME 'ds-cfg-receive-status' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.121 NAME 'ds-cfg-replication-port' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.122 NAME 'ds-cfg-replication-server' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.123 NAME 'ds-cfg-writability-mode' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.124 NAME 'ds-cfg-bind-with-dn-requires-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.125 NAME 'ds-cfg-max-receive-queue' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.126 NAME 'ds-cfg-max-receive-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.127 NAME 'ds-cfg-max-send-queue' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.128 NAME 'ds-cfg-max-send-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.129 NAME 'ds-cfg-max-password-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.130 NAME 'ds-cfg-min-password-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.131 NAME 'ds-cfg-password-character-set' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.132 NAME 'ds-cfg-password-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.133 NAME 'ds-cfg-account-status-notification-handler' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.134 NAME 'ds-cfg-allow-expired-password-changes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.135 NAME 'ds-cfg-allow-pre-encoded-passwords' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.136 NAME 'ds-cfg-allow-user-password-changes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.137 NAME 'ds-cfg-default-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.138 NAME 'ds-cfg-deprecated-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.139 NAME 'ds-cfg-expire-passwords-without-warning' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.140 NAME 'ds-cfg-force-change-on-reset' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.141 NAME 'ds-cfg-grace-login-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.142 NAME 'ds-cfg-idle-lockout-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.143 NAME 'ds-cfg-last-login-time-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.144 NAME 'ds-cfg-last-login-time-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.145 NAME 'ds-cfg-lockout-duration' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.146 NAME 'ds-cfg-lockout-failure-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.147 NAME 'ds-cfg-lockout-failure-expiration-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.148 NAME 'ds-cfg-max-password-age' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.149 NAME 'ds-cfg-max-password-reset-age' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.150 NAME 'ds-cfg-min-password-age' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.151 NAME 'ds-cfg-password-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.152 NAME 'ds-cfg-password-expiration-warning-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.153 NAME 'ds-cfg-password-generator' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.154 NAME 'ds-cfg-password-validator' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.155 NAME 'ds-cfg-previous-last-login-time-format' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.156 NAME 'ds-cfg-require-change-by-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.157 NAME 'ds-cfg-password-change-requires-current-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.158 NAME 'ds-cfg-require-secure-authentication' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.159 NAME 'ds-cfg-require-secure-password-changes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.160 NAME 'ds-cfg-skip-validation-for-administrators' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.161 NAME 'ds-cfg-default-password-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.162 NAME 'ds-pwp-last-login-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.163 NAME 'ds-pwp-password-changed-by-required-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.164 NAME 'ds-pwp-reset-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.165 NAME 'ds-pwp-warned-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.166 NAME 'ds-pwp-account-disabled' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.167 NAME 'ds-cfg-force-change-on-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.168 NAME 'ds-cfg-allow-multiple-password-values' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.169 NAME 'ds-task-import-ldif-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.459 NAME 'ds-task-import-template-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.460 NAME 'ds-task-import-random-seed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.170 NAME 'ds-task-import-append' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.171 NAME 'ds-task-import-replace-existing' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.172 NAME 'ds-task-import-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.173 NAME 'ds-task-import-include-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.174 NAME 'ds-task-import-exclude-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.175 NAME 'ds-task-import-include-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.176 NAME 'ds-task-import-exclude-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.177 NAME 'ds-task-import-include-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.178 NAME 'ds-task-import-exclude-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.179 NAME 'ds-task-import-reject-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.180 NAME 'ds-task-import-overwrite-rejects' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.181 NAME 'ds-task-import-skip-schema-validation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.182 NAME 'ds-task-import-is-compressed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.183 NAME 'ds-task-import-is-encrypted' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.184 NAME 'ds-task-restart-server' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.185 NAME 'ds-sync-state' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.186 NAME 'ds-cfg-backup-directory' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.187 NAME 'ds-backup-compressed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.188 NAME 'ds-backup-date' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.189 NAME 'ds-backup-dependency' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.190 NAME 'ds-backup-directory-path' EQUALITY caseExactMatch SUBSTR caseExactSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.191 NAME 'ds-backup-encrypted' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.192 NAME 'ds-backup-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.193 NAME 'ds-backup-incremental' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.194 NAME 'ds-backup-signed-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.195 NAME 'ds-backup-unsigned-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.196 NAME 'ds-backup-backend-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.197 NAME 'ds-task-export-ldif-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.198 NAME 'ds-task-export-append-to-ldif' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.199 NAME 'ds-task-export-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.200 NAME 'ds-task-export-include-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.201 NAME 'ds-task-export-exclude-branch' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.202 NAME 'ds-task-export-include-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.203 NAME 'ds-task-export-exclude-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.204 NAME 'ds-task-export-include-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.205 NAME 'ds-task-export-exclude-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.206 NAME 'ds-task-export-wrap-column' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.207 NAME 'ds-task-export-compress-ldif' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.208 NAME 'ds-task-export-encrypt-ldif' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.209 NAME 'ds-task-export-sign-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.210 NAME 'ds-task-restore-verify-only' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.211 NAME 'ds-task-backup-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.212 NAME 'ds-task-backup-all' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.213 NAME 'ds-task-backup-incremental' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.214 NAME 'ds-task-backup-incremental-base-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.215 NAME 'ds-task-backup-compress' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.216 NAME 'ds-task-backup-encrypt' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.217 NAME 'ds-task-backup-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.218 NAME 'ds-task-backup-sign-hash' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.219 NAME 'ds-cfg-preload-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.222 NAME 'ds-cfg-import-queue-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.223 NAME 'ds-cfg-import-thread-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.224 NAME 'ds-cfg-entries-compressed' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.226 NAME 'ds-cfg-db-evictor-lru-only' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.227 NAME 'ds-cfg-db-evictor-nodes-per-scan' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.228 NAME 'ds-cfg-db-log-file-max' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.229 NAME 'ds-cfg-db-logging-file-handler-on' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.230 NAME 'ds-cfg-db-logging-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.231 NAME 'ds-cfg-db-checkpointer-bytes-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.232 NAME 'ds-cfg-db-checkpointer-wakeup-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.233 NAME 'ds-cfg-db-num-lock-tables' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.235 NAME 'ds-cfg-replication-server-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.236 NAME 'ds-cfg-server-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.237 NAME 'ds-pwp-account-expiration-time' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.238 NAME 'ds-cfg-account-status-notification-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.239 NAME 'ds-cfg-db-num-cleaner-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.240 NAME 'ds-cfg-lookthrough-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.241 NAME 'ds-rlim-lookthrough-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.242 NAME 'ds-cfg-db-directory-permissions' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.243 NAME 'ds-cfg-window-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.244 NAME 'ds-pwp-password-policy-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.245 NAME 'ds-cfg-queue-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.246 NAME 'ds-private-naming-contexts' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.247 NAME 'ds-backend-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.248 NAME 'ds-backend-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.249 NAME 'ds-backend-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.250 NAME 'ds-backend-writability-mode' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.251 NAME 'ds-connectionhandler-connection' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.252 NAME 'ds-connectionhandler-listener' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.253 NAME 'ds-connectionhandler-num-connections' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.254 NAME 'ds-connectionhandler-protocol' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.255 NAME 'ds-backend-is-private' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.256 NAME 'ds-cfg-reject-unauthenticated-requests' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.257 NAME 'ds-task-schema-file-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.258 NAME 'ds-cfg-heartbeat-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.259 NAME 'ds-cfg-replication-db-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.260 NAME 'ds-privilege-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.261 NAME 'ds-cfg-default-root-privilege-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.262 NAME 'ds-cfg-certificate-mapper' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.263 NAME 'ds-cfg-key-manager-provider' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.264 NAME 'ds-cfg-trust-manager-provider' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.265 NAME 'ds-cfg-subject-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.266 NAME 'ds-certificate-subject-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.267 NAME 'ds-cfg-subject-attribute-mapping' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.268 NAME 'ds-certificate-fingerprint' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.269 NAME 'ds-cfg-fingerprint-attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.270 NAME 'ds-cfg-fingerprint-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.271 NAME 'ds-cfg-replication-purge-delay' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.272 NAME 'ds-cfg-global-aci' SYNTAX 1.3.6.1.4.1.26027.1.3.4 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.273 NAME 'ds-cfg-min-password-difference' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.274 NAME 'ds-cfg-min-unique-characters' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.275 NAME 'ds-cfg-max-consecutive-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.276 NAME 'ds-cfg-case-sensitive-validation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.277 NAME 'ds-cfg-attribute-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.278 NAME 'ds-cfg-group-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.279 NAME 'ds-cfg-filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.280 NAME 'ds-cfg-conflict-behavior' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.281 NAME 'ds-task-initialize-domain-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.282 NAME 'ds-task-initialize-replica-server-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.283 NAME 'ds-task-unprocessed-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.284 NAME 'ds-task-processed-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.285 NAME 'ds-cfg-dictionary-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.286 NAME 'ds-cfg-test-reversed-password' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.287 NAME 'ds-cfg-character-set' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.288 NAME 'ds-cfg-allow-unclassified-characters' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.289 NAME 'ds-task-rebuild-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.290 NAME 'ds-task-rebuild-index' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.291 NAME 'ds-task-rebuild-max-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.292 NAME 'ds-target-group-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.293 NAME 'ds-cfg-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.294 NAME 'ds-cfg-default-debug-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.295 NAME 'ds-cfg-default-debug-category' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.296 NAME 'ds-cfg-default-omit-method-entry-arguments' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.297 NAME 'ds-cfg-default-omit-method-return-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.298 NAME 'ds-cfg-default-include-throwable-cause' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.299 NAME 'ds-cfg-default-throwable-stack-frames' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.300 NAME 'ds-cfg-debug-scope' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.301 NAME 'ds-cfg-debug-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.302 NAME 'ds-cfg-debug-category' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.303 NAME 'ds-cfg-omit-method-entry-arguments' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.304 NAME 'ds-cfg-omit-method-return-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.305 NAME 'ds-cfg-include-throwable-cause' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.306 NAME 'ds-cfg-throwable-stack-frames' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.307 NAME 'ds-cfg-asynchronous' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.308 NAME 'ds-cfg-log-file-permissions' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.309 NAME 'ds-cfg-auto-flush' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.310 NAME 'ds-cfg-append' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.311 NAME 'ds-cfg-max-memory-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.312 NAME 'ds-cfg-cache-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.313 NAME 'ds-cfg-cache-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.314 NAME 'ds-cfg-persistent-cache' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.315 NAME 'ds-cfg-allow-retrieving-membership' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.316 NAME 'ds-cfg-file-size-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.317 NAME 'ds-sync-conflict' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.319 NAME 'ds-cfg-substring-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.320 NAME 'ds-cfg-plugin-order-startup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.321 NAME 'ds-cfg-plugin-order-shutdown' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.322 NAME 'ds-cfg-plugin-order-post-connect' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.323 NAME 'ds-cfg-plugin-order-post-disconnect' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.324 NAME 'ds-cfg-plugin-order-ldif-import' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.325 NAME 'ds-cfg-plugin-order-ldif-export' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.326 NAME 'ds-cfg-plugin-order-pre-parse-abandon' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.327 NAME 'ds-cfg-plugin-order-pre-parse-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.328 NAME 'ds-cfg-plugin-order-pre-parse-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.329 NAME 'ds-cfg-plugin-order-pre-parse-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.330 NAME 'ds-cfg-plugin-order-pre-parse-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.331 NAME 'ds-cfg-plugin-order-pre-parse-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.332 NAME 'ds-cfg-plugin-order-pre-parse-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.333 NAME 'ds-cfg-plugin-order-pre-parse-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.334 NAME 'ds-cfg-plugin-order-pre-parse-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.335 NAME 'ds-cfg-plugin-order-pre-parse-unbind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.336 NAME 'ds-cfg-plugin-order-pre-operation-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.337 NAME 'ds-cfg-plugin-order-pre-operation-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.338 NAME 'ds-cfg-plugin-order-pre-operation-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.339 NAME 'ds-cfg-plugin-order-pre-operation-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.340 NAME 'ds-cfg-plugin-order-pre-operation-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.341 NAME 'ds-cfg-plugin-order-pre-operation-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.342 NAME 'ds-cfg-plugin-order-pre-operation-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.343 NAME 'ds-cfg-plugin-order-pre-operation-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.344 NAME 'ds-cfg-plugin-order-post-operation-abandon' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.345 NAME 'ds-cfg-plugin-order-post-operation-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.346 NAME 'ds-cfg-plugin-order-post-operation-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.347 NAME 'ds-cfg-plugin-order-post-operation-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.348 NAME 'ds-cfg-plugin-order-post-operation-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.349 NAME 'ds-cfg-plugin-order-post-operation-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.350 NAME 'ds-cfg-plugin-order-post-operation-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.351 NAME 'ds-cfg-plugin-order-post-operation-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.352 NAME 'ds-cfg-plugin-order-post-operation-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.353 NAME 'ds-cfg-plugin-order-post-operation-unbind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.354 NAME 'ds-cfg-plugin-order-post-response-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.355 NAME 'ds-cfg-plugin-order-post-response-bind' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.356 NAME 'ds-cfg-plugin-order-post-response-compare' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.357 NAME 'ds-cfg-plugin-order-post-response-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.358 NAME 'ds-cfg-plugin-order-post-response-extended' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.359 NAME 'ds-cfg-plugin-order-post-response-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.360 NAME 'ds-cfg-plugin-order-post-response-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.361 NAME 'ds-cfg-plugin-order-post-response-search' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.362 NAME 'ds-cfg-plugin-order-search-result-entry' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.363 NAME 'ds-cfg-plugin-order-search-result-reference' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.364 NAME 'ds-cfg-plugin-order-intermediate-response' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.365 NAME 'ds-cfg-default-user-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.366 NAME 'ds-cfg-default-auth-password-storage-scheme' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.367 NAME 'ds-cfg-strip-syntax-min-upper-bound' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.368 NAME 'ds-cfg-suppress-synchronization-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.369 NAME 'ds-cfg-scope' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.370 NAME 'ds-cfg-sort-order' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.371 NAME 'ds-cfg-name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.372 NAME 'ds-cfg-max-block-size' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.373 NAME 'ds-cfg-state-update-failure-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.374 NAME 'ds-cfg-password-history-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.375 NAME 'ds-cfg-password-history-duration' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.376 NAME 'ds-cfg-smtp-server' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.377 NAME 'ds-cfg-sender-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.378 NAME 'ds-cfg-recipient-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.379 NAME 'ds-cfg-message-subject' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.380 NAME 'ds-cfg-message-body' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.381 NAME 'ds-task-import-clear-backend' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.382 NAME 'ds-cfg-je-property' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.383 NAME 'ds-task-disconnect-connection-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.384 NAME 'ds-task-disconnect-message' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.385 NAME 'ds-task-disconnect-notify-client' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.386 NAME 'ds-cfg-allowed-task' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.387 NAME 'ds-cfg-disabled-privilege' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.388 NAME 'ds-cfg-return-bind-error-messages' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.389 NAME 'ds-cfg-enabled-alert-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.390 NAME 'ds-cfg-disabled-alert-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.391 NAME 'ds-cfg-ssl-protocol' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.392 NAME 'ds-cfg-ssl-cipher-suite' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.393 NAME 'ds-cfg-idle-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.394 NAME 'ds-rlim-idle-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.395 NAME 'ds-cfg-notification-sender-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.396 NAME 'ds-cfg-plugin-order-subordinate-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.397 NAME 'ds-cfg-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.398 NAME 'ds-cfg-match-pattern' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.399 NAME 'ds-cfg-replace-pattern' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.400 NAME 'ds-cfg-compact-encoding' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.401 NAME 'ds-cfg-update-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.402 NAME 'ds-cfg-email-address-attribute-type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.403 NAME 'ds-cfg-send-message-without-end-user-address' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.404 NAME 'ds-cfg-message-template-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.405 NAME 'ds-sync-generation-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.406 NAME 'ds-task-reset-generation-id-domain-base-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.407 NAME 'ds-cfg-ssl-encryption' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.408 NAME 'ds-cfg-public-key-certificate' DESC 'cryptographic public-key certificate' SYNTAX 1.3.6.1.4.1.1466.115.121.1.8 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.409 NAME 'ds-cfg-key-id' DESC 'cryptographic cipher-key unique identifier' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.410 NAME 'ds-cfg-key-compromised-time' DESC 'The time a cryptographic cipher key was suspected to be compromised' SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.411 NAME 'ds-cfg-save-config-on-successful-startup' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.412 NAME 'ds-cfg-max-blocked-write-time-limit' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.413 NAME 'ds-cfg-ldif-directory' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.414 NAME 'ds-cfg-poll-interval' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.415 NAME 'ds-cfg-plugin-order-post-synchronization-add' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.416 NAME 'ds-cfg-plugin-order-post-synchronization-delete' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.417 NAME 'ds-cfg-plugin-order-post-synchronization-modify' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.418 NAME 'ds-cfg-plugin-order-post-synchronization-modify-dn' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.419 NAME 'ds-cfg-invoke-for-internal-operations' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.420 NAME 'ds-cfg-ldif-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.421 NAME 'ds-cfg-is-private-backend' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.422 NAME 'ds-cfg-isolation-policy' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.423 NAME 'ds-cfg-cipher-transformation-name' DESC 'The name of a cryptographic cipher transformation consisting of an algorithm, a mode, and a padding specification, separated by slashes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.424 NAME 'ds-cfg-mac-algorithm-name' DESC 'The name of a cryptographic message authentication code (MAC) algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.425 NAME 'ds-cfg-key-length-bits' DESC 'The length of a cryptographic secret key' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.426 NAME 'ds-cfg-initialization-vector-length-bits' DESC 'The length of a cryptographic cipher initialization vector' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.427 NAME 'ds-cfg-symmetric-key' DESC 'A cryptographic secret-key wrapped by a public-key' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.428 NAME 'ds-cfg-digest-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.429 NAME 'ds-cfg-mac-algorithm' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.430 NAME 'ds-cfg-mac-key-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.431 NAME 'ds-cfg-cipher-transformation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.432 NAME 'ds-cfg-cipher-key-length' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.433 NAME 'ds-cfg-key-wrapping-transformation' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.434 NAME 'ds-base-dn-entry-count' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.435 NAME 'ds-cfg-network-group-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.436 NAME 'ds-cfg-workflow-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.437 NAME 'ds-cfg-workflow' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.438 NAME 'ds-cfg-workflow-element-id' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.439 NAME 'ds-cfg-workflow-element' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.440 NAME 'ds-cfg-workflow-configuration-mode' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.441 NAME 'ds-cfg-backend' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.442 NAME 'ds-cfg-etime-resolution' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.444 NAME 'ds-task-reset-generation-id-new-value' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.445 NAME 'ds-cfg-cache-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.446 NAME 'ds-cfg-entry-cache-preload' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.447 NAME 'ds-cfg-num-update-replay-threads' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.448 NAME 'ds-cfg-trap-port' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.449 NAME 'ds-cfg-community' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.450 NAME 'ds-cfg-allowed-manager' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.451 NAME 'ds-cfg-allowed-user' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.452 NAME 'ds-cfg-security-level' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.453 NAME 'ds-cfg-traps-community' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.454 NAME 'ds-cfg-traps-destination' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.455 NAME 'ds-cfg-security-agent-file' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.456 NAME 'ds-cfg-registered-mbean' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.457 NAME 'ds-cfg-opendmk-jarfile' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.26027.1.1.458 NAME 'ds-task-export-include-operational-attributes' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.5 NAME 'changeNumber' DESC 'a number which uniquely identifies a change made to a directory entry' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 EQUALITY integerMatch ORDERING integerOrderingMatch SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.6 NAME 'targetDN' DESC 'the DN of the entry which was modified' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.7 NAME 'changeType' DESC 'the type of change made to an entry' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.8 NAME 'changes' DESC 'a set of changes to apply to an entry' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.9 NAME 'newRDN' DESC 'the new RDN of an entry which is the target of a modrdn operation' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.10 NAME 'deleteOldRDN' DESC 'a flag which indicates if the old RDN should be retained as an attribute of the entry' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' )
+attributeTypes: ( 2.16.840.1.113730.3.1.11 NAME 'newSuperior' DESC 'the new parent of an entry which is the target of a moddn operation' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.6 NAME 'javaClassName' DESC 'Fully qualified name of distinguished Java class or interface' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.7 NAME 'javaCodebase' DESC 'URL(s) specifying the location of class definition' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.13 NAME 'javaClassNames' DESC 'Fully qualified Java class or interface name' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.8 NAME 'javaSerializedData' DESC 'Serialized form of a Java object' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.10 NAME 'javaFactory' DESC 'Fully qualified Java class name of a JNDI object factory' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.11 NAME 'javaReferenceAddress' DESC 'Addresses associated with a JNDI Reference' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.12 NAME 'javaDoc' DESC 'The Java documentation for the class' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.14 NAME 'corbaIor' DESC 'Stringified interoperable object reference of a CORBA object' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 2714' X-SCHEMA-FILE '03-rfc2714.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.42.2.27.4.1.15 NAME 'corbaRepositoryId' DESC 'Repository ids of interfaces implemented by a CORBA object' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 2714' X-SCHEMA-FILE '03-rfc2714.ldif' )
+attributeTypes: ( 1.2.840.113556.1.4.478 NAME 'calCalURI' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications X-ORIGIN 'RFC 2739' X-SCHEMA-FILE '03-rfc2739.ldif' )
+attributeTypes: ( 1.2.840.113556.1.4.479 NAME 'calFBURL' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications X-ORIGIN 'RFC 2739' X-SCHEMA-FILE '03-rfc2739.ldif' )
+attributeTypes: ( 1.2.840.113556.1.4.480 NAME 'calCAPURI' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications X-ORIGIN 'RFC 2739' X-SCHEMA-FILE '03-rfc2739.ldif' )
+attributeTypes: ( 1.2.840.113556.1.4.481 NAME 'calCalAdrURI' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications X-ORIGIN 'RFC 2739' X-SCHEMA-FILE '03-rfc2739.ldif' )
+attributeTypes: ( 1.2.840.113556.1.4.482 NAME 'calOtherCalURIs' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications X-ORIGIN 'RFC 2739' X-SCHEMA-FILE '03-rfc2739.ldif' )
+attributeTypes: ( 1.2.840.113556.1.4.483 NAME 'calOtherFBURLs' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications X-ORIGIN 'RFC 2739' X-SCHEMA-FILE '03-rfc2739.ldif' )
+attributeTypes: ( 1.2.840.113556.1.4.484 NAME 'calOtherCAPURIs' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications X-ORIGIN 'RFC 2739' X-SCHEMA-FILE '03-rfc2739.ldif' )
+attributeTypes: ( 1.2.840.113556.1.4.485 NAME 'calOtherCalAdrURIs' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 USAGE userApplications X-ORIGIN 'RFC 2739' X-SCHEMA-FILE '03-rfc2739.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.1 NAME 'template-major-version-number' DESC 'The major version number of the service type template' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 2926' X-SCHEMA-FILE '03-rfc2926.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.2 NAME 'template-minor-version-number' DESC 'The minor version number of the service type template' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 2926' X-SCHEMA-FILE '03-rfc2926.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.3 NAME 'template-url-syntax' DESC 'An ABNF grammar describing the service type specific part of the service URL' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 2926' X-SCHEMA-FILE '03-rfc2926.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.4 NAME 'service-advert-service-type' DESC 'The service type of the service advertisement, including the "service:" prefix.' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 2926' X-SCHEMA-FILE '03-rfc2926.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.5 NAME 'service-advert-scopes' DESC 'A list of scopes for a service advertisement.' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'RFC 2926' X-SCHEMA-FILE '03-rfc2926.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.6 NAME 'service-advert-url-authenticator' DESC 'The authenticator for the URL, null if none.' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 2926' X-SCHEMA-FILE '03-rfc2926.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.6252.2.27.6.1.7 NAME 'service-advert-attribute-authenticator' DESC 'The authenticator for the attribute list, null if none.' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'RFC 2926' X-SCHEMA-FILE '03-rfc2926.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.4203.1.3.3 NAME 'supportedAuthPasswordSchemes' DESC 'supported password storage schemes' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32} USAGE dSAOperation X-ORIGIN 'RFC 3112' X-SCHEMA-FILE '03-rfc3112.ldif' )
+attributeTypes: ( 1.3.6.1.4.1.4203.1.3.4 NAME 'authPassword' DESC 'password authentication information' EQUALITY 1.3.6.1.4.1.4203.1.2.2 SYNTAX 1.3.6.1.4.1.4203.1.1.2 X-ORIGIN 'RFC 3112' X-SCHEMA-FILE '03-rfc3112.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1140 NAME 'printer-uri' DESC 'A URI supported by this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1107 NAME 'printer-xri-supported' DESC 'The unordered list of XRI (extended resource identifiers) supported by this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1135 NAME 'printer-name' DESC 'The site-specific administrative name of this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1119 NAME 'printer-natural-language-configured' DESC 'The configured natural language in which error and status messages will be generated (by default) by this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1136 NAME 'printer-location' DESC 'The physical location of this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1139 NAME 'printer-info' DESC 'Descriptive information about this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1134 NAME 'printer-more-info' DESC 'A URI for more information about this specific printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1138 NAME 'printer-make-and-model' DESC 'Make and model of this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1133 NAME 'printer-ipp-versions-supported' DESC 'IPP protocol version(s) that this printer supports.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1132 NAME 'printer-multiple-document-jobs-supported' DESC 'Indicates whether or not this printer supports more than one document per job.' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1109 NAME 'printer-charset-configured' DESC 'The configured charset in which error and status messages will be generated (by default) by this printer.' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{63} SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1131 NAME 'printer-charset-supported' DESC 'Set of charsets supported for the attribute values of syntax DirectoryString for this directory entry.' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{63} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1137 NAME 'printer-generated-natural-language-supported' DESC 'Natural language(s) supported for this directory entry.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{63} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1130 NAME 'printer-document-format-supported' DESC 'The possible source document formats which may be interpreted and printed by this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1129 NAME 'printer-color-supported' DESC 'Indicates whether this printer is capable of any type of color printing at all, including highlight color.' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1128 NAME 'printer-compression-supported' DESC 'Compression algorithms supported by this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1127 NAME 'printer-pages-per-minute' DESC 'The nominal number of pages per minute which may be output by this printer.' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1126 NAME 'printer-pages-per-minute-color' DESC 'The nominal number of color pages per minute which may be output by this printer.' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1125 NAME 'printer-finishings-supported' DESC 'The possible finishing operations supported by this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1124 NAME 'printer-number-up-supported' DESC 'The possible numbers of print-stream pages to impose upon a single side of an instance of a selected medium.' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1123 NAME 'printer-sides-supported' DESC 'The number of impression sides (one or two) and the two-sided impression rotations supported by this printer.' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1122 NAME 'printer-media-supported' DESC 'The standard names/types/sizes (and optional color suffixes) of the media supported by this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1117 NAME 'printer-media-local-supported' DESC 'Site-specific names of media supported by this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1121 NAME 'printer-resolution-supported' DESC 'List of resolutions supported for printing documents by this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{255} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1120 NAME 'printer-print-quality-supported' DESC 'List of print qualities supported for printing documents on this printer.' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1110 NAME 'printer-job-priority-supported' DESC 'Indicates the number of job priority levels supported by this printer.' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1118 NAME 'printer-copies-supported' DESC 'The maximum number of copies of a document that may be printed as a single job on this printer.' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1111 NAME 'printer-job-k-octets-supported' DESC 'The maximum size in kilobytes (1,024 octets actually) incoming print job that this printer will accept.' EQUALITY integerMatch ORDERING integerOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1112 NAME 'printer-current-operator' DESC 'The identity of the current human operator responsible for operating this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1113 NAME 'printer-service-person' DESC 'The identity of the current human service person responsible for servicing this printer.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} SINGLE-VALUE X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1114 NAME 'printer-delivery-orientation-supported' DESC 'The possible delivery orientations of pages as they are printed and ejected from this printer.' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1115 NAME 'printer-stacking-order-supported' DESC 'The possible stacking order of pages as they are printed and ejected from this printer.' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1116 NAME 'printer-output-features-supported' DESC 'The possible output features supported by this printer.' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.18.0.2.4.1108 NAME 'printer-aliases' DESC 'List of site-specific administrative names of this printer in addition to the value specified for printer-name.' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{127} X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.1 NAME 'uddiBusinessKey' DESC 'businessEntity unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.2 NAME 'uddiAuthorizedName' DESC 'businessEntity publisher name' EQUALITY distinguishedNameMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.3 NAME 'uddiOperator' DESC 'registry site operator of businessEntitys master copy' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.4 NAME 'uddiName' DESC 'human readable name' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.5 NAME 'uddiDescription' DESC 'short description' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.6 NAME 'uddiDiscoveryURLs' DESC 'URL to retrieve a businessEntity instance' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.7 NAME 'uddiUseType' DESC 'name of convention the referenced document follows' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.8 NAME 'uddiPersonName' DESC 'name of person or job role available for contact' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.9 NAME 'uddiPhone' DESC 'telephone number for contact' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.10 NAME 'uddiEMail' DESC 'e-mail address for contact' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.11 NAME 'uddiSortCode' DESC 'specifies an external disply mechanism' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.12 NAME 'uddiTModelKey' DESC 'tModel unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.13 NAME 'uddiAddressLine' DESC 'address' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.14 NAME 'uddiIdentifierBag' DESC 'identification information' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.15 NAME 'uddiCategoryBag' DESC 'categorization information' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.16 NAME 'uddiKeyedReference' DESC 'categorization information' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.17 NAME 'uddiServiceKey' DESC 'businessService unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.18 NAME 'uddiBindingKey' DESC 'bindingTemplate unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.19 NAME 'uddiAccessPoint' DESC 'entry point address to call a web service' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.20 NAME 'uddiHostingRedirector' DESC 'designates a pointer to another bindingTemplate' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.21 NAME 'uddiInstanceDescription' DESC 'instance details description' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.22 NAME 'uddiInstanceParms' DESC 'URL reference to required settings' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.23 NAME 'uddiOverviewDescription' DESC 'outlines tModel usage' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.24 NAME 'uddiOverviewURL' DESC 'URL reference to overview document' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.25 NAME 'uddiFromKey' DESC 'unique businessEntity key reference' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.26 NAME 'uddiToKey' DESC 'unique businessEntity key reference' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.27 NAME 'uddiUUID' DESC 'unique attribute' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.28 NAME 'uddiIsHidden' DESC 'isHidden attribute' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.29 NAME 'uddiIsProjection' DESC 'isServiceProjection attribute' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.30 NAME 'uddiLang' DESC 'xml:lang value in v3 Address structure' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.31 NAME 'uddiv3BusinessKey' DESC 'UDDIv3 businessEntity unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.32 NAME 'uddiv3ServiceKey' DESC 'UDDIv3 businessService unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.33 NAME 'uddiv3BindingKey' DESC 'UDDIv3 BindingTemplate unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.34 NAME 'uddiv3TModelKey' DESC 'UDDIv3 TModel unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.35 NAME 'uddiv3DigitalSignature' DESC 'UDDIv3 entity digital signature' EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.36 NAME 'uddiv3NodeId' DESC 'UDDIv3 Node Identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.37 NAME 'uddiv3EntityModificationTime' DESC 'UDDIv3 Last Modified Time for Entity' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.38 NAME 'uddiv3SubscriptionKey' DESC 'UDDIv3 Subscription unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.39 NAME 'uddiv3SubscriptionFilter' DESC 'UDDIv3 Subscription Filter' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.40 NAME 'uddiv3NotificationInterval' DESC 'UDDIv3 Notification Interval' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.41 NAME 'uddiv3MaxEntities' DESC 'UDDIv3 Subscription maxEntities field' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.42 NAME 'uddiv3ExpiresAfter' DESC 'UDDIv3 Subscription ExpiresAfter field' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.43 NAME 'uddiv3BriefResponse' DESC 'UDDIv3 Subscription ExpiresAfter field' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.44 NAME 'uddiv3EntityKey' DESC 'UDDIv3 Entity unique identifier' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.45 NAME 'uddiv3EntityCreationTime' DESC 'UDDIv3 Entity Creation Time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.10.4.46 NAME 'uddiv3EntityDeletionTime' DESC 'UDDIv3 Entity Deletion Time' EQUALITY generalizedTimeMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 SINGLE-VALUE X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.0 NAME 'uidNumber' DESC 'An integer uniquely identifying a user in an administrative domain' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.1 NAME 'gidNumber' DESC 'An integer uniquely identifying a group in an administrative domain' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.2 NAME 'gecos' DESC 'The GECOS field; the common name' EQUALITY caseIgnoreIA5Match SUBSTR caseIgnoreIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.3 NAME 'homeDirectory' DESC 'The absolute path to the home directory' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.4 NAME 'loginShell' DESC 'The path to the login shell' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.5 NAME 'shadowLastChange' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.6 NAME 'shadowMin' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.7 NAME 'shadowMax' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.8 NAME 'shadowWarning' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.9 NAME 'shadowInactive' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.10 NAME 'shadowExpire' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.11 NAME 'shadowFlag' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.12 NAME 'memberUid' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.13 NAME 'memberNisNetgroup' EQUALITY caseExactIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.14 NAME 'nisNetgroupTriple' DESC 'Netgroup triple' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.15 NAME 'ipServicePort' DESC 'Service port number' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.16 NAME 'ipServiceProtocol' DESC 'Service protocol name' SUP name X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.17 NAME 'ipProtocolNumber' DESC 'IP protocol number' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.18 NAME 'oncRpcNumber' DESC 'ONC RPC number' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.19 NAME 'ipHostNumber' DESC 'IPv4 addresses as a dotted decimal omitting leading zeros or IPv6 addresses as defined in RFC2373' SUP name X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.20 NAME 'ipNetworkNumber' DESC 'IP network as a dotted decimal, eg. 192.168, omitting leading zeros' SUP name SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.21 NAME 'ipNetmaskNumber' DESC 'IP netmask as a dotted decimal, eg. 255.255.255.0, omitting leading zeros' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.22 NAME 'macAddress' DESC 'MAC address in maximal, colon separated hex notation, eg. 00:00:92:90:ee:e2' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.23 NAME 'bootParameter' DESC 'rpc.bootparamd parameter' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.24 NAME 'bootFile' DESC 'Boot image name' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.26 NAME 'nisMapName' DESC 'Name of a A generic NIS map' SUP name X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.27 NAME 'nisMapEntry' DESC 'A generic NIS entry' EQUALITY caseExactIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.28 NAME 'nisPublicKey' DESC 'NIS public key' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.29 NAME 'nisSecretKey' DESC 'NIS secret key' EQUALITY octetStringMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.30 NAME 'nisDomain' DESC 'NIS domain' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.31 NAME 'automountMapName' DESC 'automount Map Name' EQUALITY caseExactIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.32 NAME 'automountKey' DESC 'Automount Key value' EQUALITY caseExactIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+attributeTypes: ( 1.3.6.1.1.1.1.33 NAME 'automountInformation' DESC 'Automount information' EQUALITY caseExactIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 2.5.6.0 NAME 'top' ABSTRACT MUST objectClass X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.1 NAME 'alias' SUP top STRUCTURAL MUST aliasedObjectName X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.2 NAME 'country' SUP top STRUCTURAL MUST c MAY ( searchGuide $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.3 NAME 'locality' SUP top STRUCTURAL MAY ( street $ seeAlso $ searchGuide $ st $ l $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.4 NAME 'organization' SUP top STRUCTURAL MUST o MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $ x121Address $ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.5 NAME 'organizationalUnit' SUP top STRUCTURAL MUST ou MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $ x121Address $ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.6 NAME 'person' SUP top STRUCTURAL MUST ( sn $ cn ) MAY ( userPassword $ telephoneNumber $ seeAlso $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.7 NAME 'organizationalPerson' SUP person STRUCTURAL MAY ( title $ x121Address $ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ ou $ st $ l ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.8 NAME 'organizationalRole' SUP top STRUCTURAL MUST cn MAY ( x121Address $ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $ seeAlso $ roleOccupant $ preferredDeliveryMethod $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ ou $ st $ l $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.9 NAME 'groupOfNames' SUP top STRUCTURAL MUST cn MAY ( member $ businessCategory $ seeAlso $ owner $ ou $ o $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.10 NAME 'residentialPerson' SUP person STRUCTURAL MUST l MAY ( businessCategory $ x121Address $ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.11 NAME 'applicationProcess' SUP top STRUCTURAL MUST cn MAY ( seeAlso $ ou $ l $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.12 NAME 'applicationEntity' SUP top STRUCTURAL MUST ( presentationAddress $ cn ) MAY ( supportedApplicationContext $ seeAlso $ ou $ o $ l $ description ) X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.13 NAME 'dSA' SUP applicationEntity STRUCTURAL MAY knowledgeInformation X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.14 NAME 'device' SUP top STRUCTURAL MUST cn MAY ( serialNumber $ seeAlso $ owner $ ou $ o $ l $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.15 NAME 'strongAuthenticationUser' SUP top AUXILIARY MUST userCertificate X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.16 NAME 'certificationAuthority' SUP top AUXILIARY MUST ( authorityRevocationList $ certificateRevocationList $ caCertificate ) MAY crossCertificatePair X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.16.2 NAME 'certificationAuthority-V2' SUP certificationAuthority AUXILIARY MAY deltaRevocationList X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.17 NAME 'groupOfUniqueNames' SUP top STRUCTURAL MUST cn MAY ( uniqueMember $ businessCategory $ seeAlso $ owner $ ou $ o $ description ) X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.18 NAME 'userSecurityInformation' SUP top AUXILIARY MAY ( supportedAlgorithms ) X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.19 NAME 'cRLDistributionPoint' SUP top STRUCTURAL MUST cn MAY ( certificateRevocationList $ authorityRevocationList $ deltaRevocationList ) X-ORIGIN 'RFC 4523' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.6.20 NAME 'dmd' SUP top STRUCTURAL MUST dmdName MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $ x121Address $ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $ description ) X-ORIGIN 'RFC 2256' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 1.3.6.1.4.1.1466.101.120.111 NAME 'extensibleObject' SUP top AUXILIARY X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.5.20.1 NAME 'subschema' AUXILIARY MAY ( dITStructureRules $ nameForms $ ditContentRules $ objectClasses $ attributeTypes $ matchingRules $ matchingRuleUse ) X-ORIGIN 'RFC 4512' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.5 NAME 'account' SUP top STRUCTURAL MUST uid MAY ( description $ seeAlso $ l $ o $ ou $ host ) X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.6 NAME 'document' SUP top STRUCTURAL MUST documentIdentifier MAY ( cn $ description $ seeAlso $ l $ o $ ou $ documentTitle $ documentVersion $ documentAuthor $ documentLocation $ documentPublisher ) X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.9 NAME 'documentSeries' SUP top STRUCTURAL MUST cn MAY ( description $ l $ o $ ou $ seeAlso $ telephoneNumber ) X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.13 NAME 'domain' SUP top STRUCTURAL MUST dc MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $ x121Address $ registeredAddress $ destinationIndicator $ preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $ telephoneNumber $ internationaliSDNNumber $ facsimileTelephoneNumber $ street $ postOfficeBox $ postalCode $ postalAddress $ physicalDeliveryOfficeName $ st $ l $ description $ o $ associatedName ) X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.17 NAME 'domainRelatedObject' SUP top AUXILIARY MUST associatedDomain X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.18 NAME 'friendlyCountry' SUP country STRUCTURAL MUST co X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.14 NAME 'rFC822LocalPart' SUP domain STRUCTURAL MAY ( cn $ description $ destinationIndicator $ facsimileTelephoneNumber $ internationaliSDNNumber $ physicalDeliveryOfficeName $ postalAddress $ postalCode $ postOfficeBox $ preferredDeliveryMethod $ registeredAddress $ seeAlso $ sn $ street $ telephoneNumber $ teletexTerminalIdentifier $ telexNumber $ x121Address ) X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.7 NAME 'room' SUP top STRUCTURAL MUST cn MAY ( roomNumber $ description $ seeAlso $ telephoneNumber ) X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.19 NAME 'simpleSecurityObject' SUP top AUXILIARY MUST userPassword X-ORIGIN 'RFC 4524' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 1.3.6.1.4.1.1466.344 NAME 'dcObject' SUP top AUXILIARY MUST dc X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.16.840.1.113730.3.2.2 NAME 'inetOrgPerson' SUP organizationalPerson STRUCTURAL MAY ( audio $ businessCategory $ carLicense $ departmentNumber $ displayName $ employeeNumber $ employeeType $ givenName $ homePhone $ homePostalAddress $ initials $ jpegPhoto $ labeledURI $ mail $ manager $ mobile $ o $ pager $ photo $ roomNumber $ secretary $ uid $ userCertificate $ x500UniqueIdentifier $ preferredLanguage $ userSMIMECertificate $ userPKCS12 ) X-ORIGIN 'RFC 2798' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 1.3.6.1.4.1.250.3.15 NAME 'labeledURIObject' DESC 'object that contains the URI attribute type' SUP top AUXILIARY MAY labeledURI X-ORIGIN 'RFC 2079' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 1.3.6.1.4.1.5322.13.1.1 NAME 'namedObject' SUP top STRUCTURAL MAY cn X-ORIGIN 'draft-howard-namedobject' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.900 NAME 'untypedObject' DESC 'Entry of no particular type' SUP top STRUCTURAL MAY ( c $ cn $ dc $ l $ o $ ou $ st $ street $ uid $ description $ owner $ seeAlso ) X-ORIGIN 'draft-furuseth-ldap-untypedobject' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 1.3.6.1.1.3.1 NAME 'uidObject' SUP top AUXILIARY MUST uid X-ORIGIN 'RFC 4519' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.16.840.1.113730.3.2.6 NAME 'referral' DESC 'named subordinate reference object' STRUCTURAL MUST ref X-ORIGIN 'RFC 3296' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.16.840.1.113719.2.142.6.1.1 NAME 'ldapSubEntry' DESC 'LDAP Subentry class, version 1' SUP top STRUCTURAL MAY ( cn ) X-ORIGIN 'draft-ietf-ldup-subentry' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 1.3.6.1.4.1.7628.5.6.1.1 NAME 'inheritableLDAPSubEntry' DESC 'Inheritable LDAP Subentry class, version 1' SUP ldapSubEntry STRUCTURAL MUST ( inheritable ) MAY ( blockInheritance ) X-ORIGIN 'draft-ietf-ldup-subentry' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 2.16.840.1.113730.3.2.33 NAME 'groupOfURLs' DESC 'Sun-defined objectclass' SUP top STRUCTURAL MUST ( cn ) MAY ( memberURL $ businessCategory $ description $ o $ ou $ owner $ seeAlso ) X-ORIGIN 'Sun Java System Directory Server' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.3 NAME 'pilotObject' SUP top MAY ( audio $ dITRedirect $ info $ jpegPhoto $ lastModifiedBy $ lastModifiedTime $ manager $ photo $ uniqueIdentifier ) X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.4 NAME 'pilotPerson' SUP person MAY ( userid $ textEncodedORAddress $ rfc822Mailbox $ favouriteDrink $ roomNumber $ userClass $ homeTelephoneNumber $ homePostalAddress $ secretary $ personalTitle $ preferredDeliveryMethod $ businessCategory $ janetMailbox $ otherMailbox $ mobileTelephoneNumber $ pagerTelephoneNumber $ organizationalStatus $ mailPreferenceOption $ personalSignature ) X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.20 NAME 'pilotOrganization' SUP top MUST ( ou $ o ) MAY ( buildingName $ businessCategory $ description $ destinationIndicator $ facsimileTelephoneNumber $ internationaliSDNNumber $ l $ physicalDeliveryOfficeName $ postOfficeBox $ postalAddress $ postalCode $ preferredDeliveryMethod $ registeredAddress $ searchGuide $ seeAlso $ st $ street $ telephoneNumber $ teletexTerminalIdentifier $ telexNumber $ userPassword $ x121Address ) X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.15 NAME 'dNSDomain' SUP domain MAY ( ARecord $ MDRecord $ MXRecord $ NSRecord $ SOARecord $ CNAMERecord ) X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.21 NAME 'pilotDSA' SUP dSA MUST dSAQuality X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 0.9.2342.19200300.100.4.22 NAME 'qualityLabelledData' SUP top MUST dSAQuality MAY ( subtreeMinimumQuality $ subtreeMaximumQuality ) X-ORIGIN 'RFC 1274' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 1.2.826.0.1.3458854.2.1.1 NAME 'groupOfEntries' SUP top STRUCTURAL MUST cn MAY ( member $ businessCategory $ seeAlso $ owner $ ou $ o $ description ) X-ORIGIN 'draft-findlay-ldap-groupofentries' X-SCHEMA-FILE '00-core.ldif' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.8.2.1 NAME 'pwdPolicy' SUP top AUXILIARY MUST ( pwdAttribute ) MAY ( pwdMinAge $ pwdMaxAge $ pwdInHistory $ pwdCheckQuality $ pwdMinLength $ pwdExpireWarning $ pwdGraceAuthNLimit $ pwdLockout $ pwdLockoutDuration $ pwdMaxFailure $ pwdFailureCountInterval $ pwdMustChange $ pwdAllowUserChange $ pwdSafeModify ) X-ORIGIN 'draft-behera-ldap-password-policy' X-SCHEMA-FILE '01-pwpolicy.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.1 NAME 'ds-cfg-access-control-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.2 NAME 'ds-cfg-alert-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) MAY ( ds-cfg-enabled-alert-type $ ds-cfg-disabled-alert-type ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.3 NAME 'ds-cfg-attribute-syntax' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.4 NAME 'ds-cfg-telephone-number-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strict-format X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.5 NAME 'ds-cfg-backend' SUP top STRUCTURAL MUST ( ds-cfg-backend-id $ ds-cfg-base-dn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-writability-mode ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.6 NAME 'ds-cfg-local-db-backend' SUP ds-cfg-backend STRUCTURAL MUST ds-cfg-db-directory MAY ( ds-cfg-index-entry-limit $ ds-cfg-preload-time-limit $ ds-cfg-import-queue-size $ ds-cfg-import-thread-count $ ds-cfg-entries-compressed $ ds-cfg-db-directory-permissions $ ds-cfg-db-cache-percent $ ds-cfg-db-cache-size $ ds-cfg-db-txn-no-sync $ ds-cfg-db-txn-write-no-sync $ ds-cfg-db-run-cleaner $ ds-cfg-db-cleaner-min-utilization $ ds-cfg-db-evictor-lru-only $ ds-cfg-db-evictor-nodes-per-scan $ ds-cfg-db-log-file-max $ ds-cfg-db-logging-file-handler-on $ ds-cfg-db-logging-level $ ds-cfg-db-checkpointer-bytes-interval $ ds-cfg-db-checkpointer-wakeup-interval $ ds-cfg-db-num-lock-tables $ ds-cfg-db-num-cleaner-threads $ ds-cfg-compact-encoding $ ds-cfg-je-property ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE!
'02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.7 NAME 'ds-cfg-local-db-index' SUP top STRUCTURAL MUST ( ds-cfg-attribute $ ds-cfg-index-type ) MAY ( ds-cfg-index-entry-limit $ ds-cfg-substring-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.8 NAME 'ds-cfg-schema-backend' SUP ds-cfg-backend STRUCTURAL MAY ( ds-cfg-schema-entry-dn $ ds-cfg-show-all-attributes ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.9 NAME 'ds-cfg-task-backend' SUP ds-cfg-backend STRUCTURAL MAY ( ds-cfg-task-backing-file $ ds-cfg-task-retention-time $ ds-cfg-notification-sender-address ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.10 NAME 'ds-cfg-branch' SUP top STRUCTURAL MUST cn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.11 NAME 'ds-cfg-certificate-mapper' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.12 NAME 'ds-cfg-connection-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) MAY ( ds-cfg-allowed-client $ ds-cfg-denied-client ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.13 NAME 'ds-cfg-ldap-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ds-cfg-listen-port MAY ( ds-cfg-listen-address $ ds-cfg-allow-ldap-v2 $ ds-cfg-keep-stats $ ds-cfg-use-tcp-keep-alive $ ds-cfg-use-tcp-no-delay $ ds-cfg-allow-tcp-reuse-address $ ds-cfg-send-rejection-notice $ ds-cfg-max-request-size $ ds-cfg-num-request-handlers $ ds-cfg-allow-start-tls $ ds-cfg-use-ssl $ ds-cfg-ssl-client-auth-policy $ ds-cfg-ssl-cert-nickname $ ds-cfg-accept-backlog $ ds-cfg-key-manager-provider $ ds-cfg-trust-manager-provider $ ds-cfg-ssl-protocol $ ds-cfg-ssl-cipher-suite $ ds-cfg-max-blocked-write-time-limit ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.14 NAME 'ds-cfg-entry-cache' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-cache-level ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.15 NAME 'ds-cfg-fifo-entry-cache' SUP ds-cfg-entry-cache STRUCTURAL MAY ( ds-cfg-max-entries $ ds-cfg-max-memory-percent $ ds-cfg-lock-timeout $ ds-cfg-exclude-filter $ ds-cfg-include-filter ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.16 NAME 'ds-cfg-soft-reference-entry-cache' SUP ds-cfg-entry-cache STRUCTURAL MAY ( ds-cfg-lock-timeout $ ds-cfg-exclude-filter $ ds-cfg-include-filter ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.17 NAME 'ds-cfg-extended-operation-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.18 NAME 'ds-cfg-key-manager-provider' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.19 NAME 'ds-cfg-file-based-key-manager-provider' SUP ds-cfg-key-manager-provider STRUCTURAL MUST ds-cfg-key-store-file MAY ( ds-cfg-key-store-type $ ds-cfg-key-store-pin $ ds-cfg-key-store-pin-property $ ds-cfg-key-store-pin-environment-variable $ ds-cfg-key-store-pin-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.20 NAME 'ds-cfg-pkcs11-key-manager-provider' SUP ds-cfg-key-manager-provider STRUCTURAL MAY ( ds-cfg-key-store-pin $ ds-cfg-key-store-pin-property $ ds-cfg-key-store-pin-environment-variable $ ds-cfg-key-store-pin-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.21 NAME 'ds-cfg-log-publisher' SUP top STRUCTURAL MUST ( cn $ ds-cfg-enabled $ ds-cfg-java-class ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.22 NAME 'ds-cfg-access-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MAY ( ds-cfg-suppress-internal-operations $ ds-cfg-suppress-synchronization-operations ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.23 NAME 'ds-cfg-error-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MAY ( ds-cfg-default-severity $ ds-cfg-override-severity ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.24 NAME 'ds-cfg-debug-log-publisher' SUP ds-cfg-log-publisher STRUCTURAL MUST ds-cfg-default-debug-level MAY ( ds-cfg-default-debug-category $ ds-cfg-default-omit-method-entry-arguments $ ds-cfg-default-omit-method-return-value $ ds-cfg-default-include-throwable-cause $ ds-cfg-default-throwable-stack-frames ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.25 NAME 'ds-cfg-file-based-access-log-publisher' SUP ds-cfg-access-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.26 NAME 'ds-cfg-file-based-debug-log-publisher' SUP ds-cfg-debug-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.27 NAME 'ds-cfg-file-based-error-log-publisher' SUP ds-cfg-error-log-publisher STRUCTURAL MUST ( ds-cfg-log-file $ ds-cfg-asynchronous $ ds-cfg-log-file-permissions ) MAY ( ds-cfg-rotation-policy $ ds-cfg-rotation-action $ ds-cfg-retention-policy $ ds-cfg-time-interval $ ds-cfg-buffer-size $ ds-cfg-auto-flush $ ds-cfg-append $ ds-cfg-queue-size ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.28 NAME 'ds-cfg-matching-rule' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.29 NAME 'ds-cfg-approximate-matching-rule' SUP ds-cfg-matching-rule STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.30 NAME 'ds-cfg-equality-matching-rule' SUP ds-cfg-matching-rule STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.31 NAME 'ds-cfg-ordering-matching-rule' SUP ds-cfg-matching-rule STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.32 NAME 'ds-cfg-substring-matching-rule' SUP ds-cfg-matching-rule STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.33 NAME 'ds-cfg-monitor-provider' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.34 NAME 'ds-cfg-password-storage-scheme' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.35 NAME 'ds-cfg-password-validator' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.36 NAME 'ds-cfg-plugin' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-plugin-type ) MAY ds-cfg-invoke-for-internal-operations X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.37 NAME 'ds-cfg-profiler-plugin' SUP ds-cfg-plugin STRUCTURAL MAY ( ds-cfg-enable-profiling-on-startup $ ds-cfg-profile-directory $ ds-cfg-profile-sample-interval $ ds-cfg-profile-action ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.38 NAME 'ds-recurring-task' SUP top STRUCTURAL MUST ( ds-recurring-task-class-name $ ds-recurring-task-id ) MAY ( ds-task-notify-on-completion $ ds-task-notify-on-error ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.39 NAME 'ds-cfg-root-config' SUP top STRUCTURAL MUST ( cn $ ds-cfg-default-password-policy ) MAY ( ds-cfg-check-schema $ ds-cfg-add-missing-rdn-attributes $ ds-cfg-allow-attribute-name-exceptions $ ds-cfg-invalid-attribute-syntax-behavior $ ds-cfg-server-error-result-code $ ds-cfg-single-structural-objectclass-behavior $ ds-cfg-notify-abandoned-operations $ ds-cfg-size-limit $ ds-cfg-time-limit $ ds-cfg-proxied-authorization-identity-mapper $ ds-cfg-writability-mode $ ds-cfg-reject-unauthenticated-requests $ ds-cfg-bind-with-dn-requires-password $ ds-cfg-lookthrough-limit $ ds-cfg-smtp-server $ ds-cfg-allowed-task $ ds-cfg-disabled-privilege $ ds-cfg-return-bind-error-messages $ ds-cfg-idle-time-limit $ ds-cfg-workflow-configuration-mode $ ds-cfg-save-config-on-successful-startup $ ds-cfg-etime-resolution!
$ ds-cfg-entry-cache-preload $ ds-cfg-max-allowed-client-connections) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.40 NAME 'ds-cfg-root-dn-user' SUP top AUXILIARY MAY ds-cfg-alternate-bind-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.41 NAME 'ds-cfg-root-dse-backend' SUP top STRUCTURAL MUST cn MAY ( ds-cfg-subordinate-base-dn $ ds-cfg-show-all-attributes ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.42 NAME 'ds-cfg-sasl-mechanism-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.43 NAME 'ds-cfg-external-sasl-mechanism-handler' SUP ds-cfg-sasl-mechanism-handler STRUCTURAL MUST ds-cfg-certificate-mapper MAY ( ds-cfg-certificate-attribute $ ds-cfg-certificate-validation-policy ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.44 NAME 'ds-cfg-plain-sasl-mechanism-handler' SUP ds-cfg-sasl-mechanism-handler STRUCTURAL MUST ds-cfg-identity-mapper X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.45 NAME 'ds-cfg-cram-md5-sasl-mechanism-handler' SUP ds-cfg-sasl-mechanism-handler STRUCTURAL MUST ds-cfg-identity-mapper X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.46 NAME 'ds-cfg-digest-md5-sasl-mechanism-handler' SUP ds-cfg-sasl-mechanism-handler STRUCTURAL MUST ds-cfg-identity-mapper MAY ( ds-cfg-realm $ ds-cfg-server-fqdn ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.47 NAME 'ds-cfg-gssapi-sasl-mechanism-handler' SUP ds-cfg-sasl-mechanism-handler STRUCTURAL MAY ( ds-cfg-identity-mapper $ ds-cfg-realm $ ds-cfg-kdc-address $ ds-cfg-keytab $ ds-cfg-server-fqdn ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.48 NAME 'ds-task' SUP top STRUCTURAL MUST ( ds-task-class-name $ ds-task-id ) MAY ( ds-task-state $ ds-task-scheduled-start-time $ ds-task-actual-start-time $ ds-task-completion-time $ ds-task-dependency-id $ ds-task-failed-dependency-action $ ds-task-log-message $ ds-task-notify-on-completion $ ds-task-notify-on-error ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.49 NAME 'ds-task-shutdown' SUP ds-task STRUCTURAL MAY ( ds-task-shutdown-message $ ds-task-restart-server ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.50 NAME 'ds-cfg-trust-manager-provider' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.51 NAME 'ds-cfg-file-based-trust-manager-provider' SUP ds-cfg-trust-manager-provider STRUCTURAL MUST ds-cfg-trust-store-file MAY ( ds-cfg-trust-store-type $ ds-cfg-trust-store-pin $ ds-cfg-trust-store-pin-property $ ds-cfg-trust-store-pin-environment-variable $ ds-cfg-trust-store-pin-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.52 NAME 'ds-cfg-directory-string-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-allow-zero-length-values X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.53 NAME 'ds-root-dse' SUP top STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.54 NAME 'ds-cfg-identity-mapper' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.55 NAME 'ds-cfg-exact-match-identity-mapper' SUP ds-cfg-identity-mapper STRUCTURAL MUST ds-cfg-match-attribute MAY ds-cfg-match-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.56 NAME 'ds-cfg-synchronization-provider' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.57 NAME 'ds-cfg-replication-domain' SUP top STRUCTURAL MUST ( ds-cfg-replication-server $ ds-cfg-server-id $ ds-cfg-base-dn ) MAY ( cn $ ds-cfg-receive-status $ ds-cfg-max-receive-queue $ ds-cfg-max-receive-delay $ ds-cfg-max-send-queue $ ds-cfg-max-send-delay $ ds-cfg-window-size $ ds-cfg-heartbeat-interval $ ds-cfg-isolation-policy ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.58 NAME 'ds-cfg-length-based-password-validator' SUP ds-cfg-password-validator STRUCTURAL MAY ( ds-cfg-max-password-length $ ds-cfg-min-password-length ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.59 NAME 'ds-cfg-password-generator' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.60 NAME 'ds-cfg-random-password-generator' SUP ds-cfg-password-generator STRUCTURAL MUST ( ds-cfg-password-character-set $ ds-cfg-password-format ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.61 NAME 'ds-cfg-password-policy' SUP top STRUCTURAL MUST ( cn $ ds-cfg-password-attribute $ ds-cfg-default-password-storage-scheme ) MAY ( ds-cfg-account-status-notification-handler $ ds-cfg-allow-expired-password-changes $ ds-cfg-allow-multiple-password-values $ ds-cfg-allow-pre-encoded-passwords $ ds-cfg-allow-user-password-changes $ ds-cfg-deprecated-password-storage-scheme $ ds-cfg-expire-passwords-without-warning $ ds-cfg-force-change-on-add $ ds-cfg-force-change-on-reset $ ds-cfg-grace-login-count $ ds-cfg-idle-lockout-interval $ ds-cfg-last-login-time-attribute $ ds-cfg-last-login-time-format $ ds-cfg-lockout-duration $ ds-cfg-lockout-failure-count $ ds-cfg-lockout-failure-expiration-interval $ ds-cfg-max-password-age $ ds-cfg-max-password-reset-age $ ds-cfg-min-password-age $ ds-cfg-password-change-req!
uires-current-password $ ds-cfg-password-expiration-warning-interval $ ds-cfg-password-generator $ ds-cfg-password-validator $ ds-cfg-previous-last-login-time-format $ ds-cfg-require-change-by-time $ ds-cfg-require-secure-authentication $ ds-cfg-require-secure-password-changes $ ds-cfg-skip-validation-for-administrators $ ds-cfg-state-update-failure-policy $ ds-cfg-password-history-count $ ds-cfg-password-history-duration ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.62 NAME 'ds-cfg-jmx-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ds-cfg-listen-port MAY ( ds-cfg-ssl-cert-nickname $ ds-cfg-use-ssl $ ds-cfg-key-manager-provider ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.63 NAME 'ds-task-import' SUP ds-task STRUCTURAL MAY ( ds-task-import-append $ ds-task-import-replace-existing $ ds-task-import-include-branch $ ds-task-import-exclude-branch $ ds-task-import-include-attribute $ ds-task-import-exclude-attribute $ ds-task-import-include-filter $ ds-task-import-exclude-filter $ ds-task-import-ldif-file $ ds-task-import-template-file $ ds-task-import-random-seed $ ds-task-import-reject-file $ ds-task-import-overwrite-rejects $ ds-task-import-skip-schema-validation $ ds-task-import-is-compressed $ ds-task-import-is-encrypted $ ds-task-import-backend-id $ ds-task-import-clear-backend ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.64 NAME 'ds-cfg-replication-server' SUP top STRUCTURAL MUST ( ds-cfg-replication-server-id $ ds-cfg-replication-port ) MAY ( ds-cfg-replication-server $ cn $ ds-cfg-window-size $ ds-cfg-queue-size $ ds-cfg-replication-db-directory $ ds-cfg-replication-purge-delay ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.65 NAME 'ds-backup-directory' SUP top STRUCTURAL MUST ( ds-backup-directory-path $ ds-backup-backend-dn ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.66 NAME 'ds-backup-info' SUP top STRUCTURAL MUST ( ds-backup-id $ ds-backup-directory-path ) MAY ( ds-backup-compressed $ ds-backup-date $ ds-backup-dependency $ ds-backup-encrypted $ ds-backup-incremental $ ds-backup-signed-hash $ ds-backup-unsigned-hash ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.67 NAME 'ds-cfg-backup-backend' SUP ds-cfg-backend STRUCTURAL MAY ds-cfg-backup-directory X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.68 NAME 'ds-task-export' SUP ds-task STRUCTURAL MUST ( ds-task-export-ldif-file $ ds-task-export-backend-id ) MAY ( ds-task-export-append-to-ldif $ ds-task-export-include-branch $ ds-task-export-exclude-branch $ ds-task-export-include-attribute $ ds-task-export-exclude-attribute $ ds-task-export-include-filter $ ds-task-export-exclude-filter $ ds-task-export-wrap-column $ ds-task-export-compress-ldif $ ds-task-export-encrypt-ldif $ ds-task-export-include-operational-attributes $ ds-task-export-sign-hash ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.69 NAME 'ds-task-backup' SUP ds-task STRUCTURAL MUST ds-backup-directory-path MAY ( ds-task-backup-backend-id $ ds-backup-id $ ds-task-backup-all $ ds-task-backup-incremental $ ds-task-backup-incremental-base-id $ ds-task-backup-compress $ ds-task-backup-encrypt $ ds-task-backup-hash $ ds-task-backup-sign-hash ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.70 NAME 'ds-task-restore' SUP ds-task STRUCTURAL MUST ds-backup-directory-path MAY ( ds-backup-id $ ds-task-restore-verify-only ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.71 NAME 'ds-cfg-work-queue' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.72 NAME 'ds-cfg-traditional-work-queue' SUP ds-cfg-work-queue STRUCTURAL MUST ds-cfg-num-worker-threads MAY ds-cfg-max-work-queue-capacity X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.73 NAME 'ds-cfg-password-modify-extended-operation-handler' SUP ds-cfg-extended-operation-handler STRUCTURAL MUST ds-cfg-identity-mapper X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.74 NAME 'ds-cfg-account-status-notification-handler' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.75 NAME 'ds-cfg-error-log-account-status-notification-handler' SUP ds-cfg-account-status-notification-handler STRUCTURAL MUST ds-cfg-account-status-notification-type X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.76 NAME 'ds-monitor-entry' SUP top STRUCTURAL MUST cn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.77 NAME 'ds-backend-monitor-entry' SUP ds-monitor-entry STRUCTURAL MAY ( ds-backend-id $ ds-backend-base-dn $ ds-backend-entry-count $ ds-base-dn-entry-count $ ds-backend-writability-mode $ ds-backend-is-private ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.78 NAME 'ds-connectionhandler-monitor-entry' SUP ds-monitor-entry STRUCTURAL MAY ( ds-connectionhandler-connection $ ds-connectionhandler-listener $ ds-connectionhandler-num-connections $ ds-connectionhandler-protocol ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.79 NAME 'ds-task-add-schema-file' SUP ds-task STRUCTURAL MUST ds-task-schema-file-name X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.80 NAME 'ds-cfg-group-implementation' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.81 NAME 'ds-cfg-root-dn' SUP top STRUCTURAL MUST cn MAY ds-cfg-default-root-privilege-name X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.82 NAME 'ds-certificate-user' SUP top AUXILIARY MAY ( userCertificate $ ds-certificate-subject-dn $ ds-certificate-fingerprint ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.83 NAME 'ds-cfg-subject-dn-to-user-attribute-certificate-mapper' SUP ds-cfg-certificate-mapper STRUCTURAL MUST ds-cfg-subject-attribute MAY ds-cfg-user-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.84 NAME 'ds-cfg-subject-attribute-to-user-attribute-certificate-mapper' SUP ds-cfg-certificate-mapper STRUCTURAL MUST ds-cfg-subject-attribute-mapping MAY ds-cfg-user-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.85 NAME 'ds-cfg-fingerprint-certificate-mapper' SUP ds-cfg-certificate-mapper STRUCTURAL MUST ( ds-cfg-fingerprint-attribute $ ds-cfg-fingerprint-algorithm ) MAY ds-cfg-user-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.86 NAME 'ds-cfg-dsee-compat-access-control-handler' SUP ds-cfg-access-control-handler STRUCTURAL MAY ds-cfg-global-aci X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.87 NAME 'ds-cfg-similarity-based-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-min-password-difference X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.88 NAME 'ds-cfg-unique-characters-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-min-unique-characters $ ds-cfg-case-sensitive-validation ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.89 NAME 'ds-cfg-repeated-characters-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-max-consecutive-length $ ds-cfg-case-sensitive-validation ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.90 NAME 'ds-cfg-virtual-attribute' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class $ ds-cfg-enabled $ ds-cfg-attribute-type ) MAY ( ds-cfg-base-dn $ ds-cfg-group-dn $ ds-cfg-filter $ ds-cfg-conflict-behavior ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.91 NAME 'ds-task-initialize-from-remote-replica' SUP ds-task STRUCTURAL MUST ( ds-task-initialize-domain-dn $ ds-task-initialize-replica-server-id ) MAY ( ds-task-processed-entry-count $ ds-task-unprocessed-entry-count ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.92 NAME 'ds-task-initialize-remote-replica' SUP ds-task STRUCTURAL MUST ( ds-task-initialize-domain-dn $ ds-task-initialize-replica-server-id ) MAY ( ds-task-processed-entry-count $ ds-task-unprocessed-entry-count ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.93 NAME 'ds-cfg-replication-synchronization-provider' SUP ds-cfg-synchronization-provider STRUCTURAL MAY ( ds-cfg-num-update-replay-threads ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.94 NAME 'ds-cfg-dictionary-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-dictionary-file $ ds-cfg-case-sensitive-validation $ ds-cfg-test-reversed-password ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.95 NAME 'ds-cfg-attribute-value-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ds-cfg-test-reversed-password MAY ds-cfg-match-attribute X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.96 NAME 'ds-cfg-character-set-password-validator' SUP ds-cfg-password-validator STRUCTURAL MUST ( ds-cfg-character-set $ ds-cfg-allow-unclassified-characters ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.97 NAME 'ds-task-rebuild' SUP ds-task STRUCTURAL MUST ( ds-task-rebuild-base-dn $ ds-task-rebuild-index ) MAY ds-task-rebuild-max-threads X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.98 NAME 'ds-virtual-static-group' SUP top AUXILIARY MUST ds-target-group-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.99 NAME 'ds-cfg-user-defined-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL MUST ds-cfg-value X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.100 NAME 'ds-cfg-debug-target' SUP top STRUCTURAL MUST ( ds-cfg-debug-scope $ ds-cfg-debug-level ) MAY ( ds-cfg-debug-category $ ds-cfg-omit-method-entry-arguments $ ds-cfg-omit-method-return-value $ ds-cfg-include-throwable-cause $ ds-cfg-throwable-stack-frames ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.101 NAME 'ds-cfg-log-retention-policy' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.102 NAME 'ds-cfg-file-count-log-retention-policy' SUP ds-cfg-log-retention-policy STRUCTURAL MUST ds-cfg-number-of-files X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.103 NAME 'ds-cfg-size-limit-log-retention-policy' SUP ds-cfg-log-retention-policy STRUCTURAL MUST ds-cfg-disk-space-used X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.104 NAME 'ds-cfg-free-disk-space-log-retention-policy' SUP ds-cfg-log-retention-policy STRUCTURAL MUST ds-cfg-free-disk-space X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.105 NAME 'ds-cfg-log-rotation-policy' SUP top STRUCTURAL MUST ( cn $ ds-cfg-java-class ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.106 NAME 'ds-cfg-size-limit-log-rotation-policy' SUP ds-cfg-log-rotation-policy STRUCTURAL MUST ds-cfg-file-size-limit X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.107 NAME 'ds-cfg-time-limit-log-rotation-policy' SUP ds-cfg-log-rotation-policy STRUCTURAL MUST ds-cfg-rotation-interval X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.108 NAME 'ds-cfg-fixed-time-log-rotation-policy' SUP ds-cfg-log-rotation-policy STRUCTURAL MUST ds-cfg-time-of-day X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.109 NAME 'ds-cfg-file-system-entry-cache' SUP ds-cfg-entry-cache STRUCTURAL MAY ( ds-cfg-max-entries $ ds-cfg-max-memory-size $ ds-cfg-lock-timeout $ ds-cfg-exclude-filter $ ds-cfg-include-filter $ ds-cfg-cache-directory $ ds-cfg-cache-type $ ds-cfg-persistent-cache $ ds-cfg-compact-encoding $ ds-cfg-db-cache-percent $ ds-cfg-db-cache-size $ ds-cfg-je-property ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.110 NAME 'ds-cfg-member-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL MUST ds-cfg-allow-retrieving-membership X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.111 NAME 'ds-cfg-plugin-root' SUP top AUXILIARY MAY ( ds-cfg-plugin-order-startup $ ds-cfg-plugin-order-shutdown $ ds-cfg-plugin-order-post-connect $ ds-cfg-plugin-order-post-disconnect $ ds-cfg-plugin-order-ldif-import $ ds-cfg-plugin-order-ldif-export $ ds-cfg-plugin-order-pre-parse-abandon $ ds-cfg-plugin-order-pre-parse-add $ ds-cfg-plugin-order-pre-parse-bind $ ds-cfg-plugin-order-pre-parse-compare $ ds-cfg-plugin-order-pre-parse-delete $ ds-cfg-plugin-order-pre-parse-extended $ ds-cfg-plugin-order-pre-parse-modify $ ds-cfg-plugin-order-pre-parse-modify-dn $ ds-cfg-plugin-order-pre-parse-search $ ds-cfg-plugin-order-pre-parse-unbind $ ds-cfg-plugin-order-pre-operation-add $ ds-cfg-plugin-order-pre-operation-bind $ ds-cfg-plugin-order-pre-operation-compare $ ds-cfg-plugin-order-pre-operation-delete $ ds-cfg-plugin!
-order-pre-operation-extended $ ds-cfg-plugin-order-pre-operation-modify $ ds-cfg-plugin-order-pre-operation-modify-dn $ ds-cfg-plugin-order-pre-operation-search $ ds-cfg-plugin-order-post-operation-abandon $ ds-cfg-plugin-order-post-operation-add $ ds-cfg-plugin-order-post-operation-bind $ ds-cfg-plugin-order-post-operation-compare $ ds-cfg-plugin-order-post-operation-delete $ ds-cfg-plugin-order-post-operation-extended $ ds-cfg-plugin-order-post-operation-modify $ ds-cfg-plugin-order-post-operation-modify-dn $ ds-cfg-plugin-order-post-operation-search $ ds-cfg-plugin-order-post-operation-unbind $ ds-cfg-plugin-order-post-response-add $ ds-cfg-plugin-order-post-response-bind $ ds-cfg-plugin-order-post-response-compare $ ds-cfg-plugin-order-post-response-delete $ ds-cfg-plugin-order-post-response-extended $ ds-cfg-plugin-order-post-response-modify $ ds-cfg!
-plugin-order-post-response-modify-dn $ ds-cfg-plugin-order-post
-response-search $ ds-cfg-plugin-order-post-synchronization-add $ ds-cfg-plugin-order-post-synchronization-delete $ ds-cfg-plugin-order-post-synchronization-modify $ ds-cfg-plugin-order-post-synchronization-modify-dn $ ds-cfg-plugin-order-search-result-entry $ ds-cfg-plugin-order-search-result-reference $ ds-cfg-plugin-order-subordinate-modify-dn $ ds-cfg-plugin-order-intermediate-response ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.112 NAME 'ds-cfg-password-policy-import-plugin' SUP ds-cfg-plugin STRUCTURAL MAY ( ds-cfg-default-user-password-storage-scheme $ ds-cfg-default-auth-password-storage-scheme ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.113 NAME 'ds-cfg-attribute-type-description-attribute-syntax' SUP ds-cfg-attribute-syntax STRUCTURAL MAY ds-cfg-strip-syntax-min-upper-bound X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.114 NAME 'ds-cfg-local-db-vlv-index' SUP top STRUCTURAL MUST ( ds-cfg-base-dn $ ds-cfg-scope $ ds-cfg-filter $ ds-cfg-sort-order $ ds-cfg-name ) MAY ds-cfg-max-block-size X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.115 NAME 'ds-cfg-smtp-alert-handler' SUP ds-cfg-alert-handler STRUCTURAL MUST ( ds-cfg-sender-address $ ds-cfg-recipient-address $ ds-cfg-message-subject $ ds-cfg-message-body ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.116 NAME 'ds-task-disconnect' SUP ds-task STRUCTURAL MUST ds-task-disconnect-connection-id MAY ( ds-task-disconnect-message $ ds-task-disconnect-notify-client ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.117 NAME 'ds-cfg-unique-attribute-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ds-cfg-type MAY ds-cfg-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.118 NAME 'ds-cfg-regular-expression-identity-mapper' SUP ds-cfg-identity-mapper STRUCTURAL MUST ( ds-cfg-match-attribute $ ds-cfg-match-pattern ) MAY ( ds-cfg-match-base-dn $ ds-cfg-replace-pattern ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.119 NAME 'ds-cfg-referential-integrity-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ds-cfg-attribute-type MAY ( ds-cfg-base-dn $ ds-cfg-update-interval $ ds-cfg-log-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.120 NAME 'ds-cfg-smtp-account-status-notification-handler' SUP ds-cfg-account-status-notification-handler STRUCTURAL MUST ( ds-cfg-sender-address $ ds-cfg-send-message-without-end-user-address $ ds-cfg-message-template-file ) MAY ( ds-cfg-email-address-attribute-type $ ds-cfg-recipient-address $ ds-cfg-message-subject ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.121 NAME 'ds-task-reset-generation-id' SUP ds-task STRUCTURAL MUST ds-task-reset-generation-id-domain-base-dn MAY ds-task-reset-generation-id-new-value X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.122 NAME 'ds-cfg-entry-uuid-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.123 NAME 'ds-cfg-last-mod-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.124 NAME 'ds-cfg-ldap-attribute-description-list-plugin' SUP ds-cfg-plugin STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.125 NAME 'ds-cfg-jmx-alert-handler' SUP ds-cfg-alert-handler STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.126 NAME 'ds-cfg-memory-backend' SUP ds-cfg-backend STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.127 NAME 'ds-cfg-monitor-backend' SUP ds-cfg-backend STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.128 NAME 'ds-cfg-cancel-extended-operation-handler' SUP ds-cfg-extended-operation-handler STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.129 NAME 'ds-cfg-get-connection-id-extended-operation-handler' SUP ds-cfg-extended-operation-handler STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.130 NAME 'ds-cfg-password-policy-state-extended-operation-handler' SUP ds-cfg-extended-operation-handler STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.131 NAME 'ds-cfg-start-tls-extended-operation-handler' SUP ds-cfg-extended-operation-handler STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.132 NAME 'ds-cfg-who-am-i-extended-operation-handler' SUP ds-cfg-extended-operation-handler STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.133 NAME 'ds-cfg-static-group-implementation' SUP ds-cfg-group-implementation STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.134 NAME 'ds-cfg-dynamic-group-implementation' SUP ds-cfg-group-implementation STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.135 NAME 'ds-cfg-virtual-static-group-implementation' SUP ds-cfg-group-implementation STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.136 NAME 'ds-cfg-client-connection-monitor-provider' SUP ds-cfg-monitor-provider STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.137 NAME 'ds-cfg-stack-trace-monitor-provider' SUP ds-cfg-monitor-provider STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.138 NAME 'ds-cfg-system-info-monitor-provider' SUP ds-cfg-monitor-provider STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.139 NAME 'ds-cfg-version-monitor-provider' SUP ds-cfg-monitor-provider STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.140 NAME 'ds-cfg-base64-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.141 NAME 'ds-cfg-clear-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.142 NAME 'ds-cfg-crypt-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.143 NAME 'ds-cfg-md5-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.144 NAME 'ds-cfg-sha1-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.145 NAME 'ds-cfg-salted-md5-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.146 NAME 'ds-cfg-salted-sha1-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.147 NAME 'ds-cfg-salted-sha256-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.148 NAME 'ds-cfg-salted-sha384-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.149 NAME 'ds-cfg-salted-sha512-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.150 NAME 'ds-cfg-anonymous-sasl-mechanism-handler' SUP ds-cfg-sasl-mechanism-handler STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.151 NAME 'ds-cfg-blind-trust-manager-provider' SUP ds-cfg-trust-manager-provider STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.152 NAME 'ds-cfg-entry-dn-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.153 NAME 'ds-cfg-entry-uuid-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.154 NAME 'ds-cfg-has-subordinates-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.155 NAME 'ds-cfg-num-subordinates-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.156 NAME 'ds-cfg-is-member-of-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.157 NAME 'ds-cfg-subschema-subentry-virtual-attribute' SUP ds-cfg-virtual-attribute STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.158 NAME 'ds-cfg-config-file-handler-backend' SUP ds-cfg-backend STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.159 NAME 'ds-cfg-subject-equals-dn-certificate-mapper' SUP ds-cfg-certificate-mapper STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.160 NAME 'ds-cfg-crypto-manager' SUP top STRUCTURAL MAY ( cn $ ds-cfg-digest-algorithm $ ds-cfg-mac-algorithm $ ds-cfg-mac-key-length $ ds-cfg-cipher-transformation $ ds-cfg-cipher-key-length $ ds-cfg-key-wrapping-transformation $ ds-cfg-ssl-protocol $ ds-cfg-ssl-cipher-suite $ ds-cfg-ssl-cert-nickname $ ds-cfg-ssl-encryption ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.161 NAME 'ds-cfg-trust-store-backend' SUP ds-cfg-backend STRUCTURAL MAY ( ds-cfg-trust-store-type $ ds-cfg-trust-store-file $ ds-cfg-trust-store-pin $ ds-cfg-trust-store-pin-property $ ds-cfg-trust-store-pin-environment-variable $ ds-cfg-trust-store-pin-file ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.162 NAME 'ds-cfg-instance-key' SUP top STRUCTURAL MUST ( ds-cfg-key-id $ ds-cfg-public-key-certificate ) MAY ds-cfg-key-compromised-time X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.163 NAME 'ds-cfg-self-signed-cert-request' SUP top STRUCTURAL MUST ds-cfg-key-id X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.164 NAME 'ds-cfg-seven-bit-clean-plugin' SUP ds-cfg-plugin STRUCTURAL MUST ds-cfg-attribute-type MAY ds-cfg-base-dn X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.165 NAME 'ds-cfg-ldif-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ( ds-cfg-ldif-directory $ ds-cfg-poll-interval ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.166 NAME 'ds-cfg-triple-des-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.167 NAME 'ds-cfg-aes-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.168 NAME 'ds-cfg-rc4-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.169 NAME 'ds-cfg-blowfish-password-storage-scheme' SUP ds-cfg-password-storage-scheme STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.170 NAME 'ds-cfg-entry-cache-monitor-provider' SUP ds-cfg-monitor-provider STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.171 NAME 'ds-cfg-memory-usage-monitor-provider' SUP ds-cfg-monitor-provider STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.172 NAME 'ds-cfg-ldif-backend' SUP ds-cfg-backend STRUCTURAL MUST ds-cfg-ldif-file MAY ds-cfg-is-private-backend X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.173 NAME 'ds-cfg-get-symmetric-key-extended-operation-handler' SUP ds-cfg-extended-operation-handler STRUCTURAL X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.174 NAME 'ds-cfg-cipher-key' SUP top STRUCTURAL MUST ( ds-cfg-key-id $ ds-cfg-cipher-transformation-name $ ds-cfg-key-length-bits $ ds-cfg-symmetric-key ) MAY ( ds-cfg-initialization-vector-length-bits $ ds-cfg-key-compromised-time ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.175 NAME 'ds-cfg-mac-key' SUP top STRUCTURAL MUST ( ds-cfg-key-id $ ds-cfg-mac-algorithm-name $ ds-cfg-key-length-bits $ ds-cfg-symmetric-key ) MAY ds-cfg-key-compromised-time X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.176 NAME 'ds-cfg-network-group' SUP top STRUCTURAL MUST ( ds-cfg-network-group-id $ ds-cfg-enabled $ ds-cfg-workflow ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.177 NAME 'ds-cfg-workflow' SUP top STRUCTURAL MUST ( ds-cfg-workflow-id $ ds-cfg-enabled $ ds-cfg-workflow-element $ ds-cfg-base-dn ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.178 NAME 'ds-cfg-workflow-element' SUP top STRUCTURAL MUST ( ds-cfg-workflow-element-id $ ds-cfg-enabled $ ds-cfg-java-class ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.179 NAME 'ds-cfg-local-backend-workflow-element' SUP ds-cfg-workflow-element STRUCTURAL MUST ( ds-cfg-backend ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 1.3.6.1.4.1.26027.1.2.181 NAME 'ds-cfg-snmp-connection-handler' SUP ds-cfg-connection-handler STRUCTURAL MUST ( ds-cfg-listen-port $ ds-cfg-trap-port ) MAY ( ds-cfg-traps-destination $ ds-cfg-registered-mbean $ ds-cfg-community $ ds-cfg-allowed-manager $ ds-cfg-allowed-user $ ds-cfg-security-level $ ds-cfg-traps-community $ ds-cfg-security-agent-file $ ds-cfg-opendmk-jarfile ) X-ORIGIN 'OpenDS Directory Server' X-SCHEMA-FILE '02-config.ldif' )
+objectClasses: ( 2.16.840.1.113730.3.2.1 NAME 'changeLogEntry' SUP top STRUCTURAL MUST ( changeNumber $ targetDN $ changeType ) MAY ( changes $ newRDN $ deleteOldRDN $ newSuperior ) X-ORIGIN 'draft-good-ldap-changelog' X-SCHEMA-FILE '03-changelog.ldif' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.1 NAME 'javaContainer' DESC 'Container for a Java object' SUP top STRUCTURAL MUST ( cn ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.4 NAME 'javaObject' DESC 'Java object representation' SUP top ABSTRACT MUST ( javaClassName ) MAY ( javaClassNames $ javaCodebase $ javaDoc $ description ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.5 NAME 'javaSerializedObject' DESC 'Java serialized object' SUP javaObject AUXILIARY MUST ( javaSerializedData ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.8 NAME 'javaMarshalledObject' DESC 'Java marshalled object' SUP javaObject AUXILIARY MUST ( javaSerializedData ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.7 NAME 'javaNamingReference' DESC 'JNDI reference' SUP javaObject AUXILIARY MAY ( javaReferenceAddress $ javaFactory ) X-ORIGIN 'RFC 2713' X-SCHEMA-FILE '03-rfc2713.ldif' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.9 NAME 'corbaObject' DESC 'CORBA object representation' SUP top ABSTRACT MAY ( corbaRepositoryId $ description ) X-ORIGIN 'RFC 2714' X-SCHEMA-FILE '03-rfc2714.ldif' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.10 NAME 'corbaContainer' DESC 'Container for a CORBA object' SUP top STRUCTURAL MUST ( cn ) X-ORIGIN 'RFC 2714' X-SCHEMA-FILE '03-rfc2714.ldif' )
+objectClasses: ( 1.3.6.1.4.1.42.2.27.4.2.11 NAME 'corbaObjectReference' DESC 'CORBA interoperable object reference' SUP corbaObject AUXILIARY MUST ( corbaIor ) X-ORIGIN 'RFC 2714' X-SCHEMA-FILE '03-rfc2714.ldif' )
+objectClasses: ( 1.2.840.113556.1.5.87 NAME 'calEntry' SUP top AUXILIARY MAY ( calCalURI $ calFBURL $ calOtherCalURIs $ calOtherFBURLs $ calCAPURI $ calOtherCAPURIs $ calCalAdrURI $ calOtherCalAdrURIs ) X-ORIGIN 'RFC 2739' X-SCHEMA-FILE '03-rfc2739.ldif' )
+objectClasses: ( 1.3.6.1.4.1.6252.2.27.6.2.1 NAME 'slpService' DESC 'parent superclass for SLP services' ABSTRACT SUP top MUST ( template-major-version-number $ template-minor-version-number $ description $ template-url-syntax $ service-advert-service-type $ service-advert-scopes ) MAY ( service-advert-url-authenticator $ service-advert-attribute-authenticator ) X-ORIGIN 'RFC 2926' X-SCHEMA-FILE '03-rfc2926.ldif' )
+objectClasses: ( 1.3.6.1.4.1.4203.1.4.7 NAME 'authPasswordObject' DESC 'authentication password mix in class' MAY authPassword AUXILIARY X-ORIGIN 'RFC 3112' X-SCHEMA-FILE '03-rfc3112.ldif' )
+objectClasses: ( 1.3.18.0.2.6.254 NAME 'slpServicePrinter' DESC 'Service Location Protocol (SLP) information.' AUXILIARY SUP slpService X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+objectClasses: ( 1.3.18.0.2.6.258 NAME 'printerAbstract' DESC 'Printer related information.' ABSTRACT SUP top MAY ( printer-name $ printer-natural-language-configured $ printer-location $ printer-info $ printer-more-info $ printer-make-and-model $ printer-multiple-document-jobs-supported $ printer-charset-configured $ printer-charset-supported $ printer-generated-natural-language-supported $ printer-document-format-supported $ printer-color-supported $ printer-compression-supported $ printer-pages-per-minute $ printer-pages-per-minute-color $ printer-finishings-supported $ printer-number-up-supported $ printer-sides-supported $ printer-media-supported $ printer-media-local-supported $ printer-resolution-supported $ printer-print-quality-supported $ printer-job-priority-supported $ printer-copies-supported $ printer-job-k-octets-supported $ printer-current-operator $ printer-service-person $ printer-delivery-orientation-supported $ printer-stacking-order-supported $ printer-!
output-features-supported ) X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+objectClasses: ( 1.3.18.0.2.6.255 NAME 'printerService' DESC 'Printer information.' STRUCTURAL SUP printerAbstract MAY ( printer-uri $ printer-xri-supported ) X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+objectClasses: ( 1.3.18.0.2.6.257 NAME 'printerServiceAuxClass' DESC 'Printer information.' AUXILIARY SUP printerAbstract MAY ( printer-uri $ printer-xri-supported ) X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+objectClasses: ( 1.3.18.0.2.6.256 NAME 'printerIPP' DESC 'Internet Printing Protocol (IPP) information.' AUXILIARY SUP top MAY ( printer-ipp-versions-supported $ printer-multiple-document-jobs-supported ) X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+objectClasses: ( 1.3.18.0.2.6.253 NAME 'printerLPR' DESC 'LPR information.' AUXILIARY SUP top MUST ( printer-name ) MAY ( printer-aliases ) X-ORIGIN 'RFC 3712' X-SCHEMA-FILE '03-rfc3712.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.1 NAME 'uddiBusinessEntity' SUP top STRUCTURAL MUST ( uddiBusinessKey $ uddiName ) MAY ( uddiAuthorizedName $ uddiOperator $ uddiDiscoveryURLs $ uddiDescription $ uddiIdentifierBag $ uddiCategoryBag $uddiv3BusinessKey $ uddiv3DigitalSignature $ uddiv3EntityModificationTime $ uddiv3NodeId ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.2 NAME 'uddiContact' SUP top STRUCTURAL MUST ( uddiPersonName $ uddiUUID ) MAY ( uddiUseType $ uddiDescription $ uddiPhone $ uddiEMail ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.3 NAME 'uddiAddress' SUP top STRUCTURAL MUST ( uddiUUID ) MAY ( uddiUseType $ uddiSortCode $ uddiTModelKey $ uddiv3TmodelKey $ uddiAddressLine $ uddiLang ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.4 NAME 'uddiBusinessService' SUP top STRUCTURAL MUST ( uddiServiceKey ) MAY ( uddiName $ uddiBusinessKey $ uddiDescription $ uddiCategoryBag $ uddiIsProjection $ uddiv3ServiceKey $ uddiv3BusinessKey $ uddiv3DigitalSignature $ uddiv3EntityCreationTime $ uddiv3EntityModificationTime $ uddiv3NodeId ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.5 NAME 'uddiBindingTemplate' SUP top STRUCTURAL MUST ( uddiBindingKey ) MAY ( uddiServiceKey $ uddiDescription $ uddiAccessPoint $ uddiHostingRedirector $ uddiCategoryBag $ uddiv3BindingKey $ uddiv3ServiceKey $ uddiv3DigitalSignature $ uddiv3EntityCreationTime $ uddiv3NodeId ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.6 NAME 'uddiTModelInstanceInfo' SUP top STRUCTURAL MUST ( uddiTModelKey ) MAY ( uddiDescription $ uddiInstanceDescription $ uddiInstanceParms $ uddiOverviewDescription $ uddiOverviewURL $ uddiv3TmodelKey ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.7 NAME 'uddiTModel' SUP top STRUCTURAL MUST ( uddiTModelKey $ uddiName ) MAY ( uddiAuthorizedName $ uddiOperator $ uddiDescription $ uddiOverviewDescription $ uddiOverviewURL $ uddiIdentifierBag $ uddiCategoryBag $ uddiIsHidden $ uddiv3TModelKey $ uddiv3DigitalSignature $ uddiv3NodeId ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.8 NAME 'uddiPublisherAssertion' SUP top STRUCTURAL MUST ( uddiFromKey $ uddiToKey $ uddiKeyedReference $ uddiUUID ) MAY ( uddiv3DigitalSignature $ uddiv3NodeId ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.9 NAME 'uddiv3Subscription' SUP top STRUCTURAL MUST ( uddiv3SubscriptionFilter $ uddiUUID ) MAY ( uddiAuthorizedName $ uddiv3SubscriptionKey $ uddiv3BindingKey $ uddiv3NotificationInterval $ uddiv3MaxEntities $ uddiv3ExpiresAfter $ uddiv3BriefResponse $ uddiv3NodeId ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.10.6.10 NAME 'uddiv3EntityObituary' SUP top STRUCTURAL MUST ( uddiv3EntityKey $ uddiUUID ) MAY ( uddiAuthorizedName $ uddiv3EntityCreationTime $ uddiv3EntityDeletionTime $ uddiv3NodeId ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.0 NAME 'posixAccount' SUP top AUXILIARY DESC 'Abstraction of an account with POSIX attributes' MUST ( cn $ uid $ uidNumber $ gidNumber $ homeDirectory ) MAY ( authPassword $ userPassword $ loginShell $ gecos $ description ) X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.1 NAME 'shadowAccount' SUP top AUXILIARY DESC 'Additional attributes for shadow passwords' MUST uid MAY ( authPassword $ userPassword $ description $ shadowLastChange $ shadowMin $ shadowMax $ shadowWarning $ shadowInactive $ shadowExpire $ shadowFlag ) X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.2 NAME 'posixGroup' SUP top AUXILIARY DESC 'Abstraction of a group of accounts' MUST gidNumber MAY ( authPassword $ userPassword $ memberUid $ description ) X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.3 NAME 'ipService' SUP top STRUCTURAL DESC 'Abstraction an Internet Protocol service. Maps an IP port and protocol (such as tcp or udp) to one or more names; the distinguished value of the cn attribute denotes the canonical name of the service' MUST ( cn $ ipServicePort $ ipServiceProtocol ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.4 NAME 'ipProtocol' SUP top STRUCTURAL DESC 'Abstraction of an IP protocol. Maps a protocol number to one or more names. The distinguished value of the cn attribute denotes the canonical name of the protocol' MUST ( cn $ ipProtocolNumber ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.5 NAME 'oncRpc' SUP top STRUCTURAL DESC 'Abstraction of an Open Network Computing (ONC) [RFC1057] Remote Procedure Call (RPC) binding. This class maps an ONC RPC number to a name. The distinguished value of the cn attribute denotes the canonical name of the RPC service' MUST ( cn $ oncRpcNumber ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.6 NAME 'ipHost' SUP top AUXILIARY DESC 'Abstraction of a host, an IP device. The distinguished value of the cn attribute denotes the canonical name of the host. Device SHOULD be used as a structural class' MUST ( cn $ ipHostNumber ) MAY ( authPassword $ userPassword $ l $ description $ manager ) X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.7 NAME 'ipNetwork' SUP top STRUCTURAL DESC 'Abstraction of a network. The distinguished value of the cn attribute denotes the canonical name of the network' MUST ipNetworkNumber MAY ( cn $ ipNetmaskNumber $ l $ description $ manager ) X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.8 NAME 'nisNetgroup' SUP top STRUCTURAL DESC 'Abstraction of a netgroup. May refer to other netgroups' MUST cn MAY ( nisNetgroupTriple $ memberNisNetgroup $ description ) X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.9 NAME 'nisMap' SUP top STRUCTURAL DESC 'A generic abstraction of a NIS map' MUST nisMapName MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.10 NAME 'nisObject' SUP top STRUCTURAL DESC 'An entry in a NIS map' MUST ( cn $ nisMapEntry $ nisMapName ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.11 NAME 'ieee802Device' SUP top AUXILIARY DESC 'A device with a MAC address; device SHOULD be used as a structural class' MAY macAddress X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.12 NAME 'bootableDevice' SUP top AUXILIARY DESC 'A device with boot parameters; device SHOULD be used as a structural class' MAY ( bootFile $ bootParameter ) X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.14 NAME 'nisKeyObject' SUP top AUXILIARY DESC 'An object with a public and secret key' MUST ( cn $ nisPublicKey $ nisSecretKey ) MAY ( uidNumber $ description ) X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.15 NAME 'nisDomainObject' SUP top AUXILIARY DESC 'Associates a NIS domain with a naming context' MUST nisDomain X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.16 NAME 'automountMap' SUP top STRUCTURAL MUST ( automountMapName ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+objectClasses: ( 1.3.6.1.1.1.2.17 NAME 'automount' SUP top STRUCTURAL DESC 'Automount information' MUST ( automountKey $ automountInformation ) MAY description X-ORIGIN 'draft-howard-rfc2307bis' X-SCHEMA-FILE '04-rfc2307bis.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.1 NAME 'uddiBusinessEntityNameForm' OC uddiBusinessEntity MUST ( uddiBusinessKey ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.2 NAME 'uddiContactNameForm' OC uddiContact MUST ( uddiUUID ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.3 NAME 'uddiAddressNameForm' OC uddiAddress MUST ( uddiUUID ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.4 NAME 'uddiBusinessServiceNameForm' OC uddiBusinessService MUST ( uddiServiceKey ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.5 NAME 'uddiBindingTemplateNameForm' OC uddiBindingTemplate MUST ( uddiBindingKey ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.6 NAME 'uddiTModelInstanceInfoNameForm' OC uddiTModelInstanceInfo MUST ( uddiTModelKey ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.7 NAME 'uddiTModelNameForm' OC uddiTModel MUST ( uddiTModelKey ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.8 NAME 'uddiPublisherAssertionNameForm' OC uddiPublisherAssertion MUST ( uddiUUID ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.9 NAME 'uddiv3SubscriptionNameForm' OC uddiv3Subscription MUST ( uddiUUID ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+nameForms: ( 1.3.6.1.1.10.15.10 NAME 'uddiv3EntityObituaryNameForm' OC uddiv3EntityObituary MUST ( uddiUUID ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 1 NAME 'uddiBusinessEntityStructureRule' FORM uddiBusinessEntityNameForm X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 2 NAME 'uddiContactStructureRule' FORM uddiContactNameForm SUP ( 1 ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 3 NAME 'uddiAddressStructureRule' FORM uddiAddressNameForm SUP ( 2 ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 4 NAME 'uddiBusinessServiceStructureRule' FORM uddiBusinessServiceNameForm SUP ( 1 ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 5 NAME 'uddiBindingTemplateStructureRule' FORM uddiBindingTemplateNameForm SUP ( 4 ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 6 NAME 'uddiTModelInstanceInfoStructureRule' FORM uddiTModelInstanceInfoNameForm SUP ( 5 ) X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 7 NAME 'uddiTModelStructureRule' FORM uddiTModelNameForm X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 8 NAME 'uddiPublisherAssertionStructureRule' FORM uddiPublisherAssertionNameForm X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 9 NAME 'uddiv3SubscriptionStructureRule' FORM uddiv3SubscriptionNameForm X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
+dITStructureRules: ( 10 NAME 'uddiv3EntityObituaryStructureRule' FORM uddiv3EntityObituaryNameForm X-ORIGIN 'RFC 4403' X-SCHEMA-FILE '03-uddiv3.ldif' )
Added: idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/00000000.jdb
===================================================================
(Binary files differ)
Property changes on: idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/00000000.jdb
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/je.info.0
===================================================================
--- idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/je.info.0 (rev 0)
+++ idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/je.info.0 2009-01-17 00:37:52 UTC (rev 225)
@@ -0,0 +1,10 @@
+Jul 29, 2008 11:57:15 AM com.sleepycat.je.utilint.Tracer trace
+CONFIG: Recovery w/no files.
+Jul 29, 2008 11:57:15 AM com.sleepycat.je.utilint.Tracer trace
+CONFIG: Checkpoint 1: source=recovery success=true nFullINFlushThisRun=4 nDeltaINFlushThisRun=0
+Jul 29, 2008 11:57:15 AM com.sleepycat.je.utilint.Tracer trace
+CONFIG: Recovery finished: Recovery Infonull> useMaxNodeId=0 useMaxDbId=0 useMaxTxnId=0 numMapINs=0 numOtherINs=0 numBinDeltas=0 numDuplicateINs=0 lnFound=0 lnNotFound=0 lnInserted=0 lnReplaced=0 nRepeatIteratorReads=0
+Jul 29, 2008 11:57:16 AM com.sleepycat.je.utilint.Tracer trace
+CONFIG: Checkpoint 2: source=api success=true nFullINFlushThisRun=5 nDeltaINFlushThisRun=0
+Jul 29, 2008 11:57:16 AM com.sleepycat.je.utilint.Tracer trace
+CONFIG: Checkpoint 3: source=close success=true nFullINFlushThisRun=4 nDeltaINFlushThisRun=0
Added: idm/trunk/example/maven2/src/test/resources/opends/db/userRoot/je.lck
===================================================================
Added: idm/trunk/example/maven2/src/test/resources/opends/locks/backend-userRoot.lock
===================================================================
Added: idm/trunk/example/maven2/src/test/resources/opends/locks/server.lock
===================================================================
Added: idm/trunk/example/maven2/src/test/resources/opends/logs/access
===================================================================
Added: idm/trunk/example/maven2/src/test/resources/opends/logs/server
===================================================================
Modified: idm/trunk/parent/pom.xml
===================================================================
--- idm/trunk/parent/pom.xml 2009-01-16 21:37:00 UTC (rev 224)
+++ idm/trunk/parent/pom.xml 2009-01-17 00:37:52 UTC (rev 225)
@@ -23,8 +23,8 @@
<url>http://www.jboss.org</url>
</organization>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossidentity/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossidentity/trunk</developerConnection>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossidentity/idm/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossidentity/idm/trunk</developerConnection>
</scm>
<build>
17 years, 4 months
JBoss Identity SVN: r224 - identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp.
by jboss-identity-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2009-01-16 16:37:00 -0500 (Fri, 16 Jan 2009)
New Revision: 224
Modified:
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectSignatureFormAuthenticator.java
Log:
add sig verification at SP end
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java 2009-01-16 21:04:55 UTC (rev 223)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java 2009-01-16 21:37:00 UTC (rev 224)
@@ -182,6 +182,11 @@
sb.append("&RelayState=").append(urlEncodedRelayState);
return sb.toString();
}
+
+ protected boolean validate(Request request) throws Exception
+ {
+ return request.getParameter("SAMLResponse") != null;
+ }
private Principal process(Request request, Response response) throws Exception
{
@@ -190,6 +195,8 @@
String samlResponse = request.getParameter("SAMLResponse");
if(samlResponse != null && samlResponse.length() > 0 )
{
+ this.validate(request);
+
//deal with SAML response from IDP
byte[] base64DecodedResponse = Base64.decode(samlResponse);
InputStream is = DeflateUtil.decode(base64DecodedResponse);
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectSignatureFormAuthenticator.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectSignatureFormAuthenticator.java 2009-01-16 21:04:55 UTC (rev 223)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectSignatureFormAuthenticator.java 2009-01-16 21:37:00 UTC (rev 224)
@@ -29,8 +29,10 @@
import java.security.PrivateKey;
import java.security.PublicKey;
+import org.apache.catalina.connector.Request;
import org.jboss.identity.federation.bindings.util.RedirectBindingSignatureUtil;
import org.jboss.identity.federation.bindings.util.cert.KeyStoreUtil;
+import org.jboss.identity.federation.core.saml.v2.util.SignatureUtil;
/**
* Tomcat Authenticator for the HTTP/Redirect
@@ -64,7 +66,38 @@
{
this.alias = alias;
}
+
+ protected boolean validate(Request request) throws Exception
+ {
+ boolean result = super.validate(request);
+ if( result == false)
+ return result;
+
+ String queryString = request.getQueryString();
+ //Check if there is a signature
+ byte[] sigValue = RedirectBindingSignatureUtil.getSignatureValueFromSignedURL(queryString);
+ if(sigValue == null)
+ return false;
+
+ //Construct the url again
+ String reqFromURL = RedirectBindingSignatureUtil.getTokenValue(queryString, "SAMLResponse");
+ String relayStateFromURL = RedirectBindingSignatureUtil.getTokenValue(queryString, "RelayState");
+ String sigAlgFromURL = RedirectBindingSignatureUtil.getTokenValue(queryString, "SigAlg");
+ StringBuilder sb = new StringBuilder();
+ sb.append("SAMLResponse=").append(reqFromURL);
+
+ if(relayStateFromURL != null && relayStateFromURL.length() > 0)
+ {
+ sb.append("&RelayState=").append(relayStateFromURL);
+ }
+ sb.append("&SigAlg=").append(sigAlgFromURL);
+
+ PublicKey validatingKey = getValidatingKey();
+ boolean isValid = SignatureUtil.validate(sb.toString().getBytes("UTF-8"), sigValue, validatingKey);
+ return isValid;
+ }
+
@Override
protected String getDestination(String urlEncodedRequest, String urlEncodedRelayState)
{
17 years, 4 months
JBoss Identity SVN: r223 - in identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings: jboss and 4 other directories.
by jboss-identity-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2009-01-16 16:04:55 -0500 (Fri, 16 Jan 2009)
New Revision: 223
Added:
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/DefaultJBossSubjectRegistration.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/JBossSubjectRegistration.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/SecurityActions.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/subject/
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/subject/JBossIdentityGroup.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/subject/JBossIdentityPrincipal.java
Modified:
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingSignatureUtil.java
Log:
correct jboss registration as well as signing SAMLResponse
Added: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/DefaultJBossSubjectRegistration.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/DefaultJBossSubjectRegistration.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/DefaultJBossSubjectRegistration.java 2009-01-16 21:04:55 UTC (rev 223)
@@ -0,0 +1,73 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.federation.bindings.jboss;
+
+import java.lang.reflect.Method;
+import java.security.acl.Group;
+
+import javax.security.auth.Subject;
+
+import org.apache.catalina.realm.GenericPrincipal;
+import org.apache.log4j.Logger;
+import org.jboss.identity.federation.bindings.jboss.subject.JBossIdentityGroup;
+import org.jboss.identity.federation.bindings.jboss.subject.JBossIdentityPrincipal;
+
+/**
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Jan 16, 2009
+ */
+public class DefaultJBossSubjectRegistration implements JBossSubjectRegistration
+{
+ protected Logger log = Logger.getLogger(DefaultJBossSubjectRegistration.class);
+
+ public void register(GenericPrincipal principal)
+ {
+ String sa = "org.jboss.security.SecurityAssociation";
+ try
+ {
+ Class<?> securityAssociationClass = SecurityActions.getContextClassLoader().loadClass(sa);
+ Method m = securityAssociationClass.getDeclaredMethod("setSubject", new Class[] {Subject.class});
+ Subject subject = this.getJBossSubjectFromTomcatPrincipal(principal);
+ m.invoke(null, subject);
+ }
+ catch(Exception e)
+ {
+ log.trace("Not a JBoss environment. So not registering in SecurityAssociation");
+ }
+ }
+
+ private Subject getJBossSubjectFromTomcatPrincipal(GenericPrincipal principal)
+ {
+ Subject subject = new Subject();
+ String[] roles = principal.getRoles();
+
+ subject.getPrincipals().add(new JBossIdentityPrincipal(principal.getName()));
+
+ Group roleGroup = new JBossIdentityGroup("Roles");
+ for(String role: roles)
+ {
+ roleGroup.addMember(new JBossIdentityPrincipal(role));
+ }
+
+ return subject;
+ }
+}
\ No newline at end of file
Added: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/JBossSubjectRegistration.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/JBossSubjectRegistration.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/JBossSubjectRegistration.java 2009-01-16 21:04:55 UTC (rev 223)
@@ -0,0 +1,39 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.federation.bindings.jboss;
+
+import org.apache.catalina.realm.GenericPrincipal;
+
+/**
+ * Register Tomcat Principal/Roles with the JBoss Setup.
+ * Mainly for propagation of identity to other containers.
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Jan 16, 2009
+ */
+public interface JBossSubjectRegistration
+{
+ /**
+ * Register the Tomcat Principal
+ * @param principal
+ */
+ void register(GenericPrincipal principal);
+}
\ No newline at end of file
Added: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/SecurityActions.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/SecurityActions.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/SecurityActions.java 2009-01-16 21:04:55 UTC (rev 223)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.federation.bindings.jboss;
+
+import java.security.AccessController;
+import java.security.PrivilegedAction;
+
+/**
+ * Privileged Blocks
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Dec 9, 2008
+ */
+class SecurityActions
+{
+ /**
+ * Get the Thread Context ClassLoader
+ * @return
+ */
+ static ClassLoader getContextClassLoader()
+ {
+ return AccessController.doPrivileged(new PrivilegedAction<ClassLoader>()
+ {
+ public ClassLoader run()
+ {
+ return Thread.currentThread().getContextClassLoader();
+ }
+ });
+ }
+}
Added: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/subject/JBossIdentityGroup.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/subject/JBossIdentityGroup.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/subject/JBossIdentityGroup.java 2009-01-16 21:04:55 UTC (rev 223)
@@ -0,0 +1,66 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.federation.bindings.jboss.subject;
+
+import java.security.Principal;
+import java.security.acl.Group;
+import java.util.Collections;
+import java.util.Enumeration;
+import java.util.HashSet;
+import java.util.Set;
+
+/**
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Jan 16, 2009
+ */
+public class JBossIdentityGroup extends JBossIdentityPrincipal implements Group
+{
+ private static final long serialVersionUID = 1L;
+
+ private Set<Principal> roles = new HashSet<Principal>();
+
+ public JBossIdentityGroup(String name)
+ {
+ super(name);
+ }
+
+ public boolean addMember(Principal user)
+ {
+ return roles.add(user);
+ }
+
+ public boolean isMember(Principal member)
+ {
+ return roles.contains(member);
+ }
+
+ public Enumeration<? extends Principal> members()
+ {
+ Set<Principal> readOnly = Collections.unmodifiableSet(roles);
+ return Collections.enumeration(readOnly);
+ }
+
+ public boolean removeMember(Principal user)
+ {
+ return roles.remove(user);
+ }
+}
\ No newline at end of file
Added: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/subject/JBossIdentityPrincipal.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/subject/JBossIdentityPrincipal.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/jboss/subject/JBossIdentityPrincipal.java 2009-01-16 21:04:55 UTC (rev 223)
@@ -0,0 +1,47 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.federation.bindings.jboss.subject;
+
+import java.io.Serializable;
+import java.security.Principal;
+
+/**
+ * Simple Principal
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Jan 16, 2009
+ */
+public class JBossIdentityPrincipal implements Principal,Serializable
+{
+ private static final long serialVersionUID = 1L;
+
+ protected String name;
+
+ public JBossIdentityPrincipal(String name)
+ {
+ this.name = name;
+ }
+
+ public String getName()
+ {
+ return null;
+ }
+}
\ No newline at end of file
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java 2009-01-16 14:09:52 UTC (rev 222)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java 2009-01-16 21:04:55 UTC (rev 223)
@@ -108,18 +108,24 @@
{
try
{
+ this.validate(request);
SAML2Response saml2Response = new SAML2Response();
ResponseType responseType = this.getResponse(request, userPrincipal);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
saml2Response.marshall(responseType, baos);
- String encodedResponse = RedirectBindingUtil.deflateBase64URLEncode(baos.toByteArray());
+ String urlEncodedResponse = RedirectBindingUtil.deflateBase64URLEncode(baos.toByteArray());
String destination = responseType.getDestination();
log.trace("IDP:Destination=" + destination);
- HTTPRedirectUtil.sendRedirectForResponder(destination + "?SAMLResponse=" + encodedResponse,response);
+ String relayState = request.getParameter("RelayState");
+ if(relayState != null && relayState.length() > 0)
+ relayState = RedirectBindingUtil.urlEncode(relayState);
+
+ String finalDest = destination + this.getDestination(urlEncodedResponse, relayState);
+ HTTPRedirectUtil.sendRedirectForResponder(finalDest, response);
}
catch (Exception e)
{
@@ -136,6 +142,15 @@
}
}
}
+
+ protected String getDestination(String urlEncodedResponse, String urlEncodedRelayState)
+ {
+ StringBuilder sb = new StringBuilder();
+ sb.append("?SAMLResponse=").append(urlEncodedResponse);
+ if(urlEncodedRelayState != null && urlEncodedRelayState.length() > 0)
+ sb.append("&RelayState=").append(urlEncodedRelayState);
+ return sb.toString();
+ }
protected boolean validate(Request request) throws Exception
{
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java 2009-01-16 14:09:52 UTC (rev 222)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java 2009-01-16 21:04:55 UTC (rev 223)
@@ -29,7 +29,7 @@
import java.security.PrivateKey;
import java.security.PublicKey;
-import org.apache.catalina.connector.Request;
+import org.apache.catalina.connector.Request;
import org.jboss.identity.federation.bindings.util.RedirectBindingSignatureUtil;
import org.jboss.identity.federation.bindings.util.cert.KeyStoreUtil;
import org.jboss.identity.federation.core.saml.v2.util.SignatureUtil;
@@ -43,19 +43,21 @@
*/
public class IDPRedirectWithSignatureValve extends IDPRedirectValve
{
- private String keyStorePass;
private String keyStore;
private char[] keypass;
private String alias;
+ private String keyStorePass;
+
+ private KeyStore ks = null;
public void setKeyStore(String keyStore)
{
this.keyStore = keyStore;
}
- public void setKeyStorePass(String ksPass)
+ public void setKeyStorePass(String keyStorePass)
{
- this.keyStorePass = ksPass;
+ this.keyStorePass = keyStorePass;
}
public void setKeyPass(String keypass)
@@ -99,6 +101,24 @@
return isValid;
}
+ @Override
+ protected String getDestination(String urlEncodedResponse, String urlEncodedRelayState)
+ {
+ try
+ {
+ //Get the signing key
+ PrivateKey signingKey = getSigningKey();
+ StringBuffer sb = new StringBuffer();
+ String url = RedirectBindingSignatureUtil.getSAMLResponseURLWithSignature(urlEncodedResponse, urlEncodedRelayState, signingKey);
+ sb.append("?").append(url);
+ return sb.toString();
+ }
+ catch(Exception e)
+ {
+ throw new RuntimeException(e);
+ }
+ }
+
private InputStream getKeyStoreInputStream()
{
InputStream is = null;
@@ -128,15 +148,21 @@
protected PrivateKey getSigningKey() throws Exception
{
- InputStream is = this.getKeyStoreInputStream();
- KeyStore ks = KeyStoreUtil.getKeyStore(is, keypass);
+ if(ks == null)
+ {
+ InputStream is = this.getKeyStoreInputStream();
+ ks = KeyStoreUtil.getKeyStore(is, keyStorePass.toCharArray());
+ }
return (PrivateKey) ks.getKey(alias, keypass);
}
protected PublicKey getValidatingKey() throws Exception
{
- InputStream is = this.getKeyStoreInputStream();
- KeyStore ks = KeyStoreUtil.getKeyStore(is, keyStorePass.toCharArray());
- return KeyStoreUtil.getPublicKey(ks, alias, keypass);
+ if(ks == null)
+ {
+ InputStream is = this.getKeyStoreInputStream();
+ ks = KeyStoreUtil.getKeyStore(is, keyStorePass.toCharArray());
+ }
+ return KeyStoreUtil.getPublicKey(ks, alias, keypass);
}
}
\ No newline at end of file
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java 2009-01-16 14:09:52 UTC (rev 222)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java 2009-01-16 21:04:55 UTC (rev 223)
@@ -24,15 +24,8 @@
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
-import java.lang.reflect.Method;
import java.security.Principal;
-import java.security.acl.Group;
-import java.util.Collections;
-import java.util.Enumeration;
-import java.util.HashSet;
-import java.util.Set;
-import javax.security.auth.Subject;
import javax.servlet.ServletException;
import org.apache.catalina.Session;
@@ -47,6 +40,8 @@
import org.jboss.identity.federation.api.saml.v2.response.SAML2Response;
import org.jboss.identity.federation.api.util.Base64;
import org.jboss.identity.federation.api.util.DeflateUtil;
+import org.jboss.identity.federation.bindings.jboss.DefaultJBossSubjectRegistration;
+import org.jboss.identity.federation.bindings.jboss.JBossSubjectRegistration;
import org.jboss.identity.federation.bindings.util.HTTPRedirectUtil;
import org.jboss.identity.federation.bindings.util.RedirectBindingUtil;
import org.jboss.identity.federation.core.saml.v2.exceptions.AssertionExpiredException;
@@ -67,6 +62,9 @@
private String serviceURL = null;
private String identityURL = null;
+
+ //Only important if you are deploying in JBoss environment
+ private JBossSubjectRegistration jbossRegistration = new DefaultJBossSubjectRegistration();
public void setIdentityURL(String url)
{
@@ -77,6 +75,19 @@
{
this.serviceURL = url;
}
+
+ /**
+ * For JBoss Deployment, you can change the value of
+ * the {@code}JBossSubjectRegistration class
+ * @param fqn
+ * @throws Exception
+ */
+ public void setJBossSubjectRegistration(String fqn) throws Exception
+ {
+ ClassLoader tcl = SecurityActions.getContextClassLoader();
+ Class<?> clazz = tcl.loadClass(fqn);
+ this.jbossRegistration = (JBossSubjectRegistration) clazz.newInstance();
+ }
@Override
public boolean authenticate(Request request, Response response, LoginConfig loginConfig) throws IOException
@@ -110,7 +121,7 @@
register(request, response, p, Constants.FORM_METHOD, username, password);
//Also register in JBoss SecurityAssociation
- this.registerInJBoss(p);
+ this.jbossRegistration.register((GenericPrincipal) principal);
return true;
}
@@ -179,7 +190,7 @@
String samlResponse = request.getParameter("SAMLResponse");
if(samlResponse != null && samlResponse.length() > 0 )
{
- //deal with saml response from IDP
+ //deal with SAML response from IDP
byte[] base64DecodedResponse = Base64.decode(samlResponse);
InputStream is = DeflateUtil.decode(base64DecodedResponse);
@@ -192,92 +203,4 @@
}
return userPrincipal;
}
-
- /**
- * JBoss specific code that uses reflection
- */
- private void registerInJBoss(Principal gp)
- {
- if(gp instanceof GenericPrincipal == false)
- {
- log.error("Principal is not of type GenericPrincipal. So cannot get to roles");
- return;
- }
-
- String sa = "org.jboss.security.SecurityAssociation";
- try
- {
- Class<?> securityAssociationClass = SecurityActions.getContextClassLoader().loadClass(sa);
- Method m = securityAssociationClass.getDeclaredMethod("setSubject", new Class[] {Subject.class});
- Subject subject = this.getJBossSubjectFromTomcatPrincipal(gp);
- m.invoke(null, subject);
- }
- catch(Exception e)
- {
- log.trace("Not a JBoss environment. So not registering in SecurityAssociation");
- }
- }
-
- private Subject getJBossSubjectFromTomcatPrincipal(final Principal principal)
- {
- GenericPrincipal gp = (GenericPrincipal) principal;
- final String[] roles = gp.getRoles();
- final Set<Principal> rolePrincipals = new HashSet<Principal>();
-
- for(final String role : roles)
- {
- rolePrincipals.add(new Principal()
- {
- public String getName()
- {
- return role;
- }
- });
- }
-
- Subject subject = new Subject();
-
- Principal userPrincipal = new Principal()
- {
- public String getName()
- {
- return principal.getName();
- }
- };
- subject.getPrincipals().add(userPrincipal);
-
- //Add the role group
- Group roleGroup = new Group()
- {
- public boolean addMember(Principal user)
- {
- return rolePrincipals.add(user);
- }
-
- public boolean isMember(Principal member)
- {
- return rolePrincipals.contains(member);
- }
-
- public Enumeration<? extends Principal> members()
- {
- return Collections.enumeration(rolePrincipals);
- }
-
- public boolean removeMember(Principal user)
- {
- return rolePrincipals.remove(user);
- }
-
- public String getName()
- {
- return "Roles";
- }
- };
-
- subject.getPrincipals().add(roleGroup);
-
- return subject;
- }
-
}
\ No newline at end of file
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingSignatureUtil.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingSignatureUtil.java 2009-01-16 14:09:52 UTC (rev 222)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingSignatureUtil.java 2009-01-16 21:04:55 UTC (rev 223)
@@ -26,8 +26,10 @@
import java.security.PrivateKey;
import org.jboss.identity.federation.api.saml.v2.request.SAML2Request;
+import org.jboss.identity.federation.api.saml.v2.response.SAML2Response;
import org.jboss.identity.federation.core.saml.v2.util.SignatureUtil;
import org.jboss.identity.federation.saml.v2.protocol.AuthnRequestType;
+import org.jboss.identity.federation.saml.v2.protocol.ResponseType;
/**
@@ -68,6 +70,35 @@
}
/**
+ * Get the URL for the SAML request that contains the signature and signature algorithm
+ * @param responseType
+ * @param relayState
+ * @param signingKey
+ * @return
+ * @throws Exception
+ */
+ public static String getSAMLResponseURLWithSignature(ResponseType responseType, String relayState,
+ PrivateKey signingKey) throws Exception
+ {
+ SAML2Response saml2Response = new SAML2Response();
+
+ // Deal with the original request
+ StringWriter sw = new StringWriter();
+ saml2Response.marshall(responseType, sw);
+
+ //URL Encode the Request
+ String urlEncodedResponse = RedirectBindingUtil.deflateBase64URLEncode(sw.toString());
+
+ String urlEncodedRelayState = null;
+ if(relayState != null && relayState.length() > 0 )
+ urlEncodedRelayState = URLEncoder.encode(relayState, "UTF-8");
+
+ byte[] sigValue = computeSignature(urlEncodedResponse, urlEncodedRelayState, signingKey);
+
+ //Now construct the URL
+ return getResponseRedirectURLWithSignature(urlEncodedResponse, urlEncodedRelayState, sigValue, signingKey.getAlgorithm());
+ }
+ /**
* Given an url-encoded saml request and relay state and a private key, compute the url
* @param urlEncodedRequest
* @param urlEncodedRelayState
@@ -83,6 +114,21 @@
}
/**
+ * Given an url-encoded saml response and relay state and a private key, compute the url
+ * @param urlEncodedResponse
+ * @param urlEncodedRelayState
+ * @param signingKey
+ * @return
+ * @throws Exception
+ */
+ public static String getSAMLResponseURLWithSignature(String urlEncodedResponse, String urlEncodedRelayState,
+ PrivateKey signingKey) throws Exception
+ {
+ byte[] sigValue = computeSignature(urlEncodedResponse, urlEncodedRelayState, signingKey);
+ return getResponseRedirectURLWithSignature(urlEncodedResponse, urlEncodedRelayState, sigValue, signingKey.getAlgorithm());
+ }
+
+ /**
* From the SAML Request URL, get the Request object
* @param signedURL
* @return
@@ -171,6 +217,30 @@
return sb.toString();
}
+ private static String getResponseRedirectURLWithSignature(
+ String urlEncodedResponse, String urlEncodedRelayState, byte[] signature, String sigAlgo) throws Exception
+ {
+ StringBuilder sb = new StringBuilder();
+ sb.append("SAMLResponse=").append(urlEncodedResponse);
+ if(urlEncodedRelayState != null && urlEncodedRelayState.length() > 0)
+ {
+ sb.append("&").append("RelayState=").append(urlEncodedRelayState);
+ }
+ //SigAlg
+ String sigAlg = SignatureUtil.getXMLSignatureAlgorithmURI(sigAlgo);
+
+ sigAlg = URLEncoder.encode(sigAlg, "UTF-8");
+
+ sb.append("&").append("SigAlg=").append(sigAlg);
+
+ //Encode the signature value
+ String encodedSig = RedirectBindingUtil.base64URLEncode(signature);
+
+ sb.append("&").append("Signature=").append(encodedSig);
+
+ return sb.toString();
+ }
+
private static String getToken(String queryString, String token)
{
if(queryString == null)
17 years, 4 months
JBoss Identity SVN: r222 - in idm/trunk: assembly and 5 other directories.
by jboss-identity-commits@lists.jboss.org
Author: bdaw
Date: 2009-01-16 09:09:52 -0500 (Fri, 16 Jan 2009)
New Revision: 222
Added:
idm/trunk/idm-api/
idm/trunk/idm-common/
idm/trunk/idm-spi/
idm/trunk/idm/
Removed:
idm/trunk/identity-api/
idm/trunk/identity-common/
idm/trunk/identity-impl/
idm/trunk/identity-spi/
Modified:
idm/trunk/assembly/pom.xml
idm/trunk/assembly/sources.xml
idm/trunk/idm-api/pom.xml
idm/trunk/idm-common/pom.xml
idm/trunk/idm-spi/pom.xml
idm/trunk/idm/pom.xml
idm/trunk/parent/pom.xml
idm/trunk/pom.xml
Log:
packaging change
Modified: idm/trunk/assembly/pom.xml
===================================================================
--- idm/trunk/assembly/pom.xml 2009-01-16 13:49:44 UTC (rev 221)
+++ idm/trunk/assembly/pom.xml 2009-01-16 14:09:52 UTC (rev 222)
@@ -1,15 +1,15 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-parent</artifactId>
+ <artifactId>idm-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity</artifactId>
+ <artifactId>idm-assemply</artifactId>
<packaging>pom</packaging>
- <name>JBoss Identity - Assembly</name>
+ <name>JBoss Identity IDM - Assembly</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
<description>JBoss Identity</description>
<licenses>
Modified: idm/trunk/assembly/sources.xml
===================================================================
--- idm/trunk/assembly/sources.xml 2009-01-16 13:49:44 UTC (rev 221)
+++ idm/trunk/assembly/sources.xml 2009-01-16 14:09:52 UTC (rev 222)
@@ -5,17 +5,26 @@
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
+
<fileSet>
- <directory>${basedir}/../identity-model/src/main/java</directory>
+ <directory>${basedir}/../idm-common/src/main/java</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
<fileSet>
- <directory>${basedir}/../identity-api/src/main/java</directory>
+ <directory>${basedir}/../idm-model/src/main/java</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
<fileSet>
- <directory>${basedir}/../identity-impl/src/main/java</directory>
+ <directory>${basedir}/../idm-api/src/main/java</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
+ <fileSet>
+ <directory>${basedir}/../idm-spi/src/main/java</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>${basedir}/../idm/src/main/java</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
</fileSets>
</assembly>
Copied: idm/trunk/idm (from rev 221, idm/trunk/identity-impl)
Property changes on: idm/trunk/idm
___________________________________________________________________
Name: svn:ignore
+ target
Name: svn:mergeinfo
+
Modified: idm/trunk/idm/pom.xml
===================================================================
--- idm/trunk/identity-impl/pom.xml 2009-01-16 13:49:44 UTC (rev 221)
+++ idm/trunk/idm/pom.xml 2009-01-16 14:09:52 UTC (rev 222)
@@ -1,16 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-parent</artifactId>
+ <artifactId>idm-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
- <artifactId>jboss-identity-impl</artifactId>
+ <artifactId>idm</artifactId>
<packaging>jar</packaging>
- <name>JBoss Identity IMPL</name>
+ <name>JBoss Identity IDM Implementation</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
- <description>JBoss Identity IMPL contains the implementation of the API and the Identity Model.</description>
+ <description>JBoss Identity IDM IMPL contains the implementation of the API and the Identity Model.</description>
<licenses>
<license>
<name>lgpl</name>
@@ -30,17 +30,17 @@
<dependencies>
<dependency>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-common</artifactId>
+ <artifactId>idm-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-api</artifactId>
+ <artifactId>idm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-spi</artifactId>
+ <artifactId>idm-spi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Copied: idm/trunk/idm-api (from rev 221, idm/trunk/identity-api)
Property changes on: idm/trunk/idm-api
___________________________________________________________________
Name: svn:ignore
+ target
Name: svn:mergeinfo
+
Modified: idm/trunk/idm-api/pom.xml
===================================================================
--- idm/trunk/identity-api/pom.xml 2009-01-16 13:49:44 UTC (rev 221)
+++ idm/trunk/idm-api/pom.xml 2009-01-16 14:09:52 UTC (rev 222)
@@ -1,14 +1,14 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-parent</artifactId>
+ <artifactId>idm-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
- <artifactId>jboss-identity-api</artifactId>
+ <artifactId>idm-api</artifactId>
<packaging>jar</packaging>
- <name>JBoss Identity Model</name>
+ <name>JBoss Identity IDM API</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
<description>JBoss Identity API contains the API to interact with the Identity Model.</description>
<licenses>
@@ -29,7 +29,7 @@
<dependencies>
<dependency>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-common</artifactId>
+ <artifactId>idm-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Copied: idm/trunk/idm-common (from rev 221, idm/trunk/identity-common)
Property changes on: idm/trunk/idm-common
___________________________________________________________________
Name: svn:ignore
+ target
Name: svn:mergeinfo
+
Modified: idm/trunk/idm-common/pom.xml
===================================================================
--- idm/trunk/identity-common/pom.xml 2009-01-16 13:49:44 UTC (rev 221)
+++ idm/trunk/idm-common/pom.xml 2009-01-16 14:09:52 UTC (rev 222)
@@ -1,14 +1,14 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-parent</artifactId>
+ <artifactId>idm-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
- <artifactId>jboss-identity-common</artifactId>
+ <artifactId>idm-common</artifactId>
<packaging>jar</packaging>
- <name>JBoss Identity Common</name>
+ <name>JBoss Identity IDM Common</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
<description>JBoss Identity Common</description>
<licenses>
@@ -22,9 +22,9 @@
<url>http://www.jboss.org</url>
</organization>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossidentity/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/jbossidentity/trunk</developerConnection>
- <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossidentity/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossidentity/idm/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/jbossidentity/idm/trunk</developerConnection>
+ <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossidentity/idm/trunk</url>
</scm>
<dependencies>
Copied: idm/trunk/idm-spi (from rev 221, idm/trunk/identity-spi)
Property changes on: idm/trunk/idm-spi
___________________________________________________________________
Name: svn:ignore
+ target
Name: svn:mergeinfo
+
Modified: idm/trunk/idm-spi/pom.xml
===================================================================
--- idm/trunk/identity-spi/pom.xml 2009-01-16 13:49:44 UTC (rev 221)
+++ idm/trunk/idm-spi/pom.xml 2009-01-16 14:09:52 UTC (rev 222)
@@ -1,14 +1,14 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-parent</artifactId>
+ <artifactId>idm-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
- <artifactId>jboss-identity-spi</artifactId>
+ <artifactId>idm-spi</artifactId>
<packaging>jar</packaging>
- <name>JBoss Identity SPI</name>
+ <name>JBoss Identity IDM SPI</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
<description>JBoss Identity SPI</description>
<licenses>
@@ -29,7 +29,7 @@
<dependencies>
<dependency>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-common</artifactId>
+ <artifactId>idm-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Modified: idm/trunk/parent/pom.xml
===================================================================
--- idm/trunk/parent/pom.xml 2009-01-16 13:49:44 UTC (rev 221)
+++ idm/trunk/parent/pom.xml 2009-01-16 14:09:52 UTC (rev 222)
@@ -6,10 +6,10 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-parent</artifactId>
+ <artifactId>idm-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.0-SNAPSHOT</version>
- <name>JBoss Identity - Parent</name>
+ <name>JBoss Identity IDM- Parent</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
<description>JBoss Identity is a cross-cutting project that handles identity needs for the JEMS projects</description>
<licenses>
Modified: idm/trunk/pom.xml
===================================================================
--- idm/trunk/pom.xml 2009-01-16 13:49:44 UTC (rev 221)
+++ idm/trunk/pom.xml 2009-01-16 14:09:52 UTC (rev 222)
@@ -1,13 +1,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-parent</artifactId>
+ <artifactId>idm-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.identity</groupId>
- <artifactId>jboss-identity-pom</artifactId>
+ <artifactId>jboss-identity-idm-pom</artifactId>
<packaging>pom</packaging>
<name>JBoss Identity - Aggregator</name>
<url>http://labs.jboss.org/portal/jbosssecurity/</url>
@@ -15,10 +15,10 @@
<modules>
<module>parent</module>
- <module>identity-common</module>
- <module>identity-spi</module>
- <module>identity-api</module>
- <module>identity-impl</module>
+ <module>idm-common</module>
+ <module>idm-spi</module>
+ <module>idm-api</module>
+ <module>idm</module>
<module>assembly</module>
</modules>
17 years, 4 months
JBoss Identity SVN: r221 - in idm/trunk: identity-impl/src/main/java/org/jboss/identity/idm/impl/configuration/metadata and 4 other directories.
by jboss-identity-commits@lists.jboss.org
Author: bdaw
Date: 2009-01-16 08:49:44 -0500 (Fri, 16 Jan 2009)
New Revision: 221
Modified:
idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/configuration/jaxb2/JAXB2IdentityConfiguration.java
idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/configuration/metadata/IdentityRepositoryConfigurationMetaDataImpl.java
idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/repository/AbstractIdentityStoreRepository.java
idm/trunk/identity-impl/src/test/java/org/jboss/identity/idm/impl/configuration/ConfigurationTestCase.java
idm/trunk/identity-impl/src/test/resources/organization-test-config.xml
idm/trunk/identity-impl/src/test/resources/store-test-config.xml
idm/trunk/identity-impl/src/test/resources/test-config.xml
idm/trunk/identity-spi/src/main/java/org/jboss/identity/idm/spi/configuration/metadata/IdentityRepositoryConfigurationMetaData.java
Log:
checking if config is consistent
Modified: idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/configuration/jaxb2/JAXB2IdentityConfiguration.java
===================================================================
--- idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/configuration/jaxb2/JAXB2IdentityConfiguration.java 2009-01-16 04:49:18 UTC (rev 220)
+++ idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/configuration/jaxb2/JAXB2IdentityConfiguration.java 2009-01-16 13:49:44 UTC (rev 221)
@@ -36,6 +36,7 @@
import org.jboss.identity.idm.spi.configuration.metadata.IdentityConfigurationMetaData;
import org.jboss.identity.idm.spi.configuration.metadata.RelationshipMetaData;
import org.jboss.identity.idm.spi.configuration.metadata.IdentityObjectAttributeMetaData;
+import org.jboss.identity.idm.spi.configuration.metadata.IdentityObjectTypeMetaData;
import org.jboss.identity.idm.spi.exception.IdentityConfigurationException;
import org.jboss.identity.idm.impl.api.attribute.IdentityObjectAttributeMetaDataImpl;
import org.jboss.identity.idm.impl.configuration.jaxb2.generated.JbossIdentityType;
@@ -59,6 +60,8 @@
import java.util.Map;
import java.util.HashMap;
import java.util.LinkedList;
+import java.util.Set;
+import java.util.HashSet;
/**
* @author <a href="mailto:boleslaw.dawidowicz at redhat.com">Boleslaw Dawidowicz</a>
@@ -68,8 +71,16 @@
{
//TODO: check if configuration is consistent. Part of constraints should be checked by schema. Test cases needed :)
+ static Set<String> attributeTypes = new HashSet<String>();
+ static
+ {
+ attributeTypes.add("text");
+ attributeTypes.add("binary");
+ }
+
+
public static IdentityConfigurationMetaData createConfigurationMetaData(File xmlConfig) throws IdentityConfigurationException
{
@@ -126,6 +137,8 @@
configurationMD.getRealms().add(createRealmConfigurationMetaData(realmType));
}
}
+
+ checkDataConsistency(configurationMD);
return configurationMD;
@@ -344,4 +357,299 @@
return options;
}
+ public static void checkDataConsistency(IdentityConfigurationMetaData configurationMD) throws IdentityConfigurationException
+ {
+
+ // IdentityStore
+
+ if (configurationMD.getRepositories() == null || configurationMD.getIdentityStores().size() == 0)
+ {
+ throw new IdentityConfigurationException("No identity-store configured");
+ }
+
+ // Helper structure to keep track of all IdentityObjectType mappings in stores
+ Map<String, Set<String>> storeObjectTypeNameMappings = new HashMap<String, Set<String>>();
+
+ for (IdentityStoreConfigurationMetaData storeMD : configurationMD.getIdentityStores())
+ {
+
+ // id
+ if (storeMD.getId() == null || storeMD.getId().length() == 0)
+ {
+ throw new IdentityConfigurationException("identity-store name required");
+ }
+
+ // Helper structure containing all configured identity object type names
+
+ Set<String> storeObjectTypeNames = new HashSet<String>();
+ if (storeMD.getSupportedIdentityTypes() != null)
+ {
+ for (IdentityObjectTypeMetaData typeMD : storeMD.getSupportedIdentityTypes())
+ {
+ storeObjectTypeNames.add(typeMD.getName());
+ }
+ }
+
+ storeObjectTypeNameMappings.put(storeMD.getId(), storeObjectTypeNames);
+
+ // className
+ if (storeMD.getClassName() == null || storeMD.getClassName().length() == 0)
+ {
+ throw new IdentityConfigurationException("identity-store \"" + storeMD.getId() + "\" class name required");
+ }
+
+ // supported relationship types are not required but we gather the names to check consistency in other parts
+
+ Set<String> supportedRelTypes = new HashSet<String>();
+ if (storeMD.getSupportedRelationshipTypes() != null)
+ {
+ supportedRelTypes = new HashSet<String>(storeMD.getSupportedRelationshipTypes());
+ }
+
+ // all configured identity object types
+ if (storeMD.getSupportedIdentityTypes() == null || storeMD.getSupportedIdentityTypes().size() == 0)
+ {
+ throw new IdentityConfigurationException("identity-store \"" + storeMD.getId() + "\" doesn't have any supported " +
+ "identity-object-types configured");
+ }
+
+ // check each configured types
+ for (IdentityObjectTypeMetaData typeMD : storeMD.getSupportedIdentityTypes())
+ {
+ // Name
+ if (typeMD.getName() == null || typeMD.getName().length() == 0)
+ {
+ throw new IdentityConfigurationException("identity-store \"" + storeMD.getId() + "\" identity-object-type name" +
+ "is not specified");
+ }
+
+ // Attributes
+
+ if (typeMD.getAttributes() != null)
+ {
+ for (IdentityObjectAttributeMetaData attrMD : typeMD.getAttributes())
+ {
+ // Name
+ if (attrMD.getName() == null || attrMD.getName().length() == 0)
+ {
+ throw new IdentityConfigurationException("Attribute name not specified in identity-store \"" + storeMD.getId() + "\"");
+ }
+
+ if (attrMD.getType() == null || attrMD.getType().length() == 0)
+ {
+ throw new IdentityConfigurationException("Attribute type not specified for attribute \"" + attrMD.getName()
+ + "\" in identity-store \"" + storeMD.getId() + "\"");
+ }
+
+ if (!attributeTypes.contains(attrMD.getType()))
+ {
+ throw new IdentityConfigurationException("Unsupported attribute type in attribute \"" + attrMD.getName()
+ + "\" in identity-store \"" + storeMD.getId() + "\"");
+ }
+
+ }
+ }
+
+ // Relationships
+
+ if (typeMD.getRelationships() != null)
+ {
+ for (RelationshipMetaData relMD : typeMD.getRelationships())
+ {
+ if (relMD.getIdentityObjectTypeRef() == null)
+ {
+ throw new IdentityConfigurationException("identity-object-type-ref not specified" +
+ "in identity-object-type \"" + typeMD.getName()
+ + "\" in identity-store \"" + storeMD.getId() + "\"");
+ }
+
+ if (!storeObjectTypeNames.contains(relMD.getIdentityObjectTypeRef()))
+ {
+ throw new IdentityConfigurationException("identity-object-type-ref contains " +
+ "not configured name \"" + relMD.getIdentityObjectTypeRef() + "\" in " +
+ "identity-object-type \"" + typeMD.getName()
+ + "\" in identity-store \"" + storeMD.getId() + "\"");
+ }
+
+ if (relMD.getRelationshipTypeRef() == null)
+ {
+ throw new IdentityConfigurationException("relationship-type-ref not specified" +
+ "in identity-object-type \"" + typeMD.getName()
+ + "\" in identity-store \"" + storeMD.getId() + "\"");
+ }
+
+ if (!supportedRelTypes.contains(relMD.getRelationshipTypeRef()))
+ {
+ throw new IdentityConfigurationException("relationship-type-ref name is not supported" +
+ "by identity-store. Relationship name \"" + relMD.getRelationshipTypeRef() + "\" in " +
+ "identity-object-type \"" + typeMD.getName()
+ + "\" in identity-store \"" + storeMD.getId() + "\"");
+ }
+ }
+ }
+ }
+ }
+
+ // Helper structures
+
+ Set<String> configuredRepoNames = new HashSet<String>();
+
+ Map<String, Set<String>> repoObjectTypeNamesMappings = new HashMap<String, Set<String>>();
+
+ // IdentityStoreRepository
+
+ if (configurationMD.getRepositories() == null || configurationMD.getRepositories().size() == 0)
+ {
+ throw new IdentityConfigurationException("No IdentityRepository configured");
+ }
+
+ for (IdentityRepositoryConfigurationMetaData repoMD : configurationMD.getRepositories())
+ {
+ Set<String> repoObjectNames = new HashSet<String>();
+
+ // id
+ if (repoMD.getId() == null || repoMD.getId().length() == 0)
+ {
+ throw new IdentityConfigurationException("repository name is required");
+ }
+
+ configuredRepoNames.add(repoMD.getId());
+
+ // className
+ if (repoMD.getClassName() == null || repoMD.getClassName().length() == 0)
+ {
+ throw new IdentityConfigurationException("repository \"" + repoMD.getId() + "\" class name required");
+ }
+
+ // defaultAttributeStore
+ if (repoMD.getDefaultAttributeStoreId() == null || repoMD.getDefaultAttributeStoreId().length() == 0)
+ {
+ throw new IdentityConfigurationException("default-attribute-store in repository \"" + repoMD.getId() + "\" is required");
+ }
+
+ if (!storeObjectTypeNameMappings.containsKey(repoMD.getDefaultAttributeStoreId()))
+ {
+ throw new IdentityConfigurationException("default-attribute-store \"" + repoMD.getDefaultAttributeStoreId() +
+ "in repository \"" + repoMD.getId() + "\" is not present in configuration");
+ }
+
+ // defaultIdentityStore
+ if (repoMD.getDefaultAttributeStoreId() == null || repoMD.getDefaultAttributeStoreId().length() == 0)
+ {
+ throw new IdentityConfigurationException("default-identity-store in repository \"" + repoMD.getId() + "\" is required");
+ }
+
+ if (!storeObjectTypeNameMappings.containsKey(repoMD.getDefaultIdentityStoreId()))
+ {
+ throw new IdentityConfigurationException("default-identity-store \"" + repoMD.getDefaultIdentityStoreId() +
+ "in repository \"" + repoMD.getId() + "\" is not present in configuration");
+ }
+
+
+
+// if (repoMD.getIdentityStoreToIdentityObjectTypeMappings() == null ||
+// repoMD.getIdentityStoreToIdentityObjectTypeMappings().size() == 0)
+// {
+// throw new IdentityConfigurationException("No identity-store-mappings defined in repository \"" + repoMD.getId() + "\"");
+// }
+
+ // If there are no repo mappings then add all mappings from the default store
+ if (repoMD.getIdentityStoreToIdentityObjectTypeMappings().size() == 0)
+ {
+ Set<String> names = storeObjectTypeNameMappings.get(repoMD.getDefaultIdentityStoreId());
+ repoObjectTypeNamesMappings.put(repoMD.getId(), names);
+ }
+
+ for (IdentityStoreMappingMetaData mappingsMD : repoMD.getIdentityStoreToIdentityObjectTypeMappings())
+ {
+ if (mappingsMD.getIdentityStoreId() == null ||
+ mappingsMD.getIdentityStoreId().length() == 0)
+ {
+ throw new IdentityConfigurationException("No identity-store-mappings defined in repository \"" + repoMD.getId() + "\"");
+ }
+
+ if (!storeObjectTypeNameMappings.containsKey(mappingsMD.getIdentityStoreId()))
+ {
+ throw new IdentityConfigurationException("Store with id from identity-store-id \"" + mappingsMD.getIdentityStoreId() +
+ "in identity-store-mapping in repository \"" + repoMD.getId() + "\" is not present in configuration");
+ }
+
+ if (mappingsMD.getIdentityObjectTypeMappings() == null ||
+ mappingsMD.getIdentityObjectTypeMappings().size() == 0)
+ {
+ throw new IdentityConfigurationException("identity-store-mapping with \"" + mappingsMD.getIdentityStoreId() +
+ "in repository \"" + repoMD.getId() + "\" doesn't have any identity-object-types listed");
+ }
+
+ for (String identityTypeName : mappingsMD.getIdentityObjectTypeMappings())
+ {
+ Set<String> validNames = storeObjectTypeNameMappings.get(mappingsMD.getIdentityStoreId());
+
+ if (!validNames.contains(identityTypeName))
+ {
+ throw new IdentityConfigurationException("identity-object-type \"" + identityTypeName + "\" specified in " +
+ "identity-store-mapping in repository \"" + repoMD.getId() + "\" is not configured in specified " +
+ "identity-store");
+ }
+
+ repoObjectNames.add(identityTypeName);
+ }
+ }
+
+ repoObjectTypeNamesMappings.put(repoMD.getId(), repoObjectNames);
+ }
+
+
+ // Realms
+
+ if (configurationMD.getRealms() == null || configurationMD.getRealms().size() == 0)
+ {
+ throw new IdentityConfigurationException("No realm configured");
+ }
+
+ for (RealmConfigurationMetaData realmMD : configurationMD.getRealms())
+ {
+ if (realmMD.getId() == null || realmMD.getId().length() == 0)
+ {
+ throw new IdentityConfigurationException("realm id is missing");
+ }
+
+ if (realmMD.getIdentityRepositoryIdRef() == null || realmMD.getIdentityRepositoryIdRef().length() == 0)
+ {
+ throw new IdentityConfigurationException("repository-id-ref in realm \"" + realmMD.getId() + "\" is missing");
+ }
+
+ if (!configuredRepoNames.contains(realmMD.getIdentityRepositoryIdRef()))
+ {
+ throw new IdentityConfigurationException("repository-id-ref \"" + realmMD.getIdentityRepositoryIdRef() +
+ "\" in realm \"" + realmMD.getId() + "\" doesn't reference configured repository");
+ }
+
+ if (realmMD.getIdentityMapping() == null || realmMD.getIdentityMapping().length() == 0)
+ {
+ throw new IdentityConfigurationException("identity-mapping in realm \"" + realmMD.getId() + "\" is missing");
+ }
+
+ // Group type mappings are not required
+ if (realmMD.getGroupTypeMappings() != null )
+ {
+ Set<String> validNames = repoObjectTypeNamesMappings.get(realmMD.getIdentityRepositoryIdRef());
+
+ for (String typeName : realmMD.getGroupTypeMappings().values())
+ {
+ if (!validNames.contains(typeName))
+ {
+ throw new IdentityConfigurationException("identity-object-type-name in realm \"" + realmMD.getId() + "\" " +
+ "doesn't reference identity-object-type configured in repository \"" + realmMD.getIdentityRepositoryIdRef() +
+ "\"");
+
+ }
+ }
+ }
+ }
+
+
+
+ }
+
}
Modified: idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/configuration/metadata/IdentityRepositoryConfigurationMetaDataImpl.java
===================================================================
--- idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/configuration/metadata/IdentityRepositoryConfigurationMetaDataImpl.java 2009-01-16 04:49:18 UTC (rev 220)
+++ idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/configuration/metadata/IdentityRepositoryConfigurationMetaDataImpl.java 2009-01-16 13:49:44 UTC (rev 221)
@@ -94,7 +94,7 @@
this.defaultIdentityStoreId = defaultIdentityStoreId;
}
- public String getDefaultAttributeStroeId()
+ public String getDefaultAttributeStoreId()
{
return defaultAttributeStroeId;
}
Modified: idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/repository/AbstractIdentityStoreRepository.java
===================================================================
--- idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/repository/AbstractIdentityStoreRepository.java 2009-01-16 04:49:18 UTC (rev 220)
+++ idm/trunk/identity-impl/src/main/java/org/jboss/identity/idm/impl/repository/AbstractIdentityStoreRepository.java 2009-01-16 13:49:44 UTC (rev 221)
@@ -59,7 +59,7 @@
Map<String, AttributeStore> bootstrappedAttributeStores) throws IdentityException
{
- String asId = configurationMD.getDefaultAttributeStroeId();
+ String asId = configurationMD.getDefaultAttributeStoreId();
String isId = configurationMD.getDefaultIdentityStoreId();
if (asId != null && bootstrappedAttributeStores.keySet().contains(asId))
Modified: idm/trunk/identity-impl/src/test/java/org/jboss/identity/idm/impl/configuration/ConfigurationTestCase.java
===================================================================
--- idm/trunk/identity-impl/src/test/java/org/jboss/identity/idm/impl/configuration/ConfigurationTestCase.java 2009-01-16 04:49:18 UTC (rev 220)
+++ idm/trunk/identity-impl/src/test/java/org/jboss/identity/idm/impl/configuration/ConfigurationTestCase.java 2009-01-16 13:49:44 UTC (rev 221)
@@ -41,11 +41,11 @@
public void testSimple() throws Exception
{
- IdentityConfigurationMetaData config = JAXB2IdentityConfiguration.createConfigurationMetaData(new File("src/test/resources/test-config.xml"));
+ IdentityConfigurationMetaData config = JAXB2IdentityConfiguration.createConfigurationMetaData(new File("src/test/resources/store-test-config.xml"));
assertNotNull(config);
- assertEquals("Hibernate Identity Store", config.getIdentityStores().get(0).getId() );
+ assertEquals("HibernateTestStore", config.getIdentityStores().get(0).getId() );
}
Modified: idm/trunk/identity-impl/src/test/resources/organization-test-config.xml
===================================================================
--- idm/trunk/identity-impl/src/test/resources/organization-test-config.xml 2009-01-16 04:49:18 UTC (rev 220)
+++ idm/trunk/identity-impl/src/test/resources/organization-test-config.xml 2009-01-16 13:49:44 UTC (rev 221)
@@ -182,9 +182,9 @@
<name>picture</name>
<mapping>user.picture</mapping>
<type>binary</type>
- <isRequired/>
- <isMultivalued/>
- <isReadOnly/>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
</attribute>
</attributes>
<options/>
@@ -432,25 +432,25 @@
<name>phone</name>
<mapping>telephoneNumber</mapping>
<type>text</type>
- <isRequired/>
- <isMultivalued/>
- <isReadOnly/>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
</attribute>
<attribute>
<name>description</name>
<mapping>description</mapping>
<type>text</type>
- <isRequired/>
- <isMultivalued/>
- <isReadOnly/>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
</attribute>
<attribute>
<name>carLicense</name>
<mapping>carLicense</mapping>
<type>text</type>
- <isRequired/>
- <isMultivalued/>
- <isReadOnly/>
+ <isRequired>false</isRequired>
+ <isMultivalued>false</isMultivalued>
+ <isReadOnly>false</isReadOnly>
</attribute>
</attributes>
<options>
Modified: idm/trunk/identity-impl/src/test/resources/store-test-config.xml
===================================================================
--- idm/trunk/identity-impl/src/test/resources/store-test-config.xml 2009-01-16 04:49:18 UTC (rev 220)
+++ idm/trunk/identity-impl/src/test/resources/store-test-config.xml 2009-01-16 13:49:44 UTC (rev 221)
@@ -18,13 +18,13 @@
<external-config/>
<default-identity-store-id>HibernateTestStore</default-identity-store-id>
<default-attribute-store-id>HibernateTestStore</default-attribute-store-id>
- <identity-store-mappings>
- <identity-store-mapping>
- <identity-store-id>HibernateTestStore</identity-store-id>
- <identity-object-types/>
- <options/>
- </identity-store-mapping>
- </identity-store-mappings>
+ <!--<identity-store-mappings>-->
+ <!--<identity-store-mapping>-->
+ <!--<identity-store-id>HibernateTestStore</identity-store-id>-->
+ <!--<identity-object-types/>-->
+ <!--<options/>-->
+ <!--</identity-store-mapping>-->
+ <!--</identity-store-mappings>-->
</repository>
</repositories>
<stores>
@@ -50,6 +50,13 @@
<options/>
</identity-object-type>
<identity-object-type>
+ <name>GROUP</name>
+ <relationships/>
+ <credentials/>
+ <attributes/>
+ <options/>
+ </identity-object-type>
+ <identity-object-type>
<name>ORGANIZATION</name>
<relationships>
<relationship>
Modified: idm/trunk/identity-impl/src/test/resources/test-config.xml
===================================================================
--- idm/trunk/identity-impl/src/test/resources/test-config.xml 2009-01-16 04:49:18 UTC (rev 220)
+++ idm/trunk/identity-impl/src/test/resources/test-config.xml 2009-01-16 13:49:44 UTC (rev 221)
@@ -4,22 +4,11 @@
xsi:schemaLocation="urn:jboss:identity:idm:config:v1_0_alpha identity-config.xsd">
<realms>
<realm>
- <id></id>
- <repository-id-ref></repository-id-ref>
- <realm-configuration>
- <!--Use direct type mappper when not specified-->
- <!--<identity-type-mappings>-->
- <!--<identity-mapping>JBOSS_IDENTITY_IDENTITY</identity-mapping>-->
- <!--<group-type-mapping>-->
- <!--<group-type-name>ORGANIZATION</group-type-name>-->
- <!--<identity-object-type-name>JBOSS_IDENTITY_GROUP_ORGANIZATION</identity-object-type-name>-->
- <!--</group-type-mapping>-->
- <!--<group-type-mapping>-->
- <!--<group-type-name>ORGANIZATION_UNIT</group-type-name>-->
- <!--<identity-object-type-name>JBOSS_IDENTITY_GROUP_ORGANIZATION_UNIT</identity-object-type-name>-->
- <!--</group-type-mapping>-->
- <!--</identity-type-mappings>-->
- </realm-configuration>
+ <id>Sample Ralm</id>
+ <repository-id-ref>Fallback Repository - ACME</repository-id-ref>
+ <identity-type-mappings>
+ <identity-mapping>IDENTITY</identity-mapping>
+ </identity-type-mappings>
</realm>
</realms>
<repositories>
@@ -49,19 +38,6 @@
<options/>
</identity-store-mapping>
</identity-store-mappings>
- <!--<option-groups>-->
- <!--<option-group>-->
- <!--<name></name>-->
- <!--<options>-->
- <!--<option>-->
- <!--<name></name>-->
- <!--<values>-->
- <!--<value></value>-->
- <!--</values>-->
- <!--</option>-->
- <!--</options>-->
- <!--</option-group>-->
- <!--</option-groups>-->
</repository>
</repositories>
<stores>
@@ -112,6 +88,7 @@
<attributes>
<attribute>
<name>user.name.given</name>
+ <type>text</type>
<mapping/>
<isRequired>false</isRequired>
<isMultivalued>true</isMultivalued>
Modified: idm/trunk/identity-spi/src/main/java/org/jboss/identity/idm/spi/configuration/metadata/IdentityRepositoryConfigurationMetaData.java
===================================================================
--- idm/trunk/identity-spi/src/main/java/org/jboss/identity/idm/spi/configuration/metadata/IdentityRepositoryConfigurationMetaData.java 2009-01-16 04:49:18 UTC (rev 220)
+++ idm/trunk/identity-spi/src/main/java/org/jboss/identity/idm/spi/configuration/metadata/IdentityRepositoryConfigurationMetaData.java 2009-01-16 13:49:44 UTC (rev 221)
@@ -56,7 +56,7 @@
/**
* @return id of the default AttributeStore
*/
- String getDefaultAttributeStroeId();
+ String getDefaultAttributeStoreId();
/**
* @return configuration meta data of IdentityStore mappings
17 years, 4 months
JBoss Identity SVN: r220 - in identity-federation/trunk: identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp and 4 other directories.
by jboss-identity-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2009-01-15 23:49:18 -0500 (Thu, 15 Jan 2009)
New Revision: 220
Added:
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/SecurityActions.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SecurityActions.java
identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/RedirectBindingUtilTestCase.java
Modified:
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectSignatureFormAuthenticator.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/HTTPRedirectUtil.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingUtil.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/cert/KeyStoreUtil.java
identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/RedirectBindingSignatureUtilTestCase.java
identity-federation/trunk/identity-fed-api/src/test/java/org/jboss/test/identity/federation/api/saml/v2/DeflateEncodingDecodingUnitTestCase.java
Log:
support jboss registration
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java 2009-01-15 18:28:01 UTC (rev 219)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -124,6 +124,7 @@
catch (Exception e)
{
log.error("Exception:" ,e);
+ e.printStackTrace();
throw new ServletException(e.getLocalizedMessage());
}
}
@@ -151,7 +152,7 @@
ResponseType responseType = null;
String samlMessage = getSAMLMessage(request);
- InputStream is = RedirectBindingUtil.urlBase64DeflateDecode(samlMessage);
+ InputStream is = RedirectBindingUtil.base64DeflateDecode(samlMessage);
SAML2Request saml2Request = new SAML2Request();
AuthnRequestType authnRequestType = saml2Request.getAuthnRequestType(is);
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java 2009-01-15 18:28:01 UTC (rev 219)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -21,7 +21,12 @@
*/
package org.jboss.identity.federation.bindings.tomcat.idp;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.InputStream;
+import java.net.URL;
import java.security.KeyStore;
+import java.security.PrivateKey;
import java.security.PublicKey;
import org.apache.catalina.connector.Request;
@@ -38,6 +43,7 @@
*/
public class IDPRedirectWithSignatureValve extends IDPRedirectValve
{
+ private String keyStorePass;
private String keyStore;
private char[] keypass;
private String alias;
@@ -47,8 +53,13 @@
this.keyStore = keyStore;
}
- public void setKeyStorePassword(String keypass)
+ public void setKeyStorePass(String ksPass)
{
+ this.keyStorePass = ksPass;
+ }
+
+ public void setKeyPass(String keypass)
+ {
this.keypass = keypass.toCharArray();
}
@@ -88,9 +99,44 @@
return isValid;
}
- private PublicKey getValidatingKey() throws Exception
+ private InputStream getKeyStoreInputStream()
{
- KeyStore ks = KeyStoreUtil.getKeyStore(keyStore, keypass);
+ InputStream is = null;
+
+ try
+ {
+ //Try the file method
+ File file = new File(keyStore);
+ is = new FileInputStream(file);
+ }
+ catch(Exception e)
+ {
+ try
+ {
+ URL url = new URL(keyStore);
+ is = url.openStream();
+ }
+ catch(Exception ex)
+ {
+ is = SecurityActions.getContextClassLoader().getResourceAsStream(keyStore);
+ }
+ }
+ if(is == null)
+ throw new RuntimeException("Keystore not located");
+ return is;
+ }
+
+ protected PrivateKey getSigningKey() throws Exception
+ {
+ InputStream is = this.getKeyStoreInputStream();
+ KeyStore ks = KeyStoreUtil.getKeyStore(is, keypass);
+ return (PrivateKey) ks.getKey(alias, keypass);
+ }
+
+ protected PublicKey getValidatingKey() throws Exception
+ {
+ InputStream is = this.getKeyStoreInputStream();
+ KeyStore ks = KeyStoreUtil.getKeyStore(is, keyStorePass.toCharArray());
return KeyStoreUtil.getPublicKey(ks, alias, keypass);
}
}
\ No newline at end of file
Added: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/SecurityActions.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/SecurityActions.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/SecurityActions.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.federation.bindings.tomcat.idp;
+
+import java.security.AccessController;
+import java.security.PrivilegedAction;
+
+/**
+ * Privileged Blocks
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Dec 9, 2008
+ */
+class SecurityActions
+{
+ /**
+ * Get the Thread Context ClassLoader
+ * @return
+ */
+ static ClassLoader getContextClassLoader()
+ {
+ return AccessController.doPrivileged(new PrivilegedAction<ClassLoader>()
+ {
+ public ClassLoader run()
+ {
+ return Thread.currentThread().getContextClassLoader();
+ }
+ });
+ }
+}
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java 2009-01-15 18:28:01 UTC (rev 219)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -24,8 +24,15 @@
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
+import java.lang.reflect.Method;
import java.security.Principal;
+import java.security.acl.Group;
+import java.util.Collections;
+import java.util.Enumeration;
+import java.util.HashSet;
+import java.util.Set;
+import javax.security.auth.Subject;
import javax.servlet.ServletException;
import org.apache.catalina.Session;
@@ -34,6 +41,7 @@
import org.apache.catalina.connector.Request;
import org.apache.catalina.connector.Response;
import org.apache.catalina.deploy.LoginConfig;
+import org.apache.catalina.realm.GenericPrincipal;
import org.apache.log4j.Logger;
import org.jboss.identity.federation.api.saml.v2.request.SAML2Request;
import org.jboss.identity.federation.api.saml.v2.response.SAML2Response;
@@ -89,7 +97,7 @@
Principal p = process(request,response);
if(p == null)
{
- String destination = createSAMLRequestMessage("someuser", relayState, response);
+ String destination = createSAMLRequestMessage( relayState, response);
HTTPRedirectUtil.sendRedirectForRequestor(destination, response);
return false;
@@ -100,6 +108,10 @@
session.setNote(Constants.SESS_PASSWORD_NOTE, password);
request.setUserPrincipal(p);
register(request, response, p, Constants.FORM_METHOD, username, password);
+
+ //Also register in JBoss SecurityAssociation
+ this.registerInJBoss(p);
+
return true;
}
catch(AssertionExpiredException aie)
@@ -107,7 +119,7 @@
log.debug("Assertion has expired. Issuing a new saml2 request to the IDP");
try
{
- String destination = createSAMLRequestMessage("someuser", relayState, response);
+ String destination = createSAMLRequestMessage( relayState, response);
HTTPRedirectUtil.sendRedirectForRequestor(destination, response);
}
catch (Exception e)
@@ -129,7 +141,7 @@
return super.authenticate(request, response, loginConfig);
}
- protected String createSAMLRequestMessage(String username, String relayState, Response response)
+ protected String createSAMLRequestMessage(String relayState, Response response)
throws Exception
{
//create a saml request
@@ -180,4 +192,92 @@
}
return userPrincipal;
}
+
+ /**
+ * JBoss specific code that uses reflection
+ */
+ private void registerInJBoss(Principal gp)
+ {
+ if(gp instanceof GenericPrincipal == false)
+ {
+ log.error("Principal is not of type GenericPrincipal. So cannot get to roles");
+ return;
+ }
+
+ String sa = "org.jboss.security.SecurityAssociation";
+ try
+ {
+ Class<?> securityAssociationClass = SecurityActions.getContextClassLoader().loadClass(sa);
+ Method m = securityAssociationClass.getDeclaredMethod("setSubject", new Class[] {Subject.class});
+ Subject subject = this.getJBossSubjectFromTomcatPrincipal(gp);
+ m.invoke(null, subject);
+ }
+ catch(Exception e)
+ {
+ log.trace("Not a JBoss environment. So not registering in SecurityAssociation");
+ }
+ }
+
+ private Subject getJBossSubjectFromTomcatPrincipal(final Principal principal)
+ {
+ GenericPrincipal gp = (GenericPrincipal) principal;
+ final String[] roles = gp.getRoles();
+ final Set<Principal> rolePrincipals = new HashSet<Principal>();
+
+ for(final String role : roles)
+ {
+ rolePrincipals.add(new Principal()
+ {
+ public String getName()
+ {
+ return role;
+ }
+ });
+ }
+
+ Subject subject = new Subject();
+
+ Principal userPrincipal = new Principal()
+ {
+ public String getName()
+ {
+ return principal.getName();
+ }
+ };
+ subject.getPrincipals().add(userPrincipal);
+
+ //Add the role group
+ Group roleGroup = new Group()
+ {
+ public boolean addMember(Principal user)
+ {
+ return rolePrincipals.add(user);
+ }
+
+ public boolean isMember(Principal member)
+ {
+ return rolePrincipals.contains(member);
+ }
+
+ public Enumeration<? extends Principal> members()
+ {
+ return Collections.enumeration(rolePrincipals);
+ }
+
+ public boolean removeMember(Principal user)
+ {
+ return rolePrincipals.remove(user);
+ }
+
+ public String getName()
+ {
+ return "Roles";
+ }
+ };
+
+ subject.getPrincipals().add(roleGroup);
+
+ return subject;
+ }
+
}
\ No newline at end of file
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectSignatureFormAuthenticator.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectSignatureFormAuthenticator.java 2009-01-15 18:28:01 UTC (rev 219)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectSignatureFormAuthenticator.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -21,8 +21,13 @@
*/
package org.jboss.identity.federation.bindings.tomcat.sp;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.InputStream;
+import java.net.URL;
import java.security.KeyStore;
import java.security.PrivateKey;
+import java.security.PublicKey;
import org.jboss.identity.federation.bindings.util.RedirectBindingSignatureUtil;
import org.jboss.identity.federation.bindings.util.cert.KeyStoreUtil;
@@ -38,14 +43,20 @@
private String keyStore;
private char[] keypass;
private String alias;
+ private String keyStorePass;
public void setKeyStore(String keyStore)
{
this.keyStore = keyStore;
}
- public void setKeyStorePassword(String keypass)
+ public void setKeyStorePass(String keyStorePass)
{
+ this.keyStorePass = keyStorePass;
+ }
+
+ public void setKeyPass(String keypass)
+ {
this.keypass = keypass.toCharArray();
}
@@ -59,14 +70,57 @@
{
try
{
- //Get the signing key
- KeyStore ks = KeyStoreUtil.getKeyStore(keyStore, keypass);
- PrivateKey signingKey = (PrivateKey) ks.getKey(alias, keypass);
- return RedirectBindingSignatureUtil.getSAMLRequestURLWithSignature(urlEncodedRequest, urlEncodedRelayState, signingKey);
+ //Get the signing key
+ PrivateKey signingKey = getSigningKey();
+ StringBuffer sb = new StringBuffer();
+ String url = RedirectBindingSignatureUtil.getSAMLRequestURLWithSignature(urlEncodedRequest, urlEncodedRelayState, signingKey);
+ sb.append("?").append(url);
+ return sb.toString();
}
catch(Exception e)
{
throw new RuntimeException(e);
}
- }
+ }
+
+ private InputStream getKeyStoreInputStream()
+ {
+ InputStream is = null;
+
+ try
+ {
+ //Try the file method
+ File file = new File(keyStore);
+ is = new FileInputStream(file);
+ }
+ catch(Exception e)
+ {
+ try
+ {
+ URL url = new URL(keyStore);
+ is = url.openStream();
+ }
+ catch(Exception ex)
+ {
+ is = SecurityActions.getContextClassLoader().getResourceAsStream(keyStore);
+ }
+ }
+ if(is == null)
+ throw new RuntimeException("Keystore not located");
+ return is;
+ }
+
+ protected PrivateKey getSigningKey() throws Exception
+ {
+ InputStream is = this.getKeyStoreInputStream();
+ KeyStore ks = KeyStoreUtil.getKeyStore(is, keyStorePass.toCharArray());
+ return (PrivateKey) ks.getKey(alias, keypass);
+ }
+
+ protected PublicKey getValidatingKey() throws Exception
+ {
+ InputStream is = this.getKeyStoreInputStream();
+ KeyStore ks = KeyStoreUtil.getKeyStore(is, keyStorePass.toCharArray());
+ return KeyStoreUtil.getPublicKey(ks, alias, keypass);
+ }
}
\ No newline at end of file
Added: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SecurityActions.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SecurityActions.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SecurityActions.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.federation.bindings.tomcat.sp;
+
+import java.security.AccessController;
+import java.security.PrivilegedAction;
+
+/**
+ * Privileged Blocks
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Dec 9, 2008
+ */
+class SecurityActions
+{
+ /**
+ * Get the Thread Context ClassLoader
+ * @return
+ */
+ static ClassLoader getContextClassLoader()
+ {
+ return AccessController.doPrivileged(new PrivilegedAction<ClassLoader>()
+ {
+ public ClassLoader run()
+ {
+ return Thread.currentThread().getContextClassLoader();
+ }
+ });
+ }
+}
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/HTTPRedirectUtil.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/HTTPRedirectUtil.java 2009-01-15 18:28:01 UTC (rev 219)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/HTTPRedirectUtil.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -44,11 +44,8 @@
public static void sendRedirectForRequestor(String destination, HttpServletResponse response)
throws IOException
{
- response.setCharacterEncoding("UTF-8");
- response.setHeader("Location", destination);
-
- response.setHeader("Cache-Control", "no-cache, no-store");
- response.setHeader("Pragma", "no-cache");
+ common(destination, response);
+ response.setHeader("Cache-Control", "no-cache, no-store");
sendRedirect(response,destination);
}
@@ -58,16 +55,18 @@
public static void sendRedirectForResponder(String destination, HttpServletResponse response)
throws IOException
{
- response.setCharacterEncoding("UTF-8");
- response.setHeader("Location", destination);
-
- //Add couple of headers for responders to get away from caching with http proxies
+ common(destination, response);
response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate,private");
- response.setHeader("Pragma", "no-cache");
-
sendRedirect(response,destination);
}
+ private static void common(String destination, HttpServletResponse response)
+ {
+ response.setCharacterEncoding("UTF-8");
+ response.setHeader("Location", destination);
+ response.setHeader("Pragma", "no-cache");
+ }
+
private static void sendRedirect(HttpServletResponse response, String destination) throws IOException
{
response.setStatus(HttpServletResponse.SC_MOVED_TEMPORARILY);
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingUtil.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingUtil.java 2009-01-15 18:28:01 UTC (rev 219)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingUtil.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -36,6 +36,28 @@
public class RedirectBindingUtil
{
/**
+ * URL encode the string
+ * @param str
+ * @return
+ * @throws Exception
+ */
+ public static String urlEncode(String str) throws Exception
+ {
+ return URLEncoder.encode(str, "UTF-8");
+ }
+
+ /**
+ * URL decode the string
+ * @param str
+ * @return
+ * @throws Exception
+ */
+ public static String urlDecode(String str) throws Exception
+ {
+ return URLDecoder.decode(str, "UTF-8");
+ }
+
+ /**
* On the byte array, apply base64 encoding following by URL encoding
* @param stringToEncode
* @return
@@ -44,7 +66,7 @@
public static String base64URLEncode(byte[] stringToEncode) throws Exception
{
String base64Request = Base64.encodeBytes(stringToEncode, Base64.DONT_BREAK_LINES);
- return URLEncoder.encode(base64Request, "UTF-8");
+ return urlEncode(base64Request);
}
/**
@@ -55,7 +77,7 @@
*/
public static byte[] urlBase64Decode(String encodedString) throws Exception
{
- String decodedString = URLDecoder.decode(encodedString, "UTF-8");
+ String decodedString = urlDecode(encodedString);
return Base64.decode(decodedString);
}
@@ -93,4 +115,16 @@
byte[] deflatedString = urlBase64Decode(encodedString);
return DeflateUtil.decode(deflatedString);
}
+
+ /**
+ * Base64 decode followed by Deflate decoding
+ * @param encodedString
+ * @return
+ * @throws Exception
+ */
+ public static InputStream base64DeflateDecode(String encodedString) throws Exception
+ {
+ byte[] base64decodedMsg = Base64.decode(encodedString);
+ return DeflateUtil.decode(base64decodedMsg);
+ }
}
\ No newline at end of file
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/cert/KeyStoreUtil.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/cert/KeyStoreUtil.java 2009-01-15 18:28:01 UTC (rev 219)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/cert/KeyStoreUtil.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -45,53 +45,53 @@
/**
* Get the Keystore given the url to the keystore file as a string
* @param fileURL
- * @param password
+ * @param storePass
* @return
* @throws GeneralSecurityException
* @throws IOException
*/
- public static KeyStore getKeyStore(String fileURL, char[] password) throws GeneralSecurityException, IOException
+ public static KeyStore getKeyStore(String fileURL, char[] storePass) throws GeneralSecurityException, IOException
{
if(fileURL == null)
throw new IllegalArgumentException("fileURL is null");
File file = new File(fileURL);
FileInputStream fis = new FileInputStream(file);
- return getKeyStore(fis,password);
+ return getKeyStore(fis,storePass);
}
/**
* Get the Keystore given the URL to the keystore
* @param url
- * @param password
+ * @param storePass
* @return
* @throws GeneralSecurityException
* @throws IOException
*/
- public static KeyStore getKeyStore(URL url, char[] password) throws GeneralSecurityException, IOException
+ public static KeyStore getKeyStore(URL url, char[] storePass) throws GeneralSecurityException, IOException
{
if(url == null)
throw new IllegalArgumentException("url is null");
- return getKeyStore(url.openStream(), password);
+ return getKeyStore(url.openStream(), storePass);
}
/**
* Get the Key Store
* <b>Note:</b> This method wants the InputStream to be not null.
* @param ksStream
- * @param password
+ * @param storePass
* @return
* @throws GeneralSecurityException
* @throws IOException
* @throws IllegalArgumentException if ksStream is null
*/
- public static KeyStore getKeyStore(InputStream ksStream, char[] password) throws GeneralSecurityException, IOException
+ public static KeyStore getKeyStore(InputStream ksStream, char[] storePass) throws GeneralSecurityException, IOException
{
if(ksStream == null)
throw new IllegalArgumentException("InputStream for the KeyStore is null");
KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
- ks.load(ksStream, password);
+ ks.load(ksStream, storePass);
return ks;
}
Modified: identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/RedirectBindingSignatureUtilTestCase.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/RedirectBindingSignatureUtilTestCase.java 2009-01-15 18:28:01 UTC (rev 219)
+++ identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/RedirectBindingSignatureUtilTestCase.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -41,7 +41,11 @@
*/
public class RedirectBindingSignatureUtilTestCase extends TestCase
{
- public void testUseCase() throws Exception
+ /**
+ * Test the encoding/decoding of a SAML2 AuthnRequest with signature support
+ * @throws Exception
+ */
+ public void testSigUseCase() throws Exception
{
AuthnRequestType authnRequest = JBossSAMLAuthnRequestFactory.createAuthnRequestType(
IDGenerator.create("ID_"), "http://sp", "http://idp", "http://sp");
Added: identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/RedirectBindingUtilTestCase.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/RedirectBindingUtilTestCase.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/RedirectBindingUtilTestCase.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -0,0 +1,84 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.identity.federation.bindings.util;
+
+import java.io.ByteArrayOutputStream;
+import java.io.InputStream;
+import java.io.StringWriter;
+
+import org.jboss.identity.federation.api.saml.v2.common.IDGenerator;
+import org.jboss.identity.federation.api.saml.v2.request.SAML2Request;
+import org.jboss.identity.federation.bindings.util.RedirectBindingUtil;
+import org.jboss.identity.federation.core.saml.v2.factories.JBossSAMLAuthnRequestFactory;
+import org.jboss.identity.federation.saml.v2.protocol.AuthnRequestType;
+
+import junit.framework.TestCase;
+
+/**
+ * Unit Test the RedirectBindingUtil
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Jan 15, 2009
+ */
+public class RedirectBindingUtilTestCase extends TestCase
+{
+ /**
+ * Test the encoding/decoding of a SAML2 AuthnRequest
+ * @throws Exception
+ */
+ public void testRegularRedirectBindingUseCaseWithStringWriter() throws Exception
+ {
+ AuthnRequestType authnRequest = JBossSAMLAuthnRequestFactory.createAuthnRequestType(
+ IDGenerator.create("ID_"), "http://sp", "http://idp", "http://sp");
+
+ StringWriter sw = new StringWriter();
+ SAML2Request saml2Request = new SAML2Request();
+ saml2Request.marshall(authnRequest, sw);
+
+ String request = RedirectBindingUtil.deflateBase64URLEncode(sw.toString());
+
+ InputStream is = RedirectBindingUtil.urlBase64DeflateDecode(request);
+
+ AuthnRequestType parsed = saml2Request.getAuthnRequestType(is);
+ assertNotNull("Parsed request is not null", parsed);
+ }
+
+ /**
+ * Test the encoding/decoding of a SAML2 AuthnRequest (Use of ByteArrayOutputStream)
+ * @throws Exception
+ */
+ public void testRegularRedirectBindingUseCaseWithByteArray() throws Exception
+ {
+ AuthnRequestType authnRequest = JBossSAMLAuthnRequestFactory.createAuthnRequestType(
+ IDGenerator.create("ID_"), "http://sp", "http://idp", "http://sp");
+
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
+ SAML2Request saml2Request = new SAML2Request();
+ saml2Request.marshall(authnRequest, baos);
+
+ String request = RedirectBindingUtil.deflateBase64URLEncode(baos.toByteArray());
+
+ InputStream is = RedirectBindingUtil.urlBase64DeflateDecode(request);
+
+ AuthnRequestType parsed = saml2Request.getAuthnRequestType(is);
+ assertNotNull("Parsed request is not null", parsed);
+ }
+}
\ No newline at end of file
Modified: identity-federation/trunk/identity-fed-api/src/test/java/org/jboss/test/identity/federation/api/saml/v2/DeflateEncodingDecodingUnitTestCase.java
===================================================================
--- identity-federation/trunk/identity-fed-api/src/test/java/org/jboss/test/identity/federation/api/saml/v2/DeflateEncodingDecodingUnitTestCase.java 2009-01-15 18:28:01 UTC (rev 219)
+++ identity-federation/trunk/identity-fed-api/src/test/java/org/jboss/test/identity/federation/api/saml/v2/DeflateEncodingDecodingUnitTestCase.java 2009-01-16 04:49:18 UTC (rev 220)
@@ -23,6 +23,8 @@
import java.io.InputStream;
import java.io.StringWriter;
+import java.net.URLDecoder;
+import java.net.URLEncoder;
import junit.framework.TestCase;
@@ -54,12 +56,14 @@
String base64Request = Base64.encodeBytes(deflatedMsg, Base64.DONT_BREAK_LINES);
+ base64Request = URLEncoder.encode(base64Request, "UTF-8");
+
//Decode
- byte[] decodedMessage = Base64.decode(base64Request);
+ String urlDecodedMsg = URLDecoder.decode(base64Request, "UTF-8");
+ byte[] decodedMessage = Base64.decode(urlDecodedMsg);
InputStream is = DeflateUtil.decode(decodedMessage);
AuthnRequestType decodedRequestType = request.getAuthnRequestType(is);
assertNotNull(decodedRequestType);
- }
-
+ }
}
\ No newline at end of file
17 years, 4 months
JBoss Identity SVN: r219 - in identity-federation/trunk: identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp and 7 other directories.
by jboss-identity-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2009-01-15 13:28:01 -0500 (Thu, 15 Jan 2009)
New Revision: 219
Added:
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingUtil.java
identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/KeystoreUtilUnitTestCase.java
identity-federation/trunk/identity-bindings/src/test/resources/keystore/
identity-federation/trunk/identity-bindings/src/test/resources/keystore/jbid_test_keystore.jks
Modified:
identity-federation/trunk/identity-bindings/.classpath
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectValve.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingSignatureUtil.java
identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/cert/KeyStoreUtil.java
identity-federation/trunk/identity-fed-core/src/main/java/org/jboss/identity/federation/core/saml/v2/util/SignatureUtil.java
Log:
additional keystore/sig work
Modified: identity-federation/trunk/identity-bindings/.classpath
===================================================================
--- identity-federation/trunk/identity-bindings/.classpath 2009-01-15 01:15:52 UTC (rev 218)
+++ identity-federation/trunk/identity-bindings/.classpath 2009-01-15 18:28:01 UTC (rev 219)
@@ -1,6 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/java"/>
+ <classpathentry kind="src" path="src/main/resources"/>
+ <classpathentry kind="src" path="src/test/resources"/>
<classpathentry kind="src" path="src/test/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="var" path="M2_REPO/apache-tomcat/catalina/5.5.12/catalina-5.5.12.jar"/>
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java 2009-01-15 01:15:52 UTC (rev 218)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectValve.java 2009-01-15 18:28:01 UTC (rev 219)
@@ -21,10 +21,10 @@
*/
package org.jboss.identity.federation.bindings.tomcat.idp;
+import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringWriter;
-import java.net.URLEncoder;
import java.security.Principal;
import java.util.ArrayList;
import java.util.Arrays;
@@ -44,9 +44,8 @@
import org.jboss.identity.federation.api.saml.v2.common.IDGenerator;
import org.jboss.identity.federation.api.saml.v2.request.SAML2Request;
import org.jboss.identity.federation.api.saml.v2.response.SAML2Response;
-import org.jboss.identity.federation.api.util.Base64;
-import org.jboss.identity.federation.api.util.DeflateUtil;
import org.jboss.identity.federation.bindings.util.HTTPRedirectUtil;
+import org.jboss.identity.federation.bindings.util.RedirectBindingUtil;
import org.jboss.identity.federation.core.saml.v2.constants.JBossSAMLURIConstants;
import org.jboss.identity.federation.core.saml.v2.holders.IDPInfoHolder;
import org.jboss.identity.federation.core.saml.v2.holders.IssuerInfoHolder;
@@ -82,10 +81,8 @@
@Override
public void invoke(Request request, Response response) throws IOException, ServletException
{
- //request.setCharacterEncoding("UTF-8");
+ boolean containsSAMLRequestMessage = this.hasSAMLRequestMessage(request);
- boolean containsSAMLRequestMessage = this.isSAMLRequestMessage(request);
-
//Lets check if the user has been authenticated
Principal userPrincipal = request.getUserPrincipal();
if(userPrincipal == null)
@@ -114,35 +111,38 @@
SAML2Response saml2Response = new SAML2Response();
ResponseType responseType = this.getResponse(request, userPrincipal);
- StringWriter stringWriter = new StringWriter();
- saml2Response.marshall(responseType, stringWriter);
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
+ saml2Response.marshall(responseType, baos);
- String responseMessage = stringWriter.toString();
-
- //Deflate encoding
- byte[] deflatedMsg = DeflateUtil.encode(responseMessage);
-
- String base64Response = Base64.encodeBytes(deflatedMsg, Base64.DONT_BREAK_LINES);
-
+ String encodedResponse = RedirectBindingUtil.deflateBase64URLEncode(baos.toByteArray());
+
String destination = responseType.getDestination();
log.trace("IDP:Destination=" + destination);
- base64Response = URLEncoder.encode(base64Response, "UTF-8");
-
- HTTPRedirectUtil.sendRedirectForRequestor(destination + "?SAMLResponse=" + base64Response,response);
+
+ HTTPRedirectUtil.sendRedirectForResponder(destination + "?SAMLResponse=" + encodedResponse,response);
}
catch (Exception e)
{
log.error("Exception:" ,e);
throw new ServletException(e.getLocalizedMessage());
}
- }
+ }
+ else
+ {
+ throw new ServletException("No SAML Request Message");
+ }
}
}
}
}
- private boolean isSAMLRequestMessage(Request request)
+ protected boolean validate(Request request) throws Exception
{
+ return this.hasSAMLRequestMessage(request);
+ }
+
+ private boolean hasSAMLRequestMessage(Request request)
+ {
return request.getParameter("SAMLRequest") != null;
}
@@ -150,9 +150,8 @@
{
ResponseType responseType = null;
- byte[] decodedMessage = Base64.decode(getSAMLMessage(request));
-
- InputStream is = DeflateUtil.decode(decodedMessage);
+ String samlMessage = getSAMLMessage(request);
+ InputStream is = RedirectBindingUtil.urlBase64DeflateDecode(samlMessage);
SAML2Request saml2Request = new SAML2Request();
AuthnRequestType authnRequestType = saml2Request.getAuthnRequestType(is);
@@ -225,9 +224,8 @@
}
}
return userRoles;
- }
+ }
-
private String getSAMLMessage(Request request)
{
return request.getParameter("SAMLRequest");
Added: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/idp/IDPRedirectWithSignatureValve.java 2009-01-15 18:28:01 UTC (rev 219)
@@ -0,0 +1,96 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.federation.bindings.tomcat.idp;
+
+import java.security.KeyStore;
+import java.security.PublicKey;
+
+import org.apache.catalina.connector.Request;
+import org.jboss.identity.federation.bindings.util.RedirectBindingSignatureUtil;
+import org.jboss.identity.federation.bindings.util.cert.KeyStoreUtil;
+import org.jboss.identity.federation.core.saml.v2.util.SignatureUtil;
+
+
+/**
+ * Valve at the Identity Provider that supports
+ * SAML2 HTTP/Redirect binding with digital signature support
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Jan 14, 2009
+ */
+public class IDPRedirectWithSignatureValve extends IDPRedirectValve
+{
+ private String keyStore;
+ private char[] keypass;
+ private String alias;
+
+ public void setKeyStore(String keyStore)
+ {
+ this.keyStore = keyStore;
+ }
+
+ public void setKeyStorePassword(String keypass)
+ {
+ this.keypass = keypass.toCharArray();
+ }
+
+ public void setAlias(String alias)
+ {
+ this.alias = alias;
+ }
+
+ protected boolean validate(Request request) throws Exception
+ {
+ boolean result = super.validate(request);
+ if( result == false)
+ return result;
+
+ String queryString = request.getQueryString();
+ //Check if there is a signature
+ byte[] sigValue = RedirectBindingSignatureUtil.getSignatureValueFromSignedURL(queryString);
+ if(sigValue == null)
+ return false;
+
+ //Construct the url again
+ String reqFromURL = RedirectBindingSignatureUtil.getTokenValue(queryString, "SAMLRequest");
+ String relayStateFromURL = RedirectBindingSignatureUtil.getTokenValue(queryString, "RelayState");
+ String sigAlgFromURL = RedirectBindingSignatureUtil.getTokenValue(queryString, "SigAlg");
+
+ StringBuilder sb = new StringBuilder();
+ sb.append("SAMLRequest=").append(reqFromURL);
+
+ if(relayStateFromURL != null && relayStateFromURL.length() > 0)
+ {
+ sb.append("&RelayState=").append(relayStateFromURL);
+ }
+ sb.append("&SigAlg=").append(sigAlgFromURL);
+
+ PublicKey validatingKey = getValidatingKey();
+ boolean isValid = SignatureUtil.validate(sb.toString().getBytes("UTF-8"), sigValue, validatingKey);
+ return isValid;
+ }
+
+ private PublicKey getValidatingKey() throws Exception
+ {
+ KeyStore ks = KeyStoreUtil.getKeyStore(keyStore, keypass);
+ return KeyStoreUtil.getPublicKey(ks, alias, keypass);
+ }
+}
\ No newline at end of file
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java 2009-01-15 01:15:52 UTC (rev 218)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectFormAuthenticator.java 2009-01-15 18:28:01 UTC (rev 219)
@@ -40,7 +40,7 @@
import org.jboss.identity.federation.api.util.Base64;
import org.jboss.identity.federation.api.util.DeflateUtil;
import org.jboss.identity.federation.bindings.util.HTTPRedirectUtil;
-import org.jboss.identity.federation.bindings.util.RedirectBindingSignatureUtil;
+import org.jboss.identity.federation.bindings.util.RedirectBindingUtil;
import org.jboss.identity.federation.core.saml.v2.exceptions.AssertionExpiredException;
import org.jboss.identity.federation.saml.v2.protocol.AuthnRequestType;
import org.jboss.identity.federation.saml.v2.protocol.ResponseType;
@@ -90,7 +90,7 @@
if(p == null)
{
String destination = createSAMLRequestMessage("someuser", relayState, response);
- HTTPRedirectUtil.sendRedirectForResponder(destination, response);
+ HTTPRedirectUtil.sendRedirectForRequestor(destination, response);
return false;
}
@@ -108,7 +108,7 @@
try
{
String destination = createSAMLRequestMessage("someuser", relayState, response);
- HTTPRedirectUtil.sendRedirectForResponder(destination, response);
+ HTTPRedirectUtil.sendRedirectForRequestor(destination, response);
}
catch (Exception e)
{
@@ -144,7 +144,7 @@
ByteArrayOutputStream baos = new ByteArrayOutputStream();
saml2Request.marshall(authnRequest, baos);
- String base64Request = RedirectBindingSignatureUtil.deflateBase64URLEncode(baos.toByteArray());
+ String base64Request = RedirectBindingUtil.deflateBase64URLEncode(baos.toByteArray());
String destination = authnRequest.getDestination() + getDestination(base64Request, relayState);
log.debug("Sending to destination="+destination);
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectValve.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectValve.java 2009-01-15 01:15:52 UTC (rev 218)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/tomcat/sp/SPRedirectValve.java 2009-01-15 18:28:01 UTC (rev 219)
@@ -38,7 +38,7 @@
import org.jboss.identity.federation.api.saml.v2.request.SAML2Request;
import org.jboss.identity.federation.api.saml.v2.response.SAML2Response;
import org.jboss.identity.federation.bindings.util.HTTPRedirectUtil;
-import org.jboss.identity.federation.bindings.util.RedirectBindingSignatureUtil;
+import org.jboss.identity.federation.bindings.util.RedirectBindingUtil;
import org.jboss.identity.federation.saml.v2.protocol.AuthnRequestType;
import org.jboss.identity.federation.saml.v2.protocol.ResponseType;
@@ -77,7 +77,7 @@
if(samlResponse != null && samlResponse.length() > 0 )
{
//deal with saml response from IDP
- InputStream is = RedirectBindingSignatureUtil.urlBase64DeflateDecode(samlResponse);
+ InputStream is = RedirectBindingUtil.urlBase64DeflateDecode(samlResponse);
SAML2Response saml2Response = new SAML2Response();
@@ -106,8 +106,9 @@
ByteArrayOutputStream baos = new ByteArrayOutputStream();
saml2Request.marshall(authnRequest, baos);
- String base64Request = RedirectBindingSignatureUtil.deflateBase64URLEncode(baos.toByteArray());
- String destination = authnRequest.getDestination() + "?SAMLRequest=" + base64Request;
+ String base64Request = RedirectBindingUtil.deflateBase64URLEncode(baos.toByteArray());
+ String destination = authnRequest.getDestination() +
+ getDestinationURL(base64Request, null);
log.trace("Sending to destination="+destination);
log.trace(" ");
@@ -132,4 +133,14 @@
response.recycle();
getNext().invoke(request, response);
}
+
+
+ protected String getDestinationURL(String urlEncodedRequest, String urlEncodedRelayState)
+ {
+ StringBuilder sb = new StringBuilder();
+ sb.append("SAMLRequest=").append(urlEncodedRequest);
+ if(urlEncodedRelayState != null && urlEncodedRelayState.length() > 0)
+ sb.append("&RelayState=").append(urlEncodedRelayState);
+ return sb.toString();
+ }
}
\ No newline at end of file
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingSignatureUtil.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingSignatureUtil.java 2009-01-15 01:15:52 UTC (rev 218)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingSignatureUtil.java 2009-01-15 18:28:01 UTC (rev 219)
@@ -21,15 +21,11 @@
*/
package org.jboss.identity.federation.bindings.util;
-import java.io.InputStream;
import java.io.StringWriter;
-import java.net.URLDecoder;
import java.net.URLEncoder;
import java.security.PrivateKey;
import org.jboss.identity.federation.api.saml.v2.request.SAML2Request;
-import org.jboss.identity.federation.api.util.Base64;
-import org.jboss.identity.federation.api.util.DeflateUtil;
import org.jboss.identity.federation.core.saml.v2.util.SignatureUtil;
import org.jboss.identity.federation.saml.v2.protocol.AuthnRequestType;
@@ -59,7 +55,7 @@
saml2Request.marshall(authRequest, sw);
//URL Encode the Request
- String urlEncodedRequest = deflateBase64URLEncode(sw.toString());
+ String urlEncodedRequest = RedirectBindingUtil.deflateBase64URLEncode(sw.toString());
String urlEncodedRelayState = null;
if(relayState != null && relayState.length() > 0 )
@@ -97,7 +93,7 @@
String samlRequestTokenValue = getTokenValue(signedURL, "SAMLRequest");
SAML2Request saml2Request = new SAML2Request();
- return saml2Request.getAuthnRequestType(urlBase64DeflateDecode(samlRequestTokenValue));
+ return saml2Request.getAuthnRequestType(RedirectBindingUtil.urlBase64DeflateDecode(samlRequestTokenValue));
}
/**
@@ -110,69 +106,11 @@
{
String sigValueTokenValue = getTokenValue(signedURL,"Signature");
- return urlBase64Decode(sigValueTokenValue);
+ return RedirectBindingUtil.urlBase64Decode(sigValueTokenValue);
}
- /**
- * On the byte array, apply base64 encoding following by URL encoding
- * @param stringToEncode
- * @return
- * @throws Exception
- */
- public static String base64URLEncode(byte[] stringToEncode) throws Exception
- {
- String base64Request = Base64.encodeBytes(stringToEncode, Base64.DONT_BREAK_LINES);
- return URLEncoder.encode(base64Request, "UTF-8");
- }
/**
- * On the byte array, apply URL decoding followed by base64 decoding
- * @param encodedString
- * @return
- * @throws Exception
- */
- public static byte[] urlBase64Decode(String encodedString) throws Exception
- {
- String decodedString = URLDecoder.decode(encodedString, "UTF-8");
- return Base64.decode(decodedString);
- }
-
- /**
- * Apply deflate compression followed by base64 encoding and URL encoding
- * @param stringToEncode
- * @return
- * @throws Exception
- */
- public static String deflateBase64URLEncode(String stringToEncode) throws Exception
- {
- return deflateBase64URLEncode(stringToEncode.getBytes("UTF-8"));
- }
-
- /**
- * Apply deflate compression followed by base64 encoding and URL encoding
- * @param stringToEncode
- * @return
- * @throws Exception
- */
- public static String deflateBase64URLEncode(byte[] stringToEncode) throws Exception
- {
- byte[] deflatedMsg = DeflateUtil.encode(stringToEncode);
- return base64URLEncode(deflatedMsg);
- }
-
- /**
- * Apply URL decoding, followed by base64 decoding followed by deflate decompression
- * @param encodedString
- * @return
- * @throws Exception
- */
- public static InputStream urlBase64DeflateDecode(String encodedString) throws Exception
- {
- byte[] deflatedString = urlBase64Decode(encodedString);
- return DeflateUtil.decode(deflatedString);
- }
-
- /**
* From the query string that contains key/value pairs, get the value of a key
* <b>Note:</b> if the token is null, a null value is returned
* @param queryString
@@ -226,7 +164,7 @@
sb.append("&").append("SigAlg=").append(sigAlg);
//Encode the signature value
- String encodedSig = base64URLEncode(signature);
+ String encodedSig = RedirectBindingUtil.base64URLEncode(signature);
sb.append("&").append("Signature=").append(encodedSig);
Added: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingUtil.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingUtil.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/RedirectBindingUtil.java 2009-01-15 18:28:01 UTC (rev 219)
@@ -0,0 +1,96 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.federation.bindings.util;
+
+import java.io.InputStream;
+import java.net.URLDecoder;
+import java.net.URLEncoder;
+
+import org.jboss.identity.federation.api.util.Base64;
+import org.jboss.identity.federation.api.util.DeflateUtil;
+
+/**
+ * Utility class for SAML HTTP/Redirect binding
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Jan 14, 2009
+ */
+public class RedirectBindingUtil
+{
+ /**
+ * On the byte array, apply base64 encoding following by URL encoding
+ * @param stringToEncode
+ * @return
+ * @throws Exception
+ */
+ public static String base64URLEncode(byte[] stringToEncode) throws Exception
+ {
+ String base64Request = Base64.encodeBytes(stringToEncode, Base64.DONT_BREAK_LINES);
+ return URLEncoder.encode(base64Request, "UTF-8");
+ }
+
+ /**
+ * On the byte array, apply URL decoding followed by base64 decoding
+ * @param encodedString
+ * @return
+ * @throws Exception
+ */
+ public static byte[] urlBase64Decode(String encodedString) throws Exception
+ {
+ String decodedString = URLDecoder.decode(encodedString, "UTF-8");
+ return Base64.decode(decodedString);
+ }
+
+ /**
+ * Apply deflate compression followed by base64 encoding and URL encoding
+ * @param stringToEncode
+ * @return
+ * @throws Exception
+ */
+ public static String deflateBase64URLEncode(String stringToEncode) throws Exception
+ {
+ return deflateBase64URLEncode(stringToEncode.getBytes("UTF-8"));
+ }
+
+ /**
+ * Apply deflate compression followed by base64 encoding and URL encoding
+ * @param stringToEncode
+ * @return
+ * @throws Exception
+ */
+ public static String deflateBase64URLEncode(byte[] stringToEncode) throws Exception
+ {
+ byte[] deflatedMsg = DeflateUtil.encode(stringToEncode);
+ return base64URLEncode(deflatedMsg);
+ }
+
+ /**
+ * Apply URL decoding, followed by base64 decoding followed by deflate decompression
+ * @param encodedString
+ * @return
+ * @throws Exception
+ */
+ public static InputStream urlBase64DeflateDecode(String encodedString) throws Exception
+ {
+ byte[] deflatedString = urlBase64Decode(encodedString);
+ return DeflateUtil.decode(deflatedString);
+ }
+}
\ No newline at end of file
Modified: identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/cert/KeyStoreUtil.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/cert/KeyStoreUtil.java 2009-01-15 01:15:52 UTC (rev 218)
+++ identity-federation/trunk/identity-bindings/src/main/java/org/jboss/identity/federation/bindings/util/cert/KeyStoreUtil.java 2009-01-15 18:28:01 UTC (rev 219)
@@ -24,10 +24,16 @@
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
+import java.io.InputStream;
+import java.net.URL;
import java.security.GeneralSecurityException;
+import java.security.Key;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.KeyStore;
+import java.security.PrivateKey;
+import java.security.PublicKey;
+import java.security.cert.Certificate;
/**
* Utility to handle Java Keystore
@@ -36,20 +42,94 @@
*/
public class KeyStoreUtil
{
- public static KeyStore getKeyStore(String url, char[] password) throws GeneralSecurityException, IOException
+ /**
+ * Get the Keystore given the url to the keystore file as a string
+ * @param fileURL
+ * @param password
+ * @return
+ * @throws GeneralSecurityException
+ * @throws IOException
+ */
+ public static KeyStore getKeyStore(String fileURL, char[] password) throws GeneralSecurityException, IOException
{
- File file = new File(url);
+ if(fileURL == null)
+ throw new IllegalArgumentException("fileURL is null");
+
+ File file = new File(fileURL);
FileInputStream fis = new FileInputStream(file);
+ return getKeyStore(fis,password);
+ }
+
+ /**
+ * Get the Keystore given the URL to the keystore
+ * @param url
+ * @param password
+ * @return
+ * @throws GeneralSecurityException
+ * @throws IOException
+ */
+ public static KeyStore getKeyStore(URL url, char[] password) throws GeneralSecurityException, IOException
+ {
+ if(url == null)
+ throw new IllegalArgumentException("url is null");
+ return getKeyStore(url.openStream(), password);
+ }
+
+ /**
+ * Get the Key Store
+ * <b>Note:</b> This method wants the InputStream to be not null.
+ * @param ksStream
+ * @param password
+ * @return
+ * @throws GeneralSecurityException
+ * @throws IOException
+ * @throws IllegalArgumentException if ksStream is null
+ */
+ public static KeyStore getKeyStore(InputStream ksStream, char[] password) throws GeneralSecurityException, IOException
+ {
+ if(ksStream == null)
+ throw new IllegalArgumentException("InputStream for the KeyStore is null");
KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
- ks.load(fis, password);
+ ks.load(ksStream, password);
return ks;
}
+ /**
+ * Generate a Key Pair
+ * @param algo (RSA, DSA etc)
+ * @return
+ * @throws Exception
+ */
public static KeyPair generateKeyPair(String algo) throws Exception
{
KeyPairGenerator kpg = KeyPairGenerator.getInstance(algo);
return kpg.genKeyPair();
}
+ /**
+ * Get the Public Key from the keystore
+ * @param ks
+ * @param alias
+ * @param password
+ * @return
+ * @throws Exception
+ */
+ public static PublicKey getPublicKey(KeyStore ks, String alias, char[] password) throws Exception
+ {
+ PublicKey publicKey = null;
+
+ // Get private key
+ Key key = ks.getKey(alias, password);
+ if (key instanceof PrivateKey)
+ {
+ // Get certificate of public key
+ Certificate cert = ks.getCertificate(alias);
+
+ // Get public key
+ publicKey = cert.getPublicKey();
+ }
+
+ return publicKey;
+ }
}
\ No newline at end of file
Added: identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/KeystoreUtilUnitTestCase.java
===================================================================
--- identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/KeystoreUtilUnitTestCase.java (rev 0)
+++ identity-federation/trunk/identity-bindings/src/test/java/org/jboss/test/identity/federation/bindings/util/KeystoreUtilUnitTestCase.java 2009-01-15 18:28:01 UTC (rev 219)
@@ -0,0 +1,93 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.identity.federation.bindings.util;
+
+import java.io.InputStream;
+import java.security.KeyStore;
+import java.security.PrivateKey;
+import java.security.PublicKey;
+import java.util.Enumeration;
+
+import junit.framework.TestCase;
+
+import org.jboss.identity.federation.bindings.util.cert.KeyStoreUtil;
+import org.jboss.identity.federation.core.saml.v2.util.SignatureUtil;
+
+/**
+ * Test the KeyStore Util
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Jan 15, 2009
+ */
+public class KeystoreUtilUnitTestCase extends TestCase
+{
+
+ /**
+ * Keystore (created 15Jan2009 and valid for 200K days)
+ * The Keystore has been created with the command (all in one line)
+keytool -genkey -alias servercert
+ -keyalg RSA
+ -keysize 1024
+ -dname "CN=jbossidentity.jboss.org,OU=RD,O=JBOSS,L=Chicago,S=Illinois,C=US"
+ -keypass test123
+ -keystore jbid_test_keystore.jks
+ -storepass store123
+ -validity 200000
+ */
+ private String keystoreLocation = "keystore/jbid_test_keystore.jks";
+ private String keystorePass = "store123";
+ private String alias = "servercert";
+ private String keyPass = "test123";
+
+
+ /**
+ Generated a selfsigned cert
+ keytool -selfcert
+ -alias servercert
+ -keypass test123
+ -keystore jbid_test_keystore.jks
+ -dname "cn=jbid test, ou=JBoss, o=JBoss, c=US"
+ -storepass store123
+ */
+ public void testSignatureValidationInvalidation() throws Exception
+ {
+ ClassLoader tcl = Thread.currentThread().getContextClassLoader();
+ InputStream ksStream = tcl.getResourceAsStream(keystoreLocation);
+ assertNotNull("Input keystore stream is not null", ksStream);
+
+ KeyStore ks = KeyStoreUtil.getKeyStore(ksStream, keystorePass.toCharArray());
+ assertNotNull("KeyStore is not null",ks);
+
+ //Check that there are aliases in the keystore
+ Enumeration<String> aliases = ks.aliases();
+ assertTrue("Aliases are not empty", aliases.hasMoreElements());
+
+ PublicKey publicKey = KeyStoreUtil.getPublicKey(ks, alias, keyPass.toCharArray());
+ assertNotNull("Public Key is not null", publicKey);
+
+ PrivateKey privateKey = (PrivateKey) ks.getKey(alias, keyPass.toCharArray());
+
+ String content = "Hello";
+ byte[] sigValue = SignatureUtil.sign(content, privateKey);
+ boolean isValid = SignatureUtil.validate(content.getBytes("UTF-8"), sigValue, publicKey);
+ assertTrue("Valid sig?", isValid);
+ }
+}
\ No newline at end of file
Added: identity-federation/trunk/identity-bindings/src/test/resources/keystore/jbid_test_keystore.jks
===================================================================
(Binary files differ)
Property changes on: identity-federation/trunk/identity-bindings/src/test/resources/keystore/jbid_test_keystore.jks
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: identity-federation/trunk/identity-fed-core/src/main/java/org/jboss/identity/federation/core/saml/v2/util/SignatureUtil.java
===================================================================
--- identity-federation/trunk/identity-fed-core/src/main/java/org/jboss/identity/federation/core/saml/v2/util/SignatureUtil.java 2009-01-15 01:15:52 UTC (rev 218)
+++ identity-federation/trunk/identity-fed-core/src/main/java/org/jboss/identity/federation/core/saml/v2/util/SignatureUtil.java 2009-01-15 18:28:01 UTC (rev 219)
@@ -37,6 +37,11 @@
*/
public class SignatureUtil
{
+ /**
+ * Get the XML Signature URI for the algo (RSA, DSA)
+ * @param algo
+ * @return
+ */
public static String getXMLSignatureAlgorithmURI(String algo)
{
String xmlSignatureAlgo = null;
@@ -53,6 +58,13 @@
return xmlSignatureAlgo ;
}
+ /**
+ * Sign a string using the private key
+ * @param stringToBeSigned
+ * @param signingKey
+ * @return
+ * @throws Exception
+ */
public static byte[] sign(String stringToBeSigned, PrivateKey signingKey)
throws Exception
{
@@ -68,6 +80,14 @@
return sig.sign();
}
+ /**
+ * Validate the signed content with the signature value
+ * @param signedContent
+ * @param signatureValue
+ * @param validatingKey
+ * @return
+ * @throws Exception
+ */
public static boolean validate(byte[] signedContent,
byte[] signatureValue, PublicKey validatingKey) throws Exception
{
@@ -88,6 +108,15 @@
return sig.verify(signatureValue);
}
+ /**
+ * Validate the signature using a x509 certificate
+ * @param signedContent
+ * @param signatureValue
+ * @param signatureAlgorithm
+ * @param validatingCert
+ * @return
+ * @throws Exception
+ */
public static boolean validate(byte[] signedContent,
byte[] signatureValue,
String signatureAlgorithm,
17 years, 4 months