Uses of Class
org.kuali.hr.job.Job

Packages that use Job
org.kuali.hr.job.dao   
org.kuali.hr.job.service   
org.kuali.hr.job.validation   
org.kuali.hr.lm.accrual   
org.kuali.hr.lm.accrual.service   
org.kuali.hr.lm.earncodesec   
org.kuali.hr.lm.timeoff.service   
org.kuali.hr.time.assignment   
org.kuali.hr.time.base.web   
org.kuali.hr.time.clock.location   
org.kuali.hr.time.clocklog   
org.kuali.hr.time.dept.lunch   
org.kuali.hr.time.timesheet   
 

Uses of Job in org.kuali.hr.job.dao
 

Methods in org.kuali.hr.job.dao that return Job
 Job JobDaoSpringOjbImpl.getJob(String hrJobId)
           
 Job JobDao.getJob(String hrJobId)
          Get job based on id
 Job JobDaoSpringOjbImpl.getJob(String principalId, Long jobNumber, Date asOfDate)
           
 Job JobDao.getJob(String principalId, Long jobNumber, Date asOfDate)
           
 Job JobDaoSpringOjbImpl.getMaxJob(String principalId)
           
 Job JobDao.getMaxJob(String principalId)
          Get job with max(jobNumber) for a certain principalId
 Job JobDaoSpringOjbImpl.getMaxTimestampJob(String principalId)
           
 Job JobDao.getMaxTimestampJob(String principalId)
           
 Job JobDaoSpringOjbImpl.getPrimaryJob(String principalId, Date payPeriodEndDate)
           
 Job JobDao.getPrimaryJob(String principalId, Date payPeriodEndDate)
          Get Primary Job as indicated by primary indicator on Job table
 

Methods in org.kuali.hr.job.dao that return types with arguments of type Job
 List<Job> JobDaoSpringOjbImpl.getActiveJobsForPayType(String hrPayType, Date asOfDate)
           
 List<Job> JobDao.getActiveJobsForPayType(String hrPayType, Date asOfDate)
          Fetch active jobs that are incumbents of the payType
 List<Job> JobDaoSpringOjbImpl.getActiveJobsForPosition(String positionNbr, Date asOfDate)
           
 List<Job> JobDao.getActiveJobsForPosition(String positionNbr, Date asOfDate)
          Fetch active jobs that are incumbents of the position
 List<Job> JobDaoSpringOjbImpl.getActiveLeaveJobs(String principalId, Date asOfDate)
           
 List<Job> JobDao.getActiveLeaveJobs(String principalId, Date asOfDate)
           
 List<Job> JobDaoSpringOjbImpl.getAllActiveLeaveJobs(String principalId, Date asOfDate)
           
 List<Job> JobDao.getAllActiveLeaveJobs(String principalId, Date asOfDate)
           
 List<Job> JobDaoSpringOjbImpl.getAllInActiveLeaveJobsInRange(String principalId, Date startDate, Date endDate)
           
 List<Job> JobDao.getAllInActiveLeaveJobsInRange(String principalId, Date startDate, Date endDate)
           
 List<Job> JobDaoSpringOjbImpl.getInactiveLeaveJobs(Long jobNumber, Date asOfDate, Date jobDate)
           
 List<Job> JobDao.getInactiveLeaveJobs(Long jobNumber, Date startDate, Date endDate)
           
 List<Job> JobDaoSpringOjbImpl.getJobs(String principalId, Date payPeriodEndDate)
           
 List<Job> JobDao.getJobs(String principalId, Date payPeriodEndDate)
          Provides a list of current jobs that are valid relative to the provided effective date.
 List<Job> JobDaoSpringOjbImpl.getJobs(String principalId, String jobNumber, String dept, String positionNumber, String hrPayType, Date fromEffdt, Date toEffdt, String active, String showHistory)
           
 List<Job> JobDao.getJobs(String principalId, String jobNumber, String dept, String positionNbr, String payType, Date fromEffdt, Date toEffdt, String active, String showHistory)
           
 

Methods in org.kuali.hr.job.dao with parameters of type Job
 void JobDaoSpringOjbImpl.saveOrUpdate(Job job)
           
 void JobDao.saveOrUpdate(Job job)
          Saves or Updates a Job
 

Method parameters in org.kuali.hr.job.dao with type arguments of type Job
 void JobDaoSpringOjbImpl.saveOrUpdate(List<Job> jobList)
           
 void JobDao.saveOrUpdate(List<Job> jobList)
          Saves or updates a job list
 

