Class JobInformationDTO
- java.lang.Object
-
- com.levigo.jadice.server.rest.dto.JobInformationDTO
-
public class JobInformationDTO extends Object
Collection of all information that have been generated while the execution of aJob
. In order to keep a whole view on theJob
this DTO contains also the information that has been made in theJobDefinitionDTO
-
-
Field Summary
Fields Modifier and Type Field Description protected List<FileDTO>
inputFiles
protected String
templateId
protected Map<String,String>
templateParameters
-
Constructor Summary
Constructors Constructor Description JobInformationDTO()
This is a constructor for JAX-B use onlyJobInformationDTO(Job job, com.levigo.jadice.server.rest.dto.AbstractJobDTO jobDefinition, List<FileDTO> resultFiles, List<LogEntryDTO> entries)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
List<FileDTO>
getInputFiles()
List<LogEntryDTO>
getLogEntries()
List<FileDTO>
getResultFiles()
Job.State
getState()
String
getTemplateId()
Map<String,String>
getTemplateParameters()
void
setInputFiles(List<FileDTO> inputFiles)
void
setTemplateId(String templateId)
-
-
-
Constructor Detail
-
JobInformationDTO
public JobInformationDTO()
This is a constructor for JAX-B use only
-
JobInformationDTO
public JobInformationDTO(Job job, com.levigo.jadice.server.rest.dto.AbstractJobDTO jobDefinition, List<FileDTO> resultFiles, List<LogEntryDTO> entries)
-
-