Class BatchDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.batch.BatchDto
-
- Direct Known Subclasses:
BatchStatisticsDto
public class BatchDto extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected String
batchJobDefinitionId
protected int
batchJobsPerSeed
protected String
createUserId
protected Date
executionStartTime
protected String
id
protected int
invocationsPerBatchJob
protected int
jobsCreated
protected String
monitorJobDefinitionId
protected String
seedJobDefinitionId
protected Date
startTime
protected boolean
suspended
protected String
tenantId
protected int
totalJobs
protected String
type
-
Constructor Summary
Constructors Constructor Description BatchDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BatchDto
fromBatch(Batch batch)
String
getBatchJobDefinitionId()
int
getBatchJobsPerSeed()
String
getCreateUserId()
Date
getExecutionStartTime()
String
getId()
int
getInvocationsPerBatchJob()
int
getJobsCreated()
String
getMonitorJobDefinitionId()
String
getSeedJobDefinitionId()
Date
getStartTime()
String
getTenantId()
int
getTotalJobs()
String
getType()
boolean
isSuspended()
void
setExecutionStartTime(Date executionStartTime)
void
setStartTime(Date startTime)
-
-
-
Field Detail
-
id
protected String id
-
type
protected String type
-
totalJobs
protected int totalJobs
-
jobsCreated
protected int jobsCreated
-
batchJobsPerSeed
protected int batchJobsPerSeed
-
invocationsPerBatchJob
protected int invocationsPerBatchJob
-
seedJobDefinitionId
protected String seedJobDefinitionId
-
monitorJobDefinitionId
protected String monitorJobDefinitionId
-
batchJobDefinitionId
protected String batchJobDefinitionId
-
suspended
protected boolean suspended
-
tenantId
protected String tenantId
-
createUserId
protected String createUserId
-
startTime
protected Date startTime
-
executionStartTime
protected Date executionStartTime
-
-
Method Detail
-
getId
public String getId()
-
getType
public String getType()
-
getTotalJobs
public int getTotalJobs()
-
getJobsCreated
public int getJobsCreated()
-
getBatchJobsPerSeed
public int getBatchJobsPerSeed()
-
getInvocationsPerBatchJob
public int getInvocationsPerBatchJob()
-
getSeedJobDefinitionId
public String getSeedJobDefinitionId()
-
getMonitorJobDefinitionId
public String getMonitorJobDefinitionId()
-
getBatchJobDefinitionId
public String getBatchJobDefinitionId()
-
isSuspended
public boolean isSuspended()
-
getTenantId
public String getTenantId()
-
getCreateUserId
public String getCreateUserId()
-
getStartTime
public Date getStartTime()
-
setStartTime
public void setStartTime(Date startTime)
-
getExecutionStartTime
public Date getExecutionStartTime()
-
setExecutionStartTime
public void setExecutionStartTime(Date executionStartTime)
-
-