Package org.apache.ldap.server.db

Examples of org.apache.ldap.server.db.SearchResultEnumeration


    /**
     * @see org.apache.ldap.server.BackingStore#list( Name )
     */
    public NamingEnumeration list( Name base ) throws NamingException
    {
        SearchResultEnumeration list;
        list = new SearchResultEnumeration( ArrayUtils.EMPTY_STRING_ARRAY,
                db.list( db.getEntryId( base.toString() ) ), db );
        return list;
    }
View Full Code Here


        String [] attrIds = searchCtls.getReturningAttributes();
        NamingEnumeration underlying = null;
       
        underlying = engine.search( base, env, filter, searchCtls );
       
        return new SearchResultEnumeration( attrIds, underlying, db );
    }
View Full Code Here

TOP

Related Classes of org.apache.ldap.server.db.SearchResultEnumeration

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.