package org.argeo.api.cms.directory; import org.osgi.service.useradmin.Role; /** Information about a user directory. */ public interface UserDirectory extends CmsDirectory { HierarchyUnit getHierarchyUnit(Role role); Iterable getHierarchyUnitRoles(HierarchyUnit hierarchyUnit, String filter, boolean deep); String getRolePath(Role role); String getRoleSimpleName(Role role); Role getRoleByPath(String path); }