Methods Summary |
---|
public void | addLookupAttributes(Entry[] attrSets)
manager.addAttributes(attrSets, true);
|
public void | addLookupGroups(java.lang.String[] groups)
try {
manager.addGroups(groups);
} catch (IOException ex) {
throw new RemoteException("Error in AddGroups", ex);
}
|
public void | addLookupLocators(LookupLocator[] locators)
manager.addLocators(locators);
|
public Entry[] | getLookupAttributes()
return manager.getAttributes();
|
public java.lang.String[] | getLookupGroups()
return manager.getGroups();
|
public LookupLocator[] | getLookupLocators()
return manager.getLocators();
|
public void | modifyLookupAttributes(Entry[] attrSetTemplates, Entry[] attrSets)
manager.modifyAttributes(attrSetTemplates, attrSets, true);
|
public void | removeLookupGroups(java.lang.String[] groups)
try {
manager.removeGroups(groups);
} catch (IOException ex) {
throw new RemoteException("Error in RemoveGroups", ex);
}
|
public void | removeLookupLocators(LookupLocator[] locators)
manager.removeLocators(locators);
|
public void | setLookupGroups(java.lang.String[] groups)
try {
manager.setGroups(groups);
} catch (IOException ex) {
throw new RemoteException("Error in SetGroups", ex);
}
|
public void | setLookupLocators(LookupLocator[] locators)
manager.setLocators(locators);
|