import javax.naming.*;
import javax.naming.directory.*;

import java.util.Hashtable;

/**
 * Demonstrates how to perform a search by specifying a search filter
 * and search controls to search an object.
 *
 * usage: java SearchObject
 */
class SearchObject {
    public static void main(String[] args) {

	// Set up environment for creating initial context
	Hashtable env = new Hashtable(11);
	env.put(Context.INITIAL_CONTEXT_FACTORY, 
	    "com.sun.jndi.ldap.LdapCtxFactory");
	env.put(Context.PROVIDER_URL, "ldap://localhost:389/o=JNDITutorial");

	try {
	    // Create initial context
	    DirContext ctx = new InitialDirContext(env);

	    // Specify the ids of the attributes to return
	    String[] attrIDs = {"sn", "telephonenumber", "golfhandicap", "mail"};
	    SearchControls ctls = new SearchControls();
	    ctls.setReturningAttributes(attrIDs);
	    ctls.setSearchScope(SearchControls.OBJECT_SCOPE);

	    // Specify the search filter to match
	    // Ask for objects with attribute sn == Geisel and which have
	    // the "mail" attribute.
	    String filter = "(&(sn=Geisel)(mail=*))";

	    // Search subtree for objects using filter
	    NamingEnumeration answer = 
		ctx.search("cn=Ted Geisel, ou=People", filter, ctls);

	    // Print the answer
	    Search.printSearchEnumeration(answer);
	} catch (Exception e) {
	    e.printStackTrace();
	}
    }
}
