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 all Departments within a specific Organization filtered by search parameters
Collection<Department> getDepartmentsByOrganizationId(String filterString, 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<Department> getDepartmentsByParentId(String filterString, String parentId, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve all sub Department within a specific Department filtered by search parameters
...
Method called to retrieve a listing of Users which belongs to a specified Department and Grade
Department getParentDepartment(String id)
Method called to retrieve a parent Department of a Department
Department getParentDepartmentByName(String name)
Method called to retrieve a parent Department of a Department by Department Name
Long getTotalDepartments(String organizationId)
Method called to retrieve the number of Departments within the directory
Long getTotalDepartmentnsByOrganizationId(String filterString, String organizationId)
Method called to retrieve the number of Departments within a specific Organization filtered by search parameters
Long getTotalDepartmentsByParentId(String filterString, String parentId)
Method called to retrieve the number of sub Departments within a specific Department
Employment getEmployment(String id)
Method called to retrieve a specific Employment info
Collection<Employment> getEmployments(String filterString, String organizationId, String departmentId, String gradeId, String sort, Boolean desc, Integer start, Integer rows)
...
Method called to retrieve a specific Grade by Grade id
Grade getGradeByName(String name)
Method called to retrieve a specific Grade by Grade Name
Collection<Grade> getGradeList()
Generic method called to retrieve all Grades within the directory
Collection<Grade> getGradesByOrganizationId(String filterString, String organizationId, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve all Grades within a specific Organization filtered by search parameters
Long getTotalGradesByOrganizationId(String filterString, String organizationId)
Method called to retrieve the number of Grades within a specific Organization filtered by search parameters
Group getGroupById(String groupId)
...
Method called to retrieve a specific Group by name
Collection<Group> getGroupsByUserId(String filterString, String userId, String organizationId, Boolean inGroup, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve a collection of Group in/not in which a user belongs to and filtered by search parameters
Collection<Group> getGroupByUsername(String username)
...
Method call to retrieve the number of Groups available within a specific Organization filtered by search parameters
Long getTotalGroupsByUserId(String filterString, String userId, String organizationId, Boolean inGroup)
Method called to retrieve the number of Group in/not in which a user belongs to
Organization getOrganization(String id)
Method called to retrieve a specific Organization by Id
Organization getOrganizationByName(String name)
Method called to retrieve a specific Organization by Name
Collection<Organization> getOrganizationsByFilter(String filterString, String sort, Boolean desc, Integer start, Integer rows)
Method called to retrieve all Organizations filtered by search parameters
Long getTotalOrganizationsByFilter(String filterString)
Method called to retrieve the number of Organizations
Collection<User> getUserByDepartmentId(String departmentId)
...