Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
boolean authenticate(String username, String password)
Method called to authenticate a particular User against the directory
Department getDepartmentById(String departmentId)
Method called to retrieve a specific Department by Department Id
User getDepartmentHod(String departmentId)
Method called to return a specific HOD for a Department
Collection<Department> getDepartmentList()
Generic method called to retrieve all Departments within the directory
Collection<Department> getDepartmentList(String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve all Departments within the directory filtered by search parameters
Collection<Department> getDepartmentListByOrganization(String organizationId, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve all Departments within a specific Organization filtered by search parameters
Collection<User> getDepartmentUserByGradeId(String departmentId, String gradeId)
Method called to retrieve a listing of Users which belongs to a specified Department and Grade
Long getTotalDepartments(String organizationId)
Method called to retrieve the number of Departments within the directory
Grade getGradeById(String gradeId)
Method called to retrieve a specific Grade by Grade id
Collection<Grade> getGradeList()
Generic method called to retrieve all Grades within the directory
Group getGroupById(String groupId)
Method called to retrieve a specific Group by id
Group getGroupByName(String groupName)
Method called to retrieve a specific Group by name
Collection<Group> getGroupByUsername(String username)
Method called to retrieve a collection of Group in which a user belongs to
Collection<Group> getGroupList()
Generic method called to retrieve the entire Group listing within the directory
Collection<Group> getGroupList(String nameFilter, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve the entire Group listing within the directory filtered by search parameters
Long getTotalGroups()
Method call to retrieve the number of Groups available
Collection<User> getUserByDepartmentId(String departmentId)
Method called to retrieve a listing of Users by Department id
Collection<User> getUserByGradeId(String gradeId)
Method called to retrieve a listing of Users by Grade id
Collection<User> getUserByGroupId(String groupId)
Method called to retrieve a listing of Users by Group id
Collection<User> getUserByGroupName(String groupName)
Method called to retrieve a listing of Users by Group name
User getUserById(String userId)
Method called to retrieve a specific User by User id
Collection<User> getUserByOrganizationId(String organizationId)
Method called to retrieve a listing of Users by Organization id
User getUserByUsername(String username)
Method called to retrieve a specific User by Username
Collection<User> getUserList()
Generic method called to retrieve the entire User listing within the directory
Collection<User> getUserList(String nameFilter, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve the entire User listing within the directory filtered by search parameters
Long getTotalUsers()
Method called to retrieve the number of Users available
boolean isUserInGroup(String username, String groupName)
Method called to check if a User belongs to a specific Group
Collection<User> getUserDepartmentUser(String username)
Method called to retrieve a listing of Users which belongs to the same Department as the specific Username
Collection<User> getUserHod(String username)
Method called to retrieve a listing of HODs in which a specific User reports to
Collection<User> getUserSubordinate(String username)
Method called to retrieve a listing of all the subordinates which reports to a specific User
Collection<Role> getUserRoles(String username)
Method called to retrieve the Roles belonging to a specific User by Username
public org.joget.directory.model.service.DirectoryManager getDirectoryManagerImpl(java.util.Map properties)
Used by System to retrieve a directory manager implementation