Examples of ListOperationContext


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

    public EntryFilteringCursor list( DN dn, AliasDerefMode aliasDerefMode,
        Set<AttributeTypeOptions> returningAttributes ) throws Exception
    {
        OperationManager operationManager = directoryService.getOperationManager();
       
        ListOperationContext listOperationContext = new ListOperationContext( this, dn, returningAttributes );
        listOperationContext.setAliasDerefMode( aliasDerefMode );
       
        return operationManager.list( listOperationContext );
    }
View Full Code Here

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

    public EntryFilteringCursor list( DN dn, AliasDerefMode aliasDerefMode,
        Set<AttributeTypeOptions> returningAttributes, long sizeLimit, int timeLimit ) throws Exception
    {
        OperationManager operationManager = directoryService.getOperationManager();

        ListOperationContext listOperationContext = new ListOperationContext( this, dn, returningAttributes );
        listOperationContext.setSizeLimit( sizeLimit );
        listOperationContext.setTimeLimit( timeLimit );
        listOperationContext.setAliasDerefMode( aliasDerefMode );
    
        return operationManager.list( listOperationContext );
    }
View Full Code Here

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

    public EntryFilteringCursor list( DN dn, AliasDerefMode aliasDerefMode,
        Set<AttributeTypeOptions> returningAttributes ) throws Exception
    {
        OperationManager operationManager = directoryService.getOperationManager();

        ListOperationContext listOperationContext = new ListOperationContext( this, dn, returningAttributes );
        listOperationContext.setAliasDerefMode( aliasDerefMode );
       
        return operationManager.list( listOperationContext );
    }
View Full Code Here

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

    public EntryFilteringCursor list( DN dn, AliasDerefMode aliasDerefMode,
        Set<AttributeTypeOptions> returningAttributes, long sizeLimit, int timeLimit ) throws Exception
    {
        OperationManager operationManager = directoryService.getOperationManager();

        ListOperationContext listOperationContext = new ListOperationContext( this, dn, returningAttributes );
        listOperationContext.setSizeLimit( sizeLimit );
        listOperationContext.setTimeLimit( timeLimit );
        listOperationContext.setAliasDerefMode( aliasDerefMode );
       
        return operationManager.list( listOperationContext );
    }
View Full Code Here

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

        String msg = "Attempt to delete non-existant entry: ";
        assertHasEntry( nextInterceptor, opContext, msg, name );

        // check if entry to delete has children (only leaves can be deleted)
        boolean hasChildren = false;
        EntryFilteringCursor list = nextInterceptor.list( new ListOperationContext( opContext.getSession(), name ) );
       
        if ( list.next() )
        {
            hasChildren = true;
        }
View Full Code Here

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

    public EntryFilteringCursor list( Dn dn, AliasDerefMode aliasDerefMode,
        Set<AttributeTypeOptions> returningAttributes ) throws LdapException
    {
        OperationManager operationManager = directoryService.getOperationManager();

        ListOperationContext listContext = new ListOperationContext( this, dn, returningAttributes );
        listContext.setAliasDerefMode( aliasDerefMode );

        return operationManager.list( listContext );
    }
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.