Uses of Job in org.kuali.hr.job.service
 

Methods in org.kuali.hr.job.service that return Job
 Job JobService.getJob(String hrJobId)
          Get job by the unique id
 Job JobServiceImpl.getJob(String hrJobId)
           
 Job JobService.getJob(String principalId, Long jobNumber, Date asOfDate)
          Provides a job by specific job number, principal ID and as of Date combination.
 Job JobServiceImpl.getJob(String principalId, Long jobNumber, Date asOfDate)
           
 Job JobService.getJob(String principalId, Long jobNumber, Date asOfDate, boolean chkDetails)
          Provides a job by specific job number, principal ID and as of Date combination, and check details will throw error if required.
 Job JobServiceImpl.getJob(String principalId, Long jobNumber, Date asOfDate, boolean chkDetails)
           
 Job JobService.getMaxJob(String principalId)
          Get the max jobnumber job for this principal
 Job JobServiceImpl.getMaxJob(String principalId)
           
 Job JobService.getMaxTimestampJob(String principalId)
           
 Job JobServiceImpl.getMaxTimestampJob(String principalId)
           
 Job JobService.getPrimaryJob(String principalId, Date asOfDate)
          For a given principal ID, the job that is marked "primary" is returned here.
 Job JobServiceImpl.getPrimaryJob(String principalId, Date payPeriodEndDate)
           
 

Methods in org.kuali.hr.job.service that return types with arguments of type Job
 List<Job> JobService.getActiveJobsForPayType(String hrPayType, Date asOfDate)
           
 List<Job> JobServiceImpl.getActiveJobsForPayType(String hrPayType, Date asOfDate)
           
 List<Job> JobService.getActiveJobsForPosition(String positionNbr, Date asOfDate)
           
 List<Job> JobServiceImpl.getActiveJobsForPosition(String positionNbr, Date asOfDate)
           
 List<Job> JobService.getActiveLeaveJobs(String principalId, Date asOfDate)
          Get list of active jobs eligible for leave for given principal and date
 List<Job> JobServiceImpl.getActiveLeaveJobs(String principalId, Date asOfDate)
           
 List<Job> JobService.getAllActiveLeaveJobs(String principalId, Date asOfDate)
          Get list of all active jobs eligible for leave for given principal and date range
 List<Job> JobServiceImpl.getAllActiveLeaveJobs(String principalId, Date asOfDate)
           
 List<Job> JobService.getAllInActiveLeaveJobsInRange(String principalId, Date startDate, Date endDate)
           
 List<Job> JobServiceImpl.getAllInActiveLeaveJobsInRange(String principalId, Date startDate, Date endDate)
           
 List<Job> JobService.getInactiveLeaveJobs(Long jobNumber, Date startDate, Date endDate)
           
 List<Job> JobServiceImpl.getInactiveLeaveJobs(Long jobNumber, Date startDate, Date endDate)
           
 List<Job> JobService.getJobs(String principalId, Date asOfDate)
          Provides a list of current jobs that are valid relative to the provided effective date.
 List<Job> JobServiceImpl.getJobs(String principalId, Date asOfDate)
           
 List<Job> JobService.getJobs(String principalId, String firstName, String lastName, String jobNumber, String dept, String positionNbr, String payType, Date fromEffdt, Date toEffdt, String active, String showHistory)
           
 List<Job> JobServiceImpl.getJobs(String principalId, String firstName, String lastName, String jobNumber, String dept, String positionNbr, String payType, Date fromEffdt, Date toEffdt, String active, String showHistory)
           
 

Methods in org.kuali.hr.job.service with parameters of type Job
 void JobService.saveOrUpdate(Job job)
          Updates or saves a job
 void JobServiceImpl.saveOrUpdate(Job job)
           
 void JobMaintainableImpl.setJobNumber(Job job)
           
 

Method parameters in org.kuali.hr.job.service with type arguments of type Job
 BigDecimal JobService.getFteSumForJobs(List<Job> jobs)
          Get sum of fte of given jobs
 BigDecimal JobServiceImpl.getFteSumForJobs(List<Job> jobs)
           
 BigDecimal JobService.getStandardHoursSumForJobs(List<Job> jobs)
          Get sum of standard hours of given jobs
 BigDecimal JobServiceImpl.getStandardHoursSumForJobs(List<Job> jobs)
           
 void JobService.saveOrUpdate(List<Job> jobList)
          Updates or saves a list of jobs
 void JobServiceImpl.saveOrUpdate(List<Job> jobList)
           
 

