Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Method called to retrieve a specific Department by Department Id
Department getDepartmentByName(String name)
Method called to retrieve a specific Department by Department Name
User getDepartmentHod(String departmentId)
...
Method called to retrieve the number of Departments within the directory
Collection<Employment> getEmployments(String filterString, String organizationId, String departmentId, String gradeId, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve the users' employment info within the directory filtered by search parameters
Long getTotalEmployments(String filterString, String organizationId, String departmentId, String gradeId)
Method called to retrieve the number of users' employment info within the directory
Grade getGradeById(String gradeId)
...
Method called to retrieve the entire Group listing within the directory filtered by search parameters
Collection<Group> getGroupsByOrganizationId(String filterString, String organizationId, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve all groups within a specific Organization filtered by search parameters
Long getTotalGroups()
Method call to retrieve the number of Groups available
Long getTotalGroupsByOrganizationId(String filterString, String organizationId)
Method call to retrieve the number of Groups available within a specific Organization filtered by search parameters
Collection<User> getUserByDepartmentId(String departmentId)
...
Method called to retrieve the entire User listing within the directory filtered by search parameters
Collection<User> getUsers(String filterString, String organizationId, String departmentId, String gardeId, String groupId, String roleId, String active, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve the users within the directory filtered by search parameters
...
Method called to retrieve the number of Users available
Long getTotalUsers(String filterString, String organizationId, String departmentId, String gardeId, String groupId, String roleId, String active)
Method call to retrieve the number of Users available within the directory filtered by search parametersisUserInGroup
boolean isUserInGroup(String username, String groupName)
...
Method called to retrieve a listing of all the subordinates which reports to a specific User
Collection<User> getUsersSubordinate(String username, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve a listing of all the subordinates which reports to a specific User filtered by search parameters
Long getTotalUsersSubordinate(String username)
Method called to retrieve the number of 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
...