Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Method called to retrieve all Departments within a specific Organization filtered by search parameters

getDepartmentsByOrganizationId
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

getDepartmentsByParentId
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

getDepartmentUserByGradeId

...

Method called to retrieve a listing of Users which belongs to a specified Department and Grade

getParentDepartment
Department getParentDepartment(String id)

Method called to retrieve a parent Department of a Department

getParentDepartmentByName
Department getParentDepartmentByName(String name)

Method called to retrieve a parent Department of a Department by Department Name

getTotalDepartments
Long getTotalDepartments(String organizationId)

Method called to retrieve the number of Departments within the directory

getTotalDepartmentnsByOrganizationId
Long getTotalDepartmentnsByOrganizationId(String filterString, String organizationId)

Method called to retrieve the number of Departments within a specific Organization filtered by search parameters

getTotalDepartmentsByParentId
Long getTotalDepartmentsByParentId(String filterString, String parentId)

Method called to retrieve the number of sub Departments within a specific Department 

getEmployment
Employment getEmployment(String id)

Method called to retrieve a specific Employment info 

getEmployments
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

getGradeByName
Grade getGradeByName(String name)

Method called to retrieve a specific Grade by Grade Name

getGradeList
Collection<Grade> getGradeList()

Generic method called to retrieve all Grades within the directory

getGradesByOrganizationId
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

getTotalGradesByOrganizationId
Long getTotalGradesByOrganizationId(String filterString, String organizationId)

Method called to retrieve the number of Grades within a specific Organization filtered by search parameters

getGroupById
Group getGroupById(String groupId)

...

Method called to retrieve a specific Group by name

getGroupsByUserId
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

getGroupByUsername
Collection<Group> getGroupByUsername(String username)

...

Method call to retrieve the number of Groups available within a specific Organization filtered by search parameters

getTotalGroupsByUserId
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

getOrganization
Organization getOrganization(String id)

Method called to retrieve a specific Organization by Id

getOrganizationByName
Organization getOrganizationByName(String name)

Method called to retrieve a specific Organization by Name

getOrganizationsByFilter
Collection<Organization> getOrganizationsByFilter(String filterString, String sort, Boolean desc, Integer start, Integer rows)

Method called to retrieve all Organizations filtered by search parameters

getTotalOrganizationsByFilter
Long getTotalOrganizationsByFilter(String filterString)

Method called to retrieve the number of Organizations

getUserByDepartmentId
Collection<User> getUserByDepartmentId(String departmentId)

...