Examples of ListOperationContext


Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

     * @see org.apache.directory.server.core.CoreSession#list(org.apache.directory.shared.ldap.name.LdapDN, org.apache.directory.shared.ldap.message.AliasDerefMode, java.util.Set, int, int)
     */
    public EntryFilteringCursor list( LdapDN dn, AliasDerefMode aliasDerefMode,
        Set<AttributeTypeOptions> returningAttributes, int sizeLimit, int timeLimit ) throws Exception
    {
        ListOperationContext opContext = new ListOperationContext( this, dn, aliasDerefMode, returningAttributes );
        opContext.setSizeLimit( sizeLimit );
        opContext.setTimeLimit( timeLimit );
        OperationManager operationManager = directoryService.getOperationManager();
        return operationManager.list( opContext );
    }
View Full Code Here

Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

                return attributeTypeList;
            }

            LOG.debug( "{} schema: loading attributeTypes", schema.getSchemaName() );

            EntryFilteringCursor list = partition.list( new ListOperationContext( null, dn ) );

            // Loop on all the AttributeTypes and add them to the list
            while ( list.next() )
            {
                ServerEntry result = list.get();
View Full Code Here

Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

                return comparatorList;
            }

            LOG.debug( "{} schema: loading comparators", schema.getSchemaName() );

            EntryFilteringCursor list = partition.list( new ListOperationContext( null, dn ) );

            while ( list.next() )
            {
                ClonedServerEntry entry = list.get();
View Full Code Here

Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

                return matchingRuleList;
            }

            LOG.debug( "{} schema: loading matchingRules", schema.getSchemaName() );

            EntryFilteringCursor list = partition.list( new ListOperationContext( null, dn ) );

            while ( list.next() )
            {
                ServerEntry entry = list.get();
View Full Code Here

Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

                return normalizerList;
            }

            LOG.debug( "{} schema: loading normalizers", schema.getSchemaName() );

            EntryFilteringCursor list = partition.list( new ListOperationContext( null, dn ) );

            while ( list.next() )
            {
                ClonedServerEntry entry = list.get();
View Full Code Here

Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

                return objectClassList;
            }

            LOG.debug( "{} schema: loading objectClasses", schema.getSchemaName() );

            EntryFilteringCursor list = partition.list( new ListOperationContext( null, dn ) );

            while ( list.next() )
            {
                ClonedServerEntry entry = list.get();
View Full Code Here

Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

                return syntaxList;
            }

            LOG.debug( "{} schema: loading syntaxes", schema.getSchemaName() );

            EntryFilteringCursor list = partition.list( new ListOperationContext( null, dn ) );

            while ( list.next() )
            {
                ServerEntry entry = list.get();
View Full Code Here

Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

                return syntaxCheckerList;
            }

            LOG.debug( "{} schema: loading syntaxCsheckers", schema.getSchemaName() );

            EntryFilteringCursor list = partition.list( new ListOperationContext( null, dn ) );

            while ( list.next() )
            {
                ServerEntry entry = list.get();
View Full Code Here

Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

                return attributeTypeList;
            }

            LOG.debug( "{} schema: loading attributeTypes", schema.getSchemaName() );

            EntryFilteringCursor list = partition.list( new ListOperationContext( null, dn ) );

            try
            {
                // Loop on all the AttributeTypes and add them to the list
                while ( list.next() )
View Full Code Here

Examples of org.apache.directory.server.core.interceptor.context.ListOperationContext

                return comparatorList;
            }

            LOG.debug( "{} schema: loading comparators", schema.getSchemaName() );

            EntryFilteringCursor list = partition.list( new ListOperationContext( null, dn ) );

            try
            {
                while ( list.next() )
                {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.