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 StringbatchJobDefinitionIdprotected intbatchJobsPerSeedprotected StringcreateUserIdprotected Stringidprotected intinvocationsPerBatchJobprotected intjobsCreatedprotected StringmonitorJobDefinitionIdprotected StringseedJobDefinitionIdprotected booleansuspendedprotected StringtenantIdprotected inttotalJobsprotected Stringtype
-
Constructor Summary
Constructors Constructor Description BatchDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BatchDtofromBatch(Batch batch)StringgetBatchJobDefinitionId()intgetBatchJobsPerSeed()StringgetCreateUserId()StringgetId()intgetInvocationsPerBatchJob()intgetJobsCreated()StringgetMonitorJobDefinitionId()StringgetSeedJobDefinitionId()StringgetTenantId()intgetTotalJobs()StringgetType()booleanisSuspended()
-
-
-
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
-
-
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()
-
-