* Create a new GrouperQueryEngine object
* @param stemName the stem name we are going to be working with (not the full group, just the stem)
*/
public GrouperQueryEngine(String stemName){
try{
Config conf = Config.getInstance();
initialize(conf.getOption("ldap_host"),
conf.getOption("grouper_url"),
conf.getOption("grouper_user"),
conf.getOption("grouper_password"),
stemName);
}
catch(Exception e){
throw new RuntimeException(e);
}