org.kuali.kpme.core.department.service
Interface DepartmentService

All Known Implementing Classes:
DepartmentServiceImpl

public interface DepartmentService


Method Summary
 Department getDepartment(String hrDeptId)
          Fetch department by id
 Department getDepartment(String department, org.joda.time.LocalDate asOfDate)
          Get Department as of a particular date passed in
 int getDepartmentCount(String department)
          get count of department with given department
 List<Department> getDepartments(String department)
          get count of department with given department
 List<Department> getDepartments(String location, org.joda.time.LocalDate asOfDate)
          Fetches a list of Department objects as of the specified date all of which belong to the indicated location.
 List<Department> getDepartments(String userPrincipalId, String department, String location, String descr, String active, String showHistory, String payrollApproval)
           
 List<String> getDepartmentsForLocation(String location, org.joda.time.LocalDate asOfDate)
          Fetches a list of departments as of the specified date all of which belong to the indicated location.
 List<String> getDepartmentsForLocations(List<String> locations, org.joda.time.LocalDate asOfDate)
          Fetches a list of departments as of the specified date all of which belong to the indicated locations.
 Department getDepartmentWithoutRoles(String department, org.joda.time.LocalDate asOfDate)
          Fetch department by id without sub kim role member data
 

Method Detail

getDepartment

@Cacheable(value="http://kpme.kuali.org/core/Department",
           key="\'hrDeptId=\' + #p0")
Department getDepartment(String hrDeptId)
Fetch department by id

Parameters:
hrDeptId -
Returns:

getDepartments

List<Department> getDepartments(String userPrincipalId,
                                String department,
                                String location,
                                String descr,
                                String active,
                                String showHistory,
                                String payrollApproval)

getDepartmentCount

int getDepartmentCount(String department)
get count of department with given department

Parameters:
department -
Returns:
int

getDepartment

@Cacheable(value="http://kpme.kuali.org/core/Department",
           key="\'department=\' + #p0 + \'|\' + \'asOfDate=\' + #p1")
Department getDepartment(String department,
                                   org.joda.time.LocalDate asOfDate)
Get Department as of a particular date passed in

Parameters:
department -
asOfDate -
Returns:

getDepartmentWithoutRoles

@Cacheable(value="http://kpme.kuali.org/core/Department",
           key="\'{getDepartmentWithoutRoles}\' + \'department=\' + #p0 + \'|\' + \'asOfDate=\' + #p1")
Department getDepartmentWithoutRoles(String department,
                                               org.joda.time.LocalDate asOfDate)
Fetch department by id without sub kim role member data

Parameters:
department -
asOfDate -
Returns:
Department

getDepartments

@Cacheable(value="http://kpme.kuali.org/core/Department",
           key="\'chart=\' + #p0 + \'|\' + \'asOfDate=\' + #p1")
List<Department> getDepartments(String location,
                                          org.joda.time.LocalDate asOfDate)
Fetches a list of Department objects as of the specified date all of which belong to the indicated location.

Parameters:
location - The search criteria
asOfDate - Effective date
Returns:
A List object.

getDepartmentsForLocation

@Cacheable(value="http://kpme.kuali.org/core/Department",
           key="\'{getDepartmentsForLocation}\' + \'location=\' + #p0 + \'|\' + \'asOfDate=\' + #p1")
List<String> getDepartmentsForLocation(String location,
                                                 org.joda.time.LocalDate asOfDate)
Fetches a list of departments as of the specified date all of which belong to the indicated location.

Parameters:
location - The search criteria
asOfDate - Effective date
Returns:
A List object.

getDepartmentsForLocations

@Cacheable(value="http://kpme.kuali.org/core/Department",
           key="\'{getDepartmentsForLocations}\' + \'location=\' + T(org.kuali.rice.core.api.cache.CacheKeyUtils).key(#p0) + \'|\' + \'asOfDate=\' + #p1")
List<String> getDepartmentsForLocations(List<String> locations,
                                                  org.joda.time.LocalDate asOfDate)
Fetches a list of departments as of the specified date all of which belong to the indicated locations.

Parameters:
locations - The search criteria
asOfDate - Effective date
Returns:
A List object.

getDepartments

List<Department> getDepartments(String department)
get count of department with given department

Parameters:
department -
Returns:
int


Copyright © 2004-2014 The Kuali Foundation. All Rights Reserved.