Uses of Job in org.kuali.hr.job.validation
 

Methods in org.kuali.hr.job.validation with parameters of type Job
protected  boolean JobValidation.validateDepartment(Job job)
           
 

Uses of Job in org.kuali.hr.lm.accrual
 

Methods in org.kuali.hr.lm.accrual that return types with arguments of type Job
 List<Job> RateRange.getJobs()
           
 

Method parameters in org.kuali.hr.lm.accrual with type arguments of type Job
 void RateRange.setJobs(List<Job> jobs)
           
 

Uses of Job in org.kuali.hr.lm.accrual.service
 

Methods in org.kuali.hr.lm.accrual.service that return types with arguments of type Job
 List<Job> AccrualServiceImpl.getJobsForDate(List<Job> activeJobs, List<Job> inactiveJobs, Date currentDate)
           
 

Method parameters in org.kuali.hr.lm.accrual.service with type arguments of type Job
 List<Job> AccrualServiceImpl.getJobsForDate(List<Job> activeJobs, List<Job> inactiveJobs, Date currentDate)
           
 List<Job> AccrualServiceImpl.getJobsForDate(List<Job> activeJobs, List<Job> inactiveJobs, Date currentDate)
           
 

Uses of Job in org.kuali.hr.lm.earncodesec
 

Methods in org.kuali.hr.lm.earncodesec that return Job
 Job EarnCodeSecurity.getJobObj()
           
 

Methods in org.kuali.hr.lm.earncodesec with parameters of type Job
 void EarnCodeSecurity.setJobObj(Job jobObj)
           
 

Uses of Job in org.kuali.hr.lm.timeoff.service
 

Methods in org.kuali.hr.lm.timeoff.service with parameters of type Job
 BigDecimal SystemScheduledTimeOffServiceImpl.calculateSysSchTimeOffHours(Job job, BigDecimal sstoHours)
           
 BigDecimal SystemScheduledTimeOffService.calculateSysSchTimeOffHours(Job job, BigDecimal sstoHours)
          Calculate System Scheduled Time Off hours based on given hours and fte of job
 

Uses of Job in org.kuali.hr.time.assignment
 

Methods in org.kuali.hr.time.assignment that return Job
 Job Assignment.getJob()
           
 

Methods in org.kuali.hr.time.assignment with parameters of type Job
 void Assignment.setJob(Job job)
           
 

Uses of Job in org.kuali.hr.time.base.web
 

Methods in org.kuali.hr.time.base.web that return types with arguments of type Job
 List<Job> PersonInfoActionForm.getJobs()
           
 

Method parameters in org.kuali.hr.time.base.web with type arguments of type Job
 void PersonInfoActionForm.setJobs(List<Job> jobs)
           
 

Uses of Job in org.kuali.hr.time.clock.location
 

Methods in org.kuali.hr.time.clock.location that return Job
 Job ClockLocationRule.getJob()
           
 

Methods in org.kuali.hr.time.clock.location with parameters of type Job
 void ClockLocationRule.setJob(Job job)
           
 

Uses of Job in org.kuali.hr.time.clocklog
 

Methods in org.kuali.hr.time.clocklog that return Job
 Job ClockLog.getJob()
           
 

Methods in org.kuali.hr.time.clocklog with parameters of type Job
 void ClockLog.setJob(Job job)
           
 

Uses of Job in org.kuali.hr.time.dept.lunch
 

Methods in org.kuali.hr.time.dept.lunch that return Job
 Job DeptLunchRule.getJob()
           
 

Methods in org.kuali.hr.time.dept.lunch with parameters of type Job
 void DeptLunchRule.setJob(Job job)
           
 

Uses of Job in org.kuali.hr.time.timesheet
 

Methods in org.kuali.hr.time.timesheet that return Job
 Job TimesheetDocument.getJob(Long jobNumber)
           
 

Methods in org.kuali.hr.time.timesheet that return types with arguments of type Job
 List<Job> TimesheetDocument.getJobs()
           
 

Method parameters in org.kuali.hr.time.timesheet with type arguments of type Job
 void TimesheetDocument.setJobs(List<Job> jobs)
           
 



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