Package org.openapitools.client.model
Class MultiFormDeploymentDto
- java.lang.Object
-
- org.openapitools.client.model.MultiFormDeploymentDto
-
public class MultiFormDeploymentDto extends Object
MultiFormDeploymentDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_DATAstatic StringSERIALIZED_NAME_DEPLOY_CHANGED_ONLYstatic StringSERIALIZED_NAME_DEPLOYMENT_ACTIVATION_TIMEstatic StringSERIALIZED_NAME_DEPLOYMENT_NAMEstatic StringSERIALIZED_NAME_DEPLOYMENT_SOURCEstatic StringSERIALIZED_NAME_ENABLE_DUPLICATE_FILTERINGstatic StringSERIALIZED_NAME_TENANT_ID
-
Constructor Summary
Constructors Constructor Description MultiFormDeploymentDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MultiFormDeploymentDtodata(File data)MultiFormDeploymentDtodeployChangedOnly(Boolean deployChangedOnly)MultiFormDeploymentDtodeploymentActivationTime(Date deploymentActivationTime)MultiFormDeploymentDtodeploymentName(String deploymentName)MultiFormDeploymentDtodeploymentSource(String deploymentSource)MultiFormDeploymentDtoenableDuplicateFiltering(Boolean enableDuplicateFiltering)booleanequals(Object o)FilegetData()The binary data to create the deployment resource.BooleangetDeployChangedOnly()A flag indicating whether the process engine should perform duplicate checking on a per-resource basis.DategetDeploymentActivationTime()Sets the date on which the process definitions contained in this deployment will be activated.StringgetDeploymentName()The name for the deployment to be created.StringgetDeploymentSource()The source for the deployment to be created.BooleangetEnableDuplicateFiltering()A flag indicating whether the process engine should perform duplicate checking for the deployment or not.StringgetTenantId()The tenant id for the deployment to be created.inthashCode()voidsetData(File data)voidsetDeployChangedOnly(Boolean deployChangedOnly)voidsetDeploymentActivationTime(Date deploymentActivationTime)voidsetDeploymentName(String deploymentName)voidsetDeploymentSource(String deploymentSource)voidsetEnableDuplicateFiltering(Boolean enableDuplicateFiltering)voidsetTenantId(String tenantId)MultiFormDeploymentDtotenantId(String tenantId)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_TENANT_ID
public static final String SERIALIZED_NAME_TENANT_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DEPLOYMENT_SOURCE
public static final String SERIALIZED_NAME_DEPLOYMENT_SOURCE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DEPLOY_CHANGED_ONLY
public static final String SERIALIZED_NAME_DEPLOY_CHANGED_ONLY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ENABLE_DUPLICATE_FILTERING
public static final String SERIALIZED_NAME_ENABLE_DUPLICATE_FILTERING
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DEPLOYMENT_NAME
public static final String SERIALIZED_NAME_DEPLOYMENT_NAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DEPLOYMENT_ACTIVATION_TIME
public static final String SERIALIZED_NAME_DEPLOYMENT_ACTIVATION_TIME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DATA
public static final String SERIALIZED_NAME_DATA
- See Also:
- Constant Field Values
-
-
Method Detail
-
tenantId
public MultiFormDeploymentDto tenantId(String tenantId)
-
getTenantId
public String getTenantId()
The tenant id for the deployment to be created.- Returns:
- tenantId
-
setTenantId
public void setTenantId(String tenantId)
-
deploymentSource
public MultiFormDeploymentDto deploymentSource(String deploymentSource)
-
getDeploymentSource
public String getDeploymentSource()
The source for the deployment to be created.- Returns:
- deploymentSource
-
setDeploymentSource
public void setDeploymentSource(String deploymentSource)
-
deployChangedOnly
public MultiFormDeploymentDto deployChangedOnly(Boolean deployChangedOnly)
-
getDeployChangedOnly
public Boolean getDeployChangedOnly()
A flag indicating whether the process engine should perform duplicate checking on a per-resource basis. If set to true, only those resources that have actually changed are deployed. Checks are made against resources included previous deployments of the same name and only against the latest versions of those resources. If set to true, the option enable-duplicate-filtering is overridden and set to true.- Returns:
- deployChangedOnly
-
setDeployChangedOnly
public void setDeployChangedOnly(Boolean deployChangedOnly)
-
enableDuplicateFiltering
public MultiFormDeploymentDto enableDuplicateFiltering(Boolean enableDuplicateFiltering)
-
getEnableDuplicateFiltering
public Boolean getEnableDuplicateFiltering()
A flag indicating whether the process engine should perform duplicate checking for the deployment or not. This allows you to check if a deployment with the same name and the same resouces already exists and if true, not create a new deployment but instead return the existing deployment. The default value is false.- Returns:
- enableDuplicateFiltering
-
setEnableDuplicateFiltering
public void setEnableDuplicateFiltering(Boolean enableDuplicateFiltering)
-
deploymentName
public MultiFormDeploymentDto deploymentName(String deploymentName)
-
getDeploymentName
public String getDeploymentName()
The name for the deployment to be created.- Returns:
- deploymentName
-
setDeploymentName
public void setDeploymentName(String deploymentName)
-
deploymentActivationTime
public MultiFormDeploymentDto deploymentActivationTime(Date deploymentActivationTime)
-
getDeploymentActivationTime
public Date getDeploymentActivationTime()
Sets the date on which the process definitions contained in this deployment will be activated. This means that all process definitions will be deployed as usual, but they will be suspended from the start until the given activation date. By [default](https://docs.camunda.org/manual/7.18/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.- Returns:
- deploymentActivationTime
-
setDeploymentActivationTime
public void setDeploymentActivationTime(Date deploymentActivationTime)
-
data
public MultiFormDeploymentDto data(File data)
-
getData
public File getData()
The binary data to create the deployment resource. It is possible to have more than one form part with different form part names for the binary data to create a deployment.- Returns:
- data
-
setData
public void setData(File data)
-
-