@Beta public class TaskInstancePATCH extends Object
Modifier and Type | Class and Description |
---|---|
static class |
TaskInstancePATCH.PriorityEnum
Specify the new priority of the task instance.
|
static class |
TaskInstancePATCH.StatusEnum
Specify the new status of the task instance.
|
Constructor and Description |
---|
TaskInstancePATCH() |
Modifier and Type | Method and Description |
---|---|
TaskInstancePATCH |
context(Object context)
Set the context of this
TaskInstancePATCH instance and return the same instance. |
TaskInstancePATCH |
description(String description)
Set the description of this
TaskInstancePATCH instance and return the same instance. |
TaskInstancePATCH |
dueDate(OffsetDateTime dueDate)
Set the dueDate of this
TaskInstancePATCH instance and return the same instance. |
boolean |
equals(Object o) |
Object |
getContext()
The changes to the context of the workflow instance the user task belongs to.
|
String |
getDescription()
Specify the new description of the task instance.
|
OffsetDateTime |
getDueDate()
Specify the new due date of the task instance.
|
TaskInstancePATCH.PriorityEnum |
getPriority()
Specify the new priority of the task instance.
|
String |
getProcessor()
Specify the new processor of the task instance.
|
String |
getRecipientGroups()
Specify the new recipient groups of the task instance, as a comma-separated list.
|
String |
getRecipientUsers()
Specify the new recipient users of the task instance, as a comma-separated list.
|
TaskInstancePATCH.StatusEnum |
getStatus()
Specify the new status of the task instance.
|
String |
getSubject()
Specify the new subject of the task instance.
|
int |
hashCode() |
TaskInstancePATCH |
priority(TaskInstancePATCH.PriorityEnum priority)
Set the priority of this
TaskInstancePATCH instance and return the same instance. |
TaskInstancePATCH |
processor(String processor)
Set the processor of this
TaskInstancePATCH instance and return the same instance. |
TaskInstancePATCH |
recipientGroups(String recipientGroups)
Set the recipientGroups of this
TaskInstancePATCH instance and return the same instance. |
TaskInstancePATCH |
recipientUsers(String recipientUsers)
Set the recipientUsers of this
TaskInstancePATCH instance and return the same instance. |
void |
setContext(Object context)
Set the context of this
TaskInstancePATCH instance. |
void |
setDescription(String description)
Set the description of this
TaskInstancePATCH instance. |
void |
setDueDate(OffsetDateTime dueDate)
Set the dueDate of this
TaskInstancePATCH instance. |
void |
setPriority(TaskInstancePATCH.PriorityEnum priority)
Set the priority of this
TaskInstancePATCH instance. |
void |
setProcessor(String processor)
Set the processor of this
TaskInstancePATCH instance. |
void |
setRecipientGroups(String recipientGroups)
Set the recipientGroups of this
TaskInstancePATCH instance. |
void |
setRecipientUsers(String recipientUsers)
Set the recipientUsers of this
TaskInstancePATCH instance. |
void |
setStatus(TaskInstancePATCH.StatusEnum status)
Set the status of this
TaskInstancePATCH instance. |
void |
setSubject(String subject)
Set the subject of this
TaskInstancePATCH instance. |
TaskInstancePATCH |
status(TaskInstancePATCH.StatusEnum status)
Set the status of this
TaskInstancePATCH instance and return the same instance. |
TaskInstancePATCH |
subject(String subject)
Set the subject of this
TaskInstancePATCH instance and return the same instance. |
String |
toString() |
@Nonnull public TaskInstancePATCH context(@Nonnull Object context)
TaskInstancePATCH
instance and return the same instance.context
- The changes to the context of the workflow instance the user task belongs to.TaskInstancePATCH
class@Nonnull public Object getContext()
TaskInstancePATCH
instance.public void setContext(@Nonnull Object context)
TaskInstancePATCH
instance.context
- The changes to the context of the workflow instance the user task belongs to.@Nonnull public TaskInstancePATCH status(@Nonnull TaskInstancePATCH.StatusEnum status)
TaskInstancePATCH
instance and return the same instance.status
- Specify the new status of the task instance.TaskInstancePATCH
class@Nonnull public TaskInstancePATCH.StatusEnum getStatus()
TaskInstancePATCH
instance.public void setStatus(@Nonnull TaskInstancePATCH.StatusEnum status)
TaskInstancePATCH
instance.status
- Specify the new status of the task instance.@Nonnull public TaskInstancePATCH subject(@Nonnull String subject)
TaskInstancePATCH
instance and return the same instance.subject
- Specify the new subject of the task instance. The subject can be at most 255 characters long.TaskInstancePATCH
class@Nonnull public String getSubject()
TaskInstancePATCH
instance.public void setSubject(@Nonnull String subject)
TaskInstancePATCH
instance.subject
- Specify the new subject of the task instance. The subject can be at most 255 characters long.@Nonnull public TaskInstancePATCH description(@Nonnull String description)
TaskInstancePATCH
instance and return the same instance.description
- Specify the new description of the task instance. The description can be at most 4000 characters long.TaskInstancePATCH
class@Nonnull public String getDescription()
TaskInstancePATCH
instance.public void setDescription(@Nonnull String description)
TaskInstancePATCH
instance.description
- Specify the new description of the task instance. The description can be at most 4000 characters long.@Nonnull public TaskInstancePATCH recipientUsers(@Nonnull String recipientUsers)
TaskInstancePATCH
instance and return the same instance.recipientUsers
- Specify the new recipient users of the task instance, as a comma-separated list. Specify at most 100
recipient users. The ID of a recipient user can be at most 255 characters long.TaskInstancePATCH
class@Nonnull public String getRecipientUsers()
TaskInstancePATCH
instance.public void setRecipientUsers(@Nonnull String recipientUsers)
TaskInstancePATCH
instance.recipientUsers
- Specify the new recipient users of the task instance, as a comma-separated list. Specify at most 100
recipient users. The ID of a recipient user can be at most 255 characters long.@Nonnull public TaskInstancePATCH recipientGroups(@Nonnull String recipientGroups)
TaskInstancePATCH
instance and return the same instance.recipientGroups
- Specify the new recipient groups of the task instance, as a comma-separated list. Specify at most 100
recipient groups. The ID of a recipient group can be at most 255 characters long.TaskInstancePATCH
class@Nonnull public String getRecipientGroups()
TaskInstancePATCH
instance.public void setRecipientGroups(@Nonnull String recipientGroups)
TaskInstancePATCH
instance.recipientGroups
- Specify the new recipient groups of the task instance, as a comma-separated list. Specify at most 100
recipient groups. The ID of a recipient group can be at most 255 characters long.@Nonnull public TaskInstancePATCH processor(@Nonnull String processor)
TaskInstancePATCH
instance and return the same instance.processor
- Specify the new processor of the task instance. The ID of the processor can be at most 255 characters
long and must not contain commas.TaskInstancePATCH
class@Nonnull public String getProcessor()
TaskInstancePATCH
instance.public void setProcessor(@Nonnull String processor)
TaskInstancePATCH
instance.processor
- Specify the new processor of the task instance. The ID of the processor can be at most 255 characters
long and must not contain commas.@Nonnull public TaskInstancePATCH dueDate(@Nonnull OffsetDateTime dueDate)
TaskInstancePATCH
instance and return the same instance.dueDate
- Specify the new due date of the task instance.TaskInstancePATCH
class@Nonnull public OffsetDateTime getDueDate()
TaskInstancePATCH
instance.public void setDueDate(@Nonnull OffsetDateTime dueDate)
TaskInstancePATCH
instance.dueDate
- Specify the new due date of the task instance.@Nonnull public TaskInstancePATCH priority(@Nonnull TaskInstancePATCH.PriorityEnum priority)
TaskInstancePATCH
instance and return the same instance.priority
- Specify the new priority of the task instance.TaskInstancePATCH
class@Nonnull public TaskInstancePATCH.PriorityEnum getPriority()
TaskInstancePATCH
instance.public void setPriority(@Nonnull TaskInstancePATCH.PriorityEnum priority)
TaskInstancePATCH
instance.priority
- Specify the new priority of the task instance.Copyright © 2020 SAP SE. All rights reserved.