Class BatchDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.batch.BatchDto
-
- Direct Known Subclasses:
BatchStatisticsDto
public class BatchDto extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
batchJobDefinitionId
protected int
batchJobsPerSeed
protected java.lang.String
createUserId
protected java.lang.String
id
protected int
invocationsPerBatchJob
protected int
jobsCreated
protected java.lang.String
monitorJobDefinitionId
protected java.lang.String
seedJobDefinitionId
protected boolean
suspended
protected java.lang.String
tenantId
protected int
totalJobs
protected java.lang.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)
java.lang.String
getBatchJobDefinitionId()
int
getBatchJobsPerSeed()
java.lang.String
getCreateUserId()
java.lang.String
getId()
int
getInvocationsPerBatchJob()
int
getJobsCreated()
java.lang.String
getMonitorJobDefinitionId()
java.lang.String
getSeedJobDefinitionId()
java.lang.String
getTenantId()
int
getTotalJobs()
java.lang.String
getType()
boolean
isSuspended()
-
-
-
Field Detail
-
id
protected java.lang.String id
-
type
protected java.lang.String type
-
totalJobs
protected int totalJobs
-
jobsCreated
protected int jobsCreated
-
batchJobsPerSeed
protected int batchJobsPerSeed
-
invocationsPerBatchJob
protected int invocationsPerBatchJob
-
seedJobDefinitionId
protected java.lang.String seedJobDefinitionId
-
monitorJobDefinitionId
protected java.lang.String monitorJobDefinitionId
-
batchJobDefinitionId
protected java.lang.String batchJobDefinitionId
-
suspended
protected boolean suspended
-
tenantId
protected java.lang.String tenantId
-
createUserId
protected java.lang.String createUserId
-
-
Method Detail
-
getId
public java.lang.String getId()
-
getType
public java.lang.String getType()
-
getTotalJobs
public int getTotalJobs()
-
getJobsCreated
public int getJobsCreated()
-
getBatchJobsPerSeed
public int getBatchJobsPerSeed()
-
getInvocationsPerBatchJob
public int getInvocationsPerBatchJob()
-
getSeedJobDefinitionId
public java.lang.String getSeedJobDefinitionId()
-
getMonitorJobDefinitionId
public java.lang.String getMonitorJobDefinitionId()
-
getBatchJobDefinitionId
public java.lang.String getBatchJobDefinitionId()
-
isSuspended
public boolean isSuspended()
-
getTenantId
public java.lang.String getTenantId()
-
getCreateUserId
public java.lang.String getCreateUserId()
-
-