
uk.co.mruoc.camunda.client.deploy.create.ProcessDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-rest-client Show documentation
Show all versions of camunda-rest-client Show documentation
Template repo to speed up creating new library projects
The newest version!
package uk.co.mruoc.camunda.client.deploy.create;
import java.util.UUID;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.RequiredArgsConstructor;
@Builder
@RequiredArgsConstructor
@NoArgsConstructor(force = true)
@Data
public class ProcessDefinition {
private final String id;
private final String key;
private final String category;
private final String description;
private final String name;
private final long version;
private final String resource;
private final UUID deploymentId;
private final String diagram;
private final boolean suspended;
private final String tenantId;
private final String versionTag;
private final Long historyTimeToLive;
private final boolean startableInTasklist;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy