
uk.co.mruoc.camunda.client.deploy.create.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
The newest version!
package uk.co.mruoc.camunda.client.deploy.create;
import java.util.Collection;
import java.util.Collections;
import java.util.Optional;
import lombok.Builder;
import lombok.Data;
@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();
private final String overrideBaseUri;
public Optional getTenantId() {
return Optional.ofNullable(tenantId);
}
public Optional getOverrideBaseUri() {
return Optional.ofNullable(overrideBaseUri);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy