Interface IResultJob
-
- All Known Implementing Classes:
EntityResultJob
public interface IResultJobObject which stores the set of results from a job execution, organised by file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IResultFileaddFile(ISourceFile file)Adds a file to the result setjava.util.List<IResultFile>getFileResults()Returns the list ofIResultFilestored for this joblonggetPersistentId()The unique id for the job resultvoidremove()Remove this instance, and any children, from storagevoidstore()Write this instance, and its children, to storage
-
-
-
Method Detail
-
addFile
IResultFile addFile(ISourceFile file)
Adds a file to the result set- Parameters:
file- File to add to results- Returns:
- results instance for the file passed
-
getFileResults
java.util.List<IResultFile> getFileResults()
Returns the list ofIResultFilestored for this job- Returns:
- list of results
-
getPersistentId
long getPersistentId()
The unique id for the job result- Returns:
- the unique id
-
remove
void remove()
Remove this instance, and any children, from storage
-
store
void store()
Write this instance, and its children, to storage
-
-