org.kuali.hr.time.batch.service
Interface BatchJobEntryService

All Known Implementing Classes:
BatchJobEntryServiceImpl

public interface BatchJobEntryService


Method Summary
 List<BatchJobEntry> getBatchJobEntries(Long batchJobId)
          For the indicated batchJobId, grab a List of BatchJobEntry objects.
 List<BatchJobEntry> getBatchJobEntries(Map<String,Object> criteria)
          Fetch a list of BatchJob objects by the given criteria.
 List<BatchJobEntry> getBatchJobEntries(String ip, String status)
          For the given parameters, return a List of BatchJobEntry objects.
 BatchJobEntry getBatchJobEntry(Long batchJobEntryId)
          Fetch a BatchJobEntry by a given ID
 void saveBatchJobEntry(BatchJobEntry batchJobEntry)
          Saves or updates the provided BatchJobEntry.
 

Method Detail

getBatchJobEntry

BatchJobEntry getBatchJobEntry(Long batchJobEntryId)
Fetch a BatchJobEntry by a given ID

Parameters:
batchJobEntryId -
Returns:

saveBatchJobEntry

void saveBatchJobEntry(BatchJobEntry batchJobEntry)
Saves or updates the provided BatchJobEntry.

Parameters:
batchJobEntry - The object we want to save.

getBatchJobEntries

List<BatchJobEntry> getBatchJobEntries(Long batchJobId)
For the indicated batchJobId, grab a List of BatchJobEntry objects.

Parameters:
batchJobId - The ID to query against.
Returns:
A List of BatchJobEntry objects.

getBatchJobEntries

List<BatchJobEntry> getBatchJobEntries(String ip,
                                       String status)
For the given parameters, return a List of BatchJobEntry objects.

Parameters:
ip - The IP address we are interested in.
status - The status.
Returns:
A List of BatchJobEntry objects.

getBatchJobEntries

List<BatchJobEntry> getBatchJobEntries(Map<String,Object> criteria)
Fetch a list of BatchJob objects by the given criteria.

Parameters:
criteria -
Returns:
List of BatchJob objects.


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