Class ScheduleActivityTaskDecisionAttributes
- java.lang.Object
-
- com.amazonaws.services.simpleworkflow.model.ScheduleActivityTaskDecisionAttributes
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ScheduleActivityTaskDecisionAttributes extends Object implements Serializable, Cloneable
Provides details of the
ScheduleActivityTask
decision.Access Control
You can use IAM policies to control this decision's access to Amazon SWF resources as follows:
- Use a
Resource
element with the domain name to limit the action to only specified domains. - Use an
Action
element to allow or deny permission to call this action. - Constrain the following parameters by using a
Condition
element with the appropriate keys.activityType.name
: String constraint. The key isswf:activityType.name
.activityType.version
: String constraint. The key isswf:activityType.version
.taskList
: String constraint. The key isswf:taskList.name
.
If the caller does not have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter will be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ScheduleActivityTaskDecisionAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ScheduleActivityTaskDecisionAttributes
clone()
boolean
equals(Object obj)
String
getActivityId()
Required. TheactivityId
of the activity task.ActivityType
getActivityType()
Required. The type of the activity task to schedule.String
getControl()
Optional. Data attached to the event that can be used by the decider in subsequent workflow tasks.String
getHeartbeatTimeout()
If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat.String
getInput()
The input provided to the activity task.String
getScheduleToCloseTimeout()
The maximum duration for this activity task.String
getScheduleToStartTimeout()
Optional. If set, specifies the maximum duration the activity task can wait to be assigned to a worker.String
getStartToCloseTimeout()
If set, specifies the maximum duration a worker may take to process this activity task.TaskList
getTaskList()
If set, specifies the name of the task list in which to schedule the activity task.String
getTaskPriority()
Optional. If set, specifies the priority with which the activity task is to be assigned to a worker.int
hashCode()
void
setActivityId(String activityId)
Required. TheactivityId
of the activity task.void
setActivityType(ActivityType activityType)
Required. The type of the activity task to schedule.void
setControl(String control)
Optional. Data attached to the event that can be used by the decider in subsequent workflow tasks.void
setHeartbeatTimeout(String heartbeatTimeout)
If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat.void
setInput(String input)
The input provided to the activity task.void
setScheduleToCloseTimeout(String scheduleToCloseTimeout)
The maximum duration for this activity task.void
setScheduleToStartTimeout(String scheduleToStartTimeout)
Optional. If set, specifies the maximum duration the activity task can wait to be assigned to a worker.void
setStartToCloseTimeout(String startToCloseTimeout)
If set, specifies the maximum duration a worker may take to process this activity task.void
setTaskList(TaskList taskList)
If set, specifies the name of the task list in which to schedule the activity task.void
setTaskPriority(String taskPriority)
Optional. If set, specifies the priority with which the activity task is to be assigned to a worker.String
toString()
Returns a string representation of this object; useful for testing and debugging.ScheduleActivityTaskDecisionAttributes
withActivityId(String activityId)
Required. TheactivityId
of the activity task.ScheduleActivityTaskDecisionAttributes
withActivityType(ActivityType activityType)
Required. The type of the activity task to schedule.ScheduleActivityTaskDecisionAttributes
withControl(String control)
Optional. Data attached to the event that can be used by the decider in subsequent workflow tasks.ScheduleActivityTaskDecisionAttributes
withHeartbeatTimeout(String heartbeatTimeout)
If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat.ScheduleActivityTaskDecisionAttributes
withInput(String input)
The input provided to the activity task.ScheduleActivityTaskDecisionAttributes
withScheduleToCloseTimeout(String scheduleToCloseTimeout)
The maximum duration for this activity task.ScheduleActivityTaskDecisionAttributes
withScheduleToStartTimeout(String scheduleToStartTimeout)
Optional. If set, specifies the maximum duration the activity task can wait to be assigned to a worker.ScheduleActivityTaskDecisionAttributes
withStartToCloseTimeout(String startToCloseTimeout)
If set, specifies the maximum duration a worker may take to process this activity task.ScheduleActivityTaskDecisionAttributes
withTaskList(TaskList taskList)
If set, specifies the name of the task list in which to schedule the activity task.ScheduleActivityTaskDecisionAttributes
withTaskPriority(String taskPriority)
Optional. If set, specifies the priority with which the activity task is to be assigned to a worker.
-
-
-
Method Detail
-
setActivityType
public void setActivityType(ActivityType activityType)
Required. The type of the activity task to schedule.
- Parameters:
activityType
- Required.
-
getActivityType
public ActivityType getActivityType()
Required. The type of the activity task to schedule.
- Returns:
- Required.
-
withActivityType
public ScheduleActivityTaskDecisionAttributes withActivityType(ActivityType activityType)
Required. The type of the activity task to schedule.
- Parameters:
activityType
- Required.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setActivityId
public void setActivityId(String activityId)
Required. The
activityId
of the activity task.The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters ( - | - ). Also, it must not contain the literal string quotarnquot.- Parameters:
activityId
- Required. TheactivityId
of the activity task.The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
-
getActivityId
public String getActivityId()
Required. The
activityId
of the activity task.The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters ( - | - ). Also, it must not contain the literal string quotarnquot.- Returns:
- Required. The
activityId
of the activity task.The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
-
withActivityId
public ScheduleActivityTaskDecisionAttributes withActivityId(String activityId)
Required. The
activityId
of the activity task.The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters ( - | - ). Also, it must not contain the literal string quotarnquot.- Parameters:
activityId
- Required. TheactivityId
of the activity task.The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setControl
public void setControl(String control)
Optional. Data attached to the event that can be used by the decider in subsequent workflow tasks. This data is not sent to the activity.
- Parameters:
control
- Optional.
-
getControl
public String getControl()
Optional. Data attached to the event that can be used by the decider in subsequent workflow tasks. This data is not sent to the activity.
- Returns:
- Optional.
-
withControl
public ScheduleActivityTaskDecisionAttributes withControl(String control)
Optional. Data attached to the event that can be used by the decider in subsequent workflow tasks. This data is not sent to the activity.
- Parameters:
control
- Optional.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setInput
public void setInput(String input)
The input provided to the activity task.
- Parameters:
input
- The input provided to the activity task.
-
getInput
public String getInput()
The input provided to the activity task.
- Returns:
- The input provided to the activity task.
-
withInput
public ScheduleActivityTaskDecisionAttributes withInput(String input)
The input provided to the activity task.
- Parameters:
input
- The input provided to the activity task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setScheduleToCloseTimeout
public void setScheduleToCloseTimeout(String scheduleToCloseTimeout)
The maximum duration for this activity task.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A schedule-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-close timeout was specified at registration time then a fault will be returned. - Parameters:
scheduleToCloseTimeout
- The maximum duration for this activity task.The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A schedule-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-close timeout was specified at registration time then a fault will be returned.
-
getScheduleToCloseTimeout
public String getScheduleToCloseTimeout()
The maximum duration for this activity task.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A schedule-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-close timeout was specified at registration time then a fault will be returned. - Returns:
- The maximum duration for this activity task.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A schedule-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-close timeout was specified at registration time then a fault will be returned.
-
withScheduleToCloseTimeout
public ScheduleActivityTaskDecisionAttributes withScheduleToCloseTimeout(String scheduleToCloseTimeout)
The maximum duration for this activity task.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A schedule-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-close timeout was specified at registration time then a fault will be returned. - Parameters:
scheduleToCloseTimeout
- The maximum duration for this activity task.The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A schedule-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-close timeout was specified at registration time then a fault will be returned. - Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setTaskList
public void setTaskList(TaskList taskList)
If set, specifies the name of the task list in which to schedule the activity task. If not specified, the
defaultTaskList
registered with the activity type will be used.A task list for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default task list was specified at registration time then a fault will be returned. The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters ( - | - ). Also, it must not contain the literal string quotarnquot.- Parameters:
taskList
- If set, specifies the name of the task list in which to schedule the activity task. If not specified, thedefaultTaskList
registered with the activity type will be used.A task list for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default task list was specified at registration time then a fault will be returned. The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters ( - | - ). Also, it must not contain the literal string quotarnquot.
-
getTaskList
public TaskList getTaskList()
If set, specifies the name of the task list in which to schedule the activity task. If not specified, the
defaultTaskList
registered with the activity type will be used.A task list for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default task list was specified at registration time then a fault will be returned. The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters ( - | - ). Also, it must not contain the literal string quotarnquot.- Returns:
- If set, specifies the name of the task list in which to schedule
the activity task. If not specified, the
defaultTaskList
registered with the activity type will be used.A task list for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default task list was specified at registration time then a fault will be returned. The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters ( - | - ). Also, it must not contain the literal string quotarnquot.
-
withTaskList
public ScheduleActivityTaskDecisionAttributes withTaskList(TaskList taskList)
If set, specifies the name of the task list in which to schedule the activity task. If not specified, the
defaultTaskList
registered with the activity type will be used.A task list for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default task list was specified at registration time then a fault will be returned. The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters ( - | - ). Also, it must not contain the literal string quotarnquot.- Parameters:
taskList
- If set, specifies the name of the task list in which to schedule the activity task. If not specified, thedefaultTaskList
registered with the activity type will be used.A task list for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default task list was specified at registration time then a fault will be returned. The specified string must not start or end with whitespace. It must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters ( - | - ). Also, it must not contain the literal string quotarnquot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setTaskPriority
public void setTaskPriority(String taskPriority)
Optional. If set, specifies the priority with which the activity task is to be assigned to a worker. This overrides the defaultTaskPriority specified when registering the activity type using RegisterActivityType. Valid values are integers that range from Java's
Integer.MIN_VALUE
(-2147483648) toInteger.MAX_VALUE
(2147483647). Higher numbers indicate higher priority.For more information about setting task priority, see Setting Task Priority in the Amazon Simple Workflow Developer Guide.
- Parameters:
taskPriority
- Optional. If set, specifies the priority with which the activity task is to be assigned to a worker. This overrides the defaultTaskPriority specified when registering the activity type using RegisterActivityType. Valid values are integers that range from Java'sInteger.MIN_VALUE
(-2147483648) toInteger.MAX_VALUE
(2147483647). Higher numbers indicate higher priority.For more information about setting task priority, see Setting Task Priority in the Amazon Simple Workflow Developer Guide
-
getTaskPriority
public String getTaskPriority()
Optional. If set, specifies the priority with which the activity task is to be assigned to a worker. This overrides the defaultTaskPriority specified when registering the activity type using RegisterActivityType. Valid values are integers that range from Java's
Integer.MIN_VALUE
(-2147483648) toInteger.MAX_VALUE
(2147483647). Higher numbers indicate higher priority.For more information about setting task priority, see Setting Task Priority in the Amazon Simple Workflow Developer Guide.
- Returns:
- Optional. If set, specifies the priority with which the
activity task is to be assigned to a worker. This overrides the
defaultTaskPriority specified when registering the activity type
using RegisterActivityType. Valid values are integers that
range from Java's
Integer.MIN_VALUE
(-2147483648) toInteger.MAX_VALUE
(2147483647). Higher numbers indicate higher priority.For more information about setting task priority, see Setting Task Priority in the Amazon Simple Workflow Developer Guide
-
withTaskPriority
public ScheduleActivityTaskDecisionAttributes withTaskPriority(String taskPriority)
Optional. If set, specifies the priority with which the activity task is to be assigned to a worker. This overrides the defaultTaskPriority specified when registering the activity type using RegisterActivityType. Valid values are integers that range from Java's
Integer.MIN_VALUE
(-2147483648) toInteger.MAX_VALUE
(2147483647). Higher numbers indicate higher priority.For more information about setting task priority, see Setting Task Priority in the Amazon Simple Workflow Developer Guide.
- Parameters:
taskPriority
- Optional. If set, specifies the priority with which the activity task is to be assigned to a worker. This overrides the defaultTaskPriority specified when registering the activity type using RegisterActivityType. Valid values are integers that range from Java'sInteger.MIN_VALUE
(-2147483648) toInteger.MAX_VALUE
(2147483647). Higher numbers indicate higher priority.For more information about setting task priority, see Setting Task Priority in the Amazon Simple Workflow Developer Guide
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setScheduleToStartTimeout
public void setScheduleToStartTimeout(String scheduleToStartTimeout)
Optional. If set, specifies the maximum duration the activity task can wait to be assigned to a worker. This overrides the default schedule-to-start timeout specified when registering the activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A schedule-to-start timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-start timeout was specified at registration time then a fault will be returned. - Parameters:
scheduleToStartTimeout
- Optional. If set, specifies the maximum duration the activity task can wait to be assigned to a worker. This overrides the default schedule-to-start timeout specified when registering the activity type using RegisterActivityType.The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
-
getScheduleToStartTimeout
public String getScheduleToStartTimeout()
Optional. If set, specifies the maximum duration the activity task can wait to be assigned to a worker. This overrides the default schedule-to-start timeout specified when registering the activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A schedule-to-start timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-start timeout was specified at registration time then a fault will be returned. - Returns:
- Optional. If set, specifies the maximum duration the activity
task can wait to be assigned to a worker. This overrides the
default schedule-to-start timeout specified when registering the
activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
-
withScheduleToStartTimeout
public ScheduleActivityTaskDecisionAttributes withScheduleToStartTimeout(String scheduleToStartTimeout)
Optional. If set, specifies the maximum duration the activity task can wait to be assigned to a worker. This overrides the default schedule-to-start timeout specified when registering the activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A schedule-to-start timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default schedule-to-start timeout was specified at registration time then a fault will be returned. - Parameters:
scheduleToStartTimeout
- Optional. If set, specifies the maximum duration the activity task can wait to be assigned to a worker. This overrides the default schedule-to-start timeout specified when registering the activity type using RegisterActivityType.The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStartToCloseTimeout
public void setStartToCloseTimeout(String startToCloseTimeout)
If set, specifies the maximum duration a worker may take to process this activity task. This overrides the default start-to-close timeout specified when registering the activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A start-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default start-to-close timeout was specified at registration time then a fault will be returned. - Parameters:
startToCloseTimeout
- If set, specifies the maximum duration a worker may take to process this activity task. This overrides the default start-to-close timeout specified when registering the activity type using RegisterActivityType.The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A start-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default start-to-close timeout was specified at registration time then a fault will be returned.
-
getStartToCloseTimeout
public String getStartToCloseTimeout()
If set, specifies the maximum duration a worker may take to process this activity task. This overrides the default start-to-close timeout specified when registering the activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A start-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default start-to-close timeout was specified at registration time then a fault will be returned. - Returns:
- If set, specifies the maximum duration a worker may take to
process this activity task. This overrides the default
start-to-close timeout specified when registering the activity
type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A start-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default start-to-close timeout was specified at registration time then a fault will be returned.
-
withStartToCloseTimeout
public ScheduleActivityTaskDecisionAttributes withStartToCloseTimeout(String startToCloseTimeout)
If set, specifies the maximum duration a worker may take to process this activity task. This overrides the default start-to-close timeout specified when registering the activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A start-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default start-to-close timeout was specified at registration time then a fault will be returned. - Parameters:
startToCloseTimeout
- If set, specifies the maximum duration a worker may take to process this activity task. This overrides the default start-to-close timeout specified when registering the activity type using RegisterActivityType.The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
A start-to-close timeout for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default start-to-close timeout was specified at registration time then a fault will be returned. - Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setHeartbeatTimeout
public void setHeartbeatTimeout(String heartbeatTimeout)
If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or returns a result, it will be ignored. This overrides the default heartbeat timeout specified when registering the activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
- Parameters:
heartbeatTimeout
- If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or returns a result, it will be ignored. This overrides the default heartbeat timeout specified when registering the activity type using RegisterActivityType.The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
-
getHeartbeatTimeout
public String getHeartbeatTimeout()
If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or returns a result, it will be ignored. This overrides the default heartbeat timeout specified when registering the activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
- Returns:
- If set, specifies the maximum time before which a worker
processing a task of this type must report progress by calling
RecordActivityTaskHeartbeat. If the timeout is exceeded,
the activity task is automatically timed out. If the worker
subsequently attempts to record a heartbeat or returns a result,
it will be ignored. This overrides the default heartbeat timeout
specified when registering the activity type using
RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
-
withHeartbeatTimeout
public ScheduleActivityTaskDecisionAttributes withHeartbeatTimeout(String heartbeatTimeout)
If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or returns a result, it will be ignored. This overrides the default heartbeat timeout specified when registering the activity type using RegisterActivityType.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
- Parameters:
heartbeatTimeout
- If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or returns a result, it will be ignored. This overrides the default heartbeat timeout specified when registering the activity type using RegisterActivityType.The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ScheduleActivityTaskDecisionAttributes clone()
-
-