Package org.apache.directory.shared.ldap.schema.normalizers

Examples of org.apache.directory.shared.ldap.schema.normalizers.ConcreteNameComponentNormalizer


        objectClassType = schemaManager.lookupAttributeTypeRegistry( objectClassOid );
        acSubentryType = schemaManager.lookupAttributeTypeRegistry( acSubentryOid );
        entryAciType = schemaManager.lookupAttributeTypeRegistry( SchemaConstants.ENTRY_ACI_AT_OID );
        subentryAciType = schemaManager.lookupAttributeTypeRegistry( SchemaConstants.SUBENTRY_ACI_AT_OID );
       
        aciParser = new ACIItemParser( new ConcreteNameComponentNormalizer( schemaManager ), schemaManager.getNormalizerMapping() );
        engine = new ACDFEngine( schemaManager.getGlobalOidRegistry(), schemaManager );
        chain = directoryService.getInterceptorChain();

        // stuff for dealing with subentries (garbage for now)
        Value<?> subschemaSubentry =
View Full Code Here


     */
    public TupleCache( CoreSession session ) throws Exception
    {
        SchemaManager schemaManager = session.getDirectoryService().getSchemaManager();
        this.nexus = session.getDirectoryService().getPartitionNexus();
        NameComponentNormalizer ncn = new ConcreteNameComponentNormalizer( schemaManager );
        aciParser = new ACIItemParser( ncn, schemaManager.getNormalizerMapping() );
        prescriptiveAciAT = schemaManager.lookupAttributeTypeRegistry( SchemaConstants.PRESCRIPTIVE_ACI_AT );
        initialize( session );
    }
View Full Code Here

        if ( !loaded )
        {
            fail( "Schema load failed : " + ExceptionUtils.printErrors( schemaManager.getErrors() ) );
        }

        NameComponentNormalizer ncn = new ConcreteNameComponentNormalizer( schemaManager );
        visitor = new FilterNormalizingVisitor( ncn, schemaManager );
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.shared.ldap.schema.normalizers.ConcreteNameComponentNormalizer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.