Package org.openapitools.client.model
Class JobDefinitionPriorityDto
- java.lang.Object
-
- org.openapitools.client.model.JobDefinitionPriorityDto
-
public class JobDefinitionPriorityDto extends Object
JobDefinitionPriorityDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_INCLUDE_JOBSstatic StringSERIALIZED_NAME_PRIORITY
-
Constructor Summary
Constructors Constructor Description JobDefinitionPriorityDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)BooleangetIncludeJobs()A boolean value indicating whether existing jobs of the given definition should receive the priority as well.LonggetPriority()The new execution priority number for jobs of the given definition.inthashCode()JobDefinitionPriorityDtoincludeJobs(Boolean includeJobs)JobDefinitionPriorityDtopriority(Long priority)voidsetIncludeJobs(Boolean includeJobs)voidsetPriority(Long priority)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_PRIORITY
public static final String SERIALIZED_NAME_PRIORITY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_INCLUDE_JOBS
public static final String SERIALIZED_NAME_INCLUDE_JOBS
- See Also:
- Constant Field Values
-
-
Method Detail
-
priority
public JobDefinitionPriorityDto priority(Long priority)
-
getPriority
public Long getPriority()
The new execution priority number for jobs of the given definition. The definition's priority can be reset by using the value `null`. In that case, the job definition's priority no longer applies but a new job's priority is determined as specified in the process model.- Returns:
- priority
-
setPriority
public void setPriority(Long priority)
-
includeJobs
public JobDefinitionPriorityDto includeJobs(Boolean includeJobs)
-
getIncludeJobs
public Boolean getIncludeJobs()
A boolean value indicating whether existing jobs of the given definition should receive the priority as well. Default value is `false`. Can only be `true` when the __priority__ parameter is not `null`.- Returns:
- includeJobs
-
setIncludeJobs
public void setIncludeJobs(Boolean includeJobs)
-
-