uk.co.mruoc.camunda.client.deploy.CreateDeploymentRequest 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
package uk.co.mruoc.camunda.client.deploy;
import lombok.Builder;
import lombok.Data;
import java.util.Collection;
import java.util.Collections;
import java.util.Optional;
@Builder
@Data
public class CreateDeploymentRequest {
private final String deploymentName;
private final boolean enableDuplicateFiltering;
private final boolean deployChangedOnly;
private final String deploymentSource;
private final String tenantId;
@Builder.Default
private final Collection resources = Collections.emptyList();
public Optional getTenantId() {
return Optional.ofNullable(tenantId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy