/************************************************************************* * Copyright 2014 Eucalyptus Systems, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/. * * Please contact Eucalyptus Systems, Inc., 6755 Hollister Ave., Goleta * CA 93117, USA or visit http://www.eucalyptus.com/licenses/ if you * need additional information or have any questions. * * This file may incorporate work covered under the following copyright * and permission notice: * Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.eucalyptus.simpleworkflow.common.model; import static com.eucalyptus.simpleworkflow.common.model.SimpleWorkflowMessage.FieldRange; import static com.eucalyptus.simpleworkflow.common.model.SimpleWorkflowMessage.FieldRegex; import static com.eucalyptus.simpleworkflow.common.model.SimpleWorkflowMessage.FieldRegexValue; import java.io.Serializable; import javax.annotation.Nonnull; /** * <p> * Provides details of the <code>StartChildWorkflowExecution</code> * decision. * </p> * <p> * <b>Access Control</b> * </p> * <p> * You can use IAM policies to control this decision's access to Amazon * SWF resources as follows: * </p> * * <ul> * <li>Use a <code>Resource</code> element with the domain name to limit * the action to only specified domains.</li> * <li>Use an <code>Action</code> element to allow or deny permission to * call this action.</li> * <li>Constrain the following parameters by using a * <code>Condition</code> element with the appropriate keys. * <ul> * <li> <code>tagList.member.N</code> : The key is "swf:tagList.N" where * N is the tag number from 0 to 4, inclusive.</li> * <li> <code>taskList</code> : String constraint. The key is * <code>swf:taskList.name</code> .</li> * <li> <code>workflowType.name</code> : String constraint. The key is * <code>swf:workflowType.name</code> .</li> * <li> <code>workflowType.version</code> : String constraint. The key * is <code>swf:workflowType.version</code> .</li> * * </ul> * </li> * * </ul> * <p> * 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 * <b>cause</b> parameter will be set to OPERATION_NOT_PERMITTED. For * details and example IAM policies, see * <a href="http://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html"> Using IAM to Manage Access to Amazon SWF Workflows </a> * . * </p> */ public class StartChildWorkflowExecutionDecisionAttributes implements Serializable { /** * <b>Required.</b> The type of the workflow execution to be started. */ @Nonnull private WorkflowType workflowType; /** * <b>Required.</b> The <code>workflowId</code> of the workflow * execution. <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> */ @Nonnull @FieldRegex( FieldRegexValue.NAME_256 ) private String workflowId; /** * <i>Optional.</i> Data attached to the event that can be used by the * decider in subsequent workflow tasks. This data is not sent to the * child workflow execution. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 32768<br/> */ @FieldRegex( FieldRegexValue.OPT_STRING_32768 ) private String control; /** * The input to be provided to the workflow execution. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 32768<br/> */ @FieldRegex( FieldRegexValue.OPT_STRING_32768 ) private String input; /** * The total duration for this workflow execution. This overrides the * defaultExecutionStartToCloseTimeout specified when registering the * workflow type. <p>The duration is specified in seconds; an integer * greater than or equal to 0. The value "NONE" can be used to specify * unlimited duration. <note>An execution start-to-close timeout for this * workflow execution must be specified either as a default for the * workflow type or through this parameter. If neither this parameter is * set nor a default execution start-to-close timeout was specified at * registration time then a fault will be returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 8<br/> */ @FieldRegex( FieldRegexValue.DURATION_8_NONE ) private String executionStartToCloseTimeout; /** * The name of the task list to be used for decision tasks of the child * workflow execution. <note>A task list for this workflow execution must * be specified either as a default for the workflow type or through this * parameter. If neither this parameter is set nor a default task list * was specified at registration time then a fault will be * returned.</note> <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". */ private TaskList taskList; /** * <i>Optional.</i> A task priority that, if set, specifies the priority * for a decision task of this workflow execution. This overrides the * defaultTaskPriority specified when registering the workflow type. * Valid values are integers that range from Java's * <code>Integer.MIN_VALUE</code> (-2147483648) to * <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate * higher priority. <p>For more information about setting task priority, * see <a * href="http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html">Setting * Task Priority</a> in the <i>Amazon Simple Workflow Developer * Guide</i>. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 11<br/> */ @FieldRegex( FieldRegexValue.INT_MIN_MAX ) private String taskPriority; /** * Specifies the maximum duration of decision tasks for this workflow * execution. This parameter overrides the * <code>defaultTaskStartToCloseTimout</code> specified when registering * the workflow type using <a>RegisterWorkflowType</a>. <p>The duration * is specified in seconds; an integer greater than or equal to 0. The * value "NONE" can be used to specify unlimited duration. <note>A task * start-to-close timeout for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default task start-to-close * timeout was specified at registration time then a fault will be * returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 8<br/> */ @FieldRegex( FieldRegexValue.DURATION_8_NONE ) private String taskStartToCloseTimeout; /** * <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>TERMINATE, REQUEST_CANCEL, ABANDON */ @FieldRegex( FieldRegexValue.CHILD_POLICY ) private String childPolicy; /** * The list of tags to associate with the child workflow execution. A * maximum of 5 tags can be specified. You can list workflow executions * with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or * <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 5<br/> */ @FieldRange( max = 5 ) @FieldRegex( FieldRegexValue.STRING_256 ) private com.amazonaws.internal.ListWithAutoConstructFlag<String> tagList; /** * The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda * functions. <note>In order for this workflow execution to invoke AWS * Lambda functions, an appropriate IAM role must be specified either as * a default for the workflow type or through this field.</note> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 1224<br/> */ @FieldRegex( FieldRegexValue.STRING_1224 ) private String lambdaRole; /** * <b>Required.</b> The type of the workflow execution to be started. * * @return <b>Required.</b> The type of the workflow execution to be started. */ public WorkflowType getWorkflowType() { return workflowType; } /** * <b>Required.</b> The type of the workflow execution to be started. * * @param workflowType <b>Required.</b> The type of the workflow execution to be started. */ public void setWorkflowType(WorkflowType workflowType) { this.workflowType = workflowType; } /** * <b>Required.</b> The type of the workflow execution to be started. * <p> * Returns a reference to this object so that method calls can be chained together. * * @param workflowType <b>Required.</b> The type of the workflow execution to be started. * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withWorkflowType(WorkflowType workflowType) { this.workflowType = workflowType; return this; } /** * <b>Required.</b> The <code>workflowId</code> of the workflow * execution. <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * * @return <b>Required.</b> The <code>workflowId</code> of the workflow * execution. <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". */ public String getWorkflowId() { return workflowId; } /** * <b>Required.</b> The <code>workflowId</code> of the workflow * execution. <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * * @param workflowId <b>Required.</b> The <code>workflowId</code> of the workflow * execution. <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". */ public void setWorkflowId(String workflowId) { this.workflowId = workflowId; } /** * <b>Required.</b> The <code>workflowId</code> of the workflow * execution. <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * * @param workflowId <b>Required.</b> The <code>workflowId</code> of the workflow * execution. <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withWorkflowId(String workflowId) { this.workflowId = workflowId; return this; } /** * <i>Optional.</i> Data attached to the event that can be used by the * decider in subsequent workflow tasks. This data is not sent to the * child workflow execution. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 32768<br/> * * @return <i>Optional.</i> Data attached to the event that can be used by the * decider in subsequent workflow tasks. This data is not sent to the * child workflow execution. */ public String getControl() { return control; } /** * <i>Optional.</i> Data attached to the event that can be used by the * decider in subsequent workflow tasks. This data is not sent to the * child workflow execution. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 32768<br/> * * @param control <i>Optional.</i> Data attached to the event that can be used by the * decider in subsequent workflow tasks. This data is not sent to the * child workflow execution. */ public void setControl(String control) { this.control = control; } /** * <i>Optional.</i> Data attached to the event that can be used by the * decider in subsequent workflow tasks. This data is not sent to the * child workflow execution. * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 32768<br/> * * @param control <i>Optional.</i> Data attached to the event that can be used by the * decider in subsequent workflow tasks. This data is not sent to the * child workflow execution. * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withControl(String control) { this.control = control; return this; } /** * The input to be provided to the workflow execution. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 32768<br/> * * @return The input to be provided to the workflow execution. */ public String getInput() { return input; } /** * The input to be provided to the workflow execution. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 32768<br/> * * @param input The input to be provided to the workflow execution. */ public void setInput(String input) { this.input = input; } /** * The input to be provided to the workflow execution. * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 32768<br/> * * @param input The input to be provided to the workflow execution. * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withInput(String input) { this.input = input; return this; } /** * The total duration for this workflow execution. This overrides the * defaultExecutionStartToCloseTimeout specified when registering the * workflow type. <p>The duration is specified in seconds; an integer * greater than or equal to 0. The value "NONE" can be used to specify * unlimited duration. <note>An execution start-to-close timeout for this * workflow execution must be specified either as a default for the * workflow type or through this parameter. If neither this parameter is * set nor a default execution start-to-close timeout was specified at * registration time then a fault will be returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 8<br/> * * @return The total duration for this workflow execution. This overrides the * defaultExecutionStartToCloseTimeout specified when registering the * workflow type. <p>The duration is specified in seconds; an integer * greater than or equal to 0. The value "NONE" can be used to specify * unlimited duration. <note>An execution start-to-close timeout for this * workflow execution must be specified either as a default for the * workflow type or through this parameter. If neither this parameter is * set nor a default execution start-to-close timeout was specified at * registration time then a fault will be returned.</note> */ public String getExecutionStartToCloseTimeout() { return executionStartToCloseTimeout; } /** * The total duration for this workflow execution. This overrides the * defaultExecutionStartToCloseTimeout specified when registering the * workflow type. <p>The duration is specified in seconds; an integer * greater than or equal to 0. The value "NONE" can be used to specify * unlimited duration. <note>An execution start-to-close timeout for this * workflow execution must be specified either as a default for the * workflow type or through this parameter. If neither this parameter is * set nor a default execution start-to-close timeout was specified at * registration time then a fault will be returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 8<br/> * * @param executionStartToCloseTimeout The total duration for this workflow execution. This overrides the * defaultExecutionStartToCloseTimeout specified when registering the * workflow type. <p>The duration is specified in seconds; an integer * greater than or equal to 0. The value "NONE" can be used to specify * unlimited duration. <note>An execution start-to-close timeout for this * workflow execution must be specified either as a default for the * workflow type or through this parameter. If neither this parameter is * set nor a default execution start-to-close timeout was specified at * registration time then a fault will be returned.</note> */ public void setExecutionStartToCloseTimeout(String executionStartToCloseTimeout) { this.executionStartToCloseTimeout = executionStartToCloseTimeout; } /** * The total duration for this workflow execution. This overrides the * defaultExecutionStartToCloseTimeout specified when registering the * workflow type. <p>The duration is specified in seconds; an integer * greater than or equal to 0. The value "NONE" can be used to specify * unlimited duration. <note>An execution start-to-close timeout for this * workflow execution must be specified either as a default for the * workflow type or through this parameter. If neither this parameter is * set nor a default execution start-to-close timeout was specified at * registration time then a fault will be returned.</note> * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 8<br/> * * @param executionStartToCloseTimeout The total duration for this workflow execution. This overrides the * defaultExecutionStartToCloseTimeout specified when registering the * workflow type. <p>The duration is specified in seconds; an integer * greater than or equal to 0. The value "NONE" can be used to specify * unlimited duration. <note>An execution start-to-close timeout for this * workflow execution must be specified either as a default for the * workflow type or through this parameter. If neither this parameter is * set nor a default execution start-to-close timeout was specified at * registration time then a fault will be returned.</note> * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withExecutionStartToCloseTimeout(String executionStartToCloseTimeout) { this.executionStartToCloseTimeout = executionStartToCloseTimeout; return this; } /** * The name of the task list to be used for decision tasks of the child * workflow execution. <note>A task list for this workflow execution must * be specified either as a default for the workflow type or through this * parameter. If neither this parameter is set nor a default task list * was specified at registration time then a fault will be * returned.</note> <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". * * @return The name of the task list to be used for decision tasks of the child * workflow execution. <note>A task list for this workflow execution must * be specified either as a default for the workflow type or through this * parameter. If neither this parameter is set nor a default task list * was specified at registration time then a fault will be * returned.</note> <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". */ public TaskList getTaskList() { return taskList; } /** * The name of the task list to be used for decision tasks of the child * workflow execution. <note>A task list for this workflow execution must * be specified either as a default for the workflow type or through this * parameter. If neither this parameter is set nor a default task list * was specified at registration time then a fault will be * returned.</note> <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". * * @param taskList The name of the task list to be used for decision tasks of the child * workflow execution. <note>A task list for this workflow execution must * be specified either as a default for the workflow type or through this * parameter. If neither this parameter is set nor a default task list * was specified at registration time then a fault will be * returned.</note> <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". */ public void setTaskList(TaskList taskList) { this.taskList = taskList; } /** * The name of the task list to be used for decision tasks of the child * workflow execution. <note>A task list for this workflow execution must * be specified either as a default for the workflow type or through this * parameter. If neither this parameter is set nor a default task list * was specified at registration time then a fault will be * returned.</note> <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". * <p> * Returns a reference to this object so that method calls can be chained together. * * @param taskList The name of the task list to be used for decision tasks of the child * workflow execution. <note>A task list for this workflow execution must * be specified either as a default for the workflow type or through this * parameter. If neither this parameter is set nor a default task list * was specified at registration time then a fault will be * returned.</note> <p>The specified string must not start or end with * whitespace. It must not contain a <code>:</code> (colon), * <code>/</code> (slash), <code>|</code> (vertical bar), or any control * characters (\u0000-\u001f | \u007f - \u009f). Also, it must not * contain the literal string "arn". * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withTaskList(TaskList taskList) { this.taskList = taskList; return this; } /** * <i>Optional.</i> A task priority that, if set, specifies the priority * for a decision task of this workflow execution. This overrides the * defaultTaskPriority specified when registering the workflow type. * Valid values are integers that range from Java's * <code>Integer.MIN_VALUE</code> (-2147483648) to * <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate * higher priority. <p>For more information about setting task priority, * see <a * href="http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html">Setting * Task Priority</a> in the <i>Amazon Simple Workflow Developer * Guide</i>. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 11<br/> * * @return <i>Optional.</i> A task priority that, if set, specifies the priority * for a decision task of this workflow execution. This overrides the * defaultTaskPriority specified when registering the workflow type. * Valid values are integers that range from Java's * <code>Integer.MIN_VALUE</code> (-2147483648) to * <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate * higher priority. <p>For more information about setting task priority, * see <a * href="http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html">Setting * Task Priority</a> in the <i>Amazon Simple Workflow Developer * Guide</i>. */ public String getTaskPriority() { return taskPriority; } /** * <i>Optional.</i> A task priority that, if set, specifies the priority * for a decision task of this workflow execution. This overrides the * defaultTaskPriority specified when registering the workflow type. * Valid values are integers that range from Java's * <code>Integer.MIN_VALUE</code> (-2147483648) to * <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate * higher priority. <p>For more information about setting task priority, * see <a * href="http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html">Setting * Task Priority</a> in the <i>Amazon Simple Workflow Developer * Guide</i>. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 11<br/> * * @param taskPriority <i>Optional.</i> A task priority that, if set, specifies the priority * for a decision task of this workflow execution. This overrides the * defaultTaskPriority specified when registering the workflow type. * Valid values are integers that range from Java's * <code>Integer.MIN_VALUE</code> (-2147483648) to * <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate * higher priority. <p>For more information about setting task priority, * see <a * href="http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html">Setting * Task Priority</a> in the <i>Amazon Simple Workflow Developer * Guide</i>. */ public void setTaskPriority(String taskPriority) { this.taskPriority = taskPriority; } /** * <i>Optional.</i> A task priority that, if set, specifies the priority * for a decision task of this workflow execution. This overrides the * defaultTaskPriority specified when registering the workflow type. * Valid values are integers that range from Java's * <code>Integer.MIN_VALUE</code> (-2147483648) to * <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate * higher priority. <p>For more information about setting task priority, * see <a * href="http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html">Setting * Task Priority</a> in the <i>Amazon Simple Workflow Developer * Guide</i>. * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 11<br/> * * @param taskPriority <i>Optional.</i> A task priority that, if set, specifies the priority * for a decision task of this workflow execution. This overrides the * defaultTaskPriority specified when registering the workflow type. * Valid values are integers that range from Java's * <code>Integer.MIN_VALUE</code> (-2147483648) to * <code>Integer.MAX_VALUE</code> (2147483647). Higher numbers indicate * higher priority. <p>For more information about setting task priority, * see <a * href="http://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html">Setting * Task Priority</a> in the <i>Amazon Simple Workflow Developer * Guide</i>. * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withTaskPriority(String taskPriority) { this.taskPriority = taskPriority; return this; } /** * Specifies the maximum duration of decision tasks for this workflow * execution. This parameter overrides the * <code>defaultTaskStartToCloseTimout</code> specified when registering * the workflow type using <a>RegisterWorkflowType</a>. <p>The duration * is specified in seconds; an integer greater than or equal to 0. The * value "NONE" can be used to specify unlimited duration. <note>A task * start-to-close timeout for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default task start-to-close * timeout was specified at registration time then a fault will be * returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 8<br/> * * @return Specifies the maximum duration of decision tasks for this workflow * execution. This parameter overrides the * <code>defaultTaskStartToCloseTimout</code> specified when registering * the workflow type using <a>RegisterWorkflowType</a>. <p>The duration * is specified in seconds; an integer greater than or equal to 0. The * value "NONE" can be used to specify unlimited duration. <note>A task * start-to-close timeout for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default task start-to-close * timeout was specified at registration time then a fault will be * returned.</note> */ public String getTaskStartToCloseTimeout() { return taskStartToCloseTimeout; } /** * Specifies the maximum duration of decision tasks for this workflow * execution. This parameter overrides the * <code>defaultTaskStartToCloseTimout</code> specified when registering * the workflow type using <a>RegisterWorkflowType</a>. <p>The duration * is specified in seconds; an integer greater than or equal to 0. The * value "NONE" can be used to specify unlimited duration. <note>A task * start-to-close timeout for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default task start-to-close * timeout was specified at registration time then a fault will be * returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 8<br/> * * @param taskStartToCloseTimeout Specifies the maximum duration of decision tasks for this workflow * execution. This parameter overrides the * <code>defaultTaskStartToCloseTimout</code> specified when registering * the workflow type using <a>RegisterWorkflowType</a>. <p>The duration * is specified in seconds; an integer greater than or equal to 0. The * value "NONE" can be used to specify unlimited duration. <note>A task * start-to-close timeout for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default task start-to-close * timeout was specified at registration time then a fault will be * returned.</note> */ public void setTaskStartToCloseTimeout(String taskStartToCloseTimeout) { this.taskStartToCloseTimeout = taskStartToCloseTimeout; } /** * Specifies the maximum duration of decision tasks for this workflow * execution. This parameter overrides the * <code>defaultTaskStartToCloseTimout</code> specified when registering * the workflow type using <a>RegisterWorkflowType</a>. <p>The duration * is specified in seconds; an integer greater than or equal to 0. The * value "NONE" can be used to specify unlimited duration. <note>A task * start-to-close timeout for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default task start-to-close * timeout was specified at registration time then a fault will be * returned.</note> * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 8<br/> * * @param taskStartToCloseTimeout Specifies the maximum duration of decision tasks for this workflow * execution. This parameter overrides the * <code>defaultTaskStartToCloseTimout</code> specified when registering * the workflow type using <a>RegisterWorkflowType</a>. <p>The duration * is specified in seconds; an integer greater than or equal to 0. The * value "NONE" can be used to specify unlimited duration. <note>A task * start-to-close timeout for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default task start-to-close * timeout was specified at registration time then a fault will be * returned.</note> * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withTaskStartToCloseTimeout(String taskStartToCloseTimeout) { this.taskStartToCloseTimeout = taskStartToCloseTimeout; return this; } /** * <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>TERMINATE, REQUEST_CANCEL, ABANDON * * @return <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * * @see ChildPolicy */ public String getChildPolicy() { return childPolicy; } /** * <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>TERMINATE, REQUEST_CANCEL, ABANDON * * @param childPolicy <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * * @see ChildPolicy */ public void setChildPolicy(String childPolicy) { this.childPolicy = childPolicy; } /** * <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>TERMINATE, REQUEST_CANCEL, ABANDON * * @param childPolicy <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * * @return A reference to this updated object so that method calls can be chained * together. * * @see ChildPolicy */ public StartChildWorkflowExecutionDecisionAttributes withChildPolicy(String childPolicy) { this.childPolicy = childPolicy; return this; } /** * <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>TERMINATE, REQUEST_CANCEL, ABANDON * * @param childPolicy <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * * @see ChildPolicy */ public void setChildPolicy(ChildPolicy childPolicy) { this.childPolicy = childPolicy.toString(); } /** * <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>TERMINATE, REQUEST_CANCEL, ABANDON * * @param childPolicy <i>Optional.</i> If set, specifies the policy to use for the child * workflow executions if the workflow execution being started is * terminated by calling the <a>TerminateWorkflowExecution</a> action * explicitly or due to an expired timeout. This policy overrides the * default child policy specified when registering the workflow type * using <a>RegisterWorkflowType</a>. <p>The supported child policies * are: <ul> <li><b>TERMINATE:</b> the child executions will be * terminated.</li> <li><b>REQUEST_CANCEL:</b> a request to cancel will * be attempted for each child execution by recording a * <code>WorkflowExecutionCancelRequested</code> event in its history. It * is up to the decider to take appropriate actions when it receives an * execution history with this event.</li> <li><b>ABANDON:</b> no action * will be taken. The child executions will continue to run.</li> </ul> * <note>A child policy for this workflow execution must be specified * either as a default for the workflow type or through this parameter. * If neither this parameter is set nor a default child policy was * specified at registration time then a fault will be returned.</note> * * @return A reference to this updated object so that method calls can be chained * together. * * @see ChildPolicy */ public StartChildWorkflowExecutionDecisionAttributes withChildPolicy(ChildPolicy childPolicy) { this.childPolicy = childPolicy.toString(); return this; } /** * The list of tags to associate with the child workflow execution. A * maximum of 5 tags can be specified. You can list workflow executions * with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or * <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 5<br/> * * @return The list of tags to associate with the child workflow execution. A * maximum of 5 tags can be specified. You can list workflow executions * with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or * <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>. */ public java.util.List<String> getTagList() { if (tagList == null) { tagList = new com.amazonaws.internal.ListWithAutoConstructFlag<String>(); tagList.setAutoConstruct(true); } return tagList; } /** * The list of tags to associate with the child workflow execution. A * maximum of 5 tags can be specified. You can list workflow executions * with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or * <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 5<br/> * * @param tagList The list of tags to associate with the child workflow execution. A * maximum of 5 tags can be specified. You can list workflow executions * with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or * <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>. */ public void setTagList(java.util.Collection<String> tagList) { if (tagList == null) { this.tagList = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag<String> tagListCopy = new com.amazonaws.internal.ListWithAutoConstructFlag<String>(tagList.size()); tagListCopy.addAll(tagList); this.tagList = tagListCopy; } /** * The list of tags to associate with the child workflow execution. A * maximum of 5 tags can be specified. You can list workflow executions * with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or * <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>. * <p> * <b>NOTE:</b> This method appends the values to the existing list (if * any). Use {@link #setTagList(java.util.Collection)} or {@link * #withTagList(java.util.Collection)} if you want to override the * existing values. * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 5<br/> * * @param tagList The list of tags to associate with the child workflow execution. A * maximum of 5 tags can be specified. You can list workflow executions * with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or * <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>. * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withTagList(String... tagList) { if (getTagList() == null) setTagList(new java.util.ArrayList<String>(tagList.length)); for (String value : tagList) { getTagList().add(value); } return this; } /** * The list of tags to associate with the child workflow execution. A * maximum of 5 tags can be specified. You can list workflow executions * with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or * <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>. * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>0 - 5<br/> * * @param tagList The list of tags to associate with the child workflow execution. A * maximum of 5 tags can be specified. You can list workflow executions * with a specific tag by calling <a>ListOpenWorkflowExecutions</a> or * <a>ListClosedWorkflowExecutions</a> and specifying a <a>TagFilter</a>. * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withTagList(java.util.Collection<String> tagList) { if (tagList == null) { this.tagList = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag<String> tagListCopy = new com.amazonaws.internal.ListWithAutoConstructFlag<String>(tagList.size()); tagListCopy.addAll(tagList); this.tagList = tagListCopy; } return this; } /** * The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda * functions. <note>In order for this workflow execution to invoke AWS * Lambda functions, an appropriate IAM role must be specified either as * a default for the workflow type or through this field.</note> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 1224<br/> * * @return The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda * functions. <note>In order for this workflow execution to invoke AWS * Lambda functions, an appropriate IAM role must be specified either as * a default for the workflow type or through this field.</note> */ public String getLambdaRole() { return lambdaRole; } /** * The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda * functions. <note>In order for this workflow execution to invoke AWS * Lambda functions, an appropriate IAM role must be specified either as * a default for the workflow type or through this field.</note> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 1224<br/> * * @param lambdaRole The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda * functions. <note>In order for this workflow execution to invoke AWS * Lambda functions, an appropriate IAM role must be specified either as * a default for the workflow type or through this field.</note> */ public void setLambdaRole(String lambdaRole) { this.lambdaRole = lambdaRole; } /** * The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda * functions. <note>In order for this workflow execution to invoke AWS * Lambda functions, an appropriate IAM role must be specified either as * a default for the workflow type or through this field.</note> * <p> * Returns a reference to this object so that method calls can be chained together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 1224<br/> * * @param lambdaRole The ARN of an IAM role that authorizes Amazon SWF to invoke AWS Lambda * functions. <note>In order for this workflow execution to invoke AWS * Lambda functions, an appropriate IAM role must be specified either as * a default for the workflow type or through this field.</note> * * @return A reference to this updated object so that method calls can be chained * together. */ public StartChildWorkflowExecutionDecisionAttributes withLambdaRole(String lambdaRole) { this.lambdaRole = lambdaRole; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getWorkflowType() != null) sb.append("WorkflowType: " + getWorkflowType() + ","); if (getWorkflowId() != null) sb.append("WorkflowId: " + getWorkflowId() + ","); if (getControl() != null) sb.append("Control: " + getControl() + ","); if (getInput() != null) sb.append("Input: " + getInput() + ","); if (getExecutionStartToCloseTimeout() != null) sb.append("ExecutionStartToCloseTimeout: " + getExecutionStartToCloseTimeout() + ","); if (getTaskList() != null) sb.append("TaskList: " + getTaskList() + ","); if (getTaskPriority() != null) sb.append("TaskPriority: " + getTaskPriority() + ","); if (getTaskStartToCloseTimeout() != null) sb.append("TaskStartToCloseTimeout: " + getTaskStartToCloseTimeout() + ","); if (getChildPolicy() != null) sb.append("ChildPolicy: " + getChildPolicy() + ","); if (getTagList() != null) sb.append("TagList: " + getTagList() + ","); if (getLambdaRole() != null) sb.append("LambdaRole: " + getLambdaRole() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getWorkflowType() == null) ? 0 : getWorkflowType().hashCode()); hashCode = prime * hashCode + ((getWorkflowId() == null) ? 0 : getWorkflowId().hashCode()); hashCode = prime * hashCode + ((getControl() == null) ? 0 : getControl().hashCode()); hashCode = prime * hashCode + ((getInput() == null) ? 0 : getInput().hashCode()); hashCode = prime * hashCode + ((getExecutionStartToCloseTimeout() == null) ? 0 : getExecutionStartToCloseTimeout().hashCode()); hashCode = prime * hashCode + ((getTaskList() == null) ? 0 : getTaskList().hashCode()); hashCode = prime * hashCode + ((getTaskPriority() == null) ? 0 : getTaskPriority().hashCode()); hashCode = prime * hashCode + ((getTaskStartToCloseTimeout() == null) ? 0 : getTaskStartToCloseTimeout().hashCode()); hashCode = prime * hashCode + ((getChildPolicy() == null) ? 0 : getChildPolicy().hashCode()); hashCode = prime * hashCode + ((getTagList() == null) ? 0 : getTagList().hashCode()); hashCode = prime * hashCode + ((getLambdaRole() == null) ? 0 : getLambdaRole().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof StartChildWorkflowExecutionDecisionAttributes == false) return false; StartChildWorkflowExecutionDecisionAttributes other = (StartChildWorkflowExecutionDecisionAttributes)obj; if (other.getWorkflowType() == null ^ this.getWorkflowType() == null) return false; if (other.getWorkflowType() != null && other.getWorkflowType().equals(this.getWorkflowType()) == false) return false; if (other.getWorkflowId() == null ^ this.getWorkflowId() == null) return false; if (other.getWorkflowId() != null && other.getWorkflowId().equals(this.getWorkflowId()) == false) return false; if (other.getControl() == null ^ this.getControl() == null) return false; if (other.getControl() != null && other.getControl().equals(this.getControl()) == false) return false; if (other.getInput() == null ^ this.getInput() == null) return false; if (other.getInput() != null && other.getInput().equals(this.getInput()) == false) return false; if (other.getExecutionStartToCloseTimeout() == null ^ this.getExecutionStartToCloseTimeout() == null) return false; if (other.getExecutionStartToCloseTimeout() != null && other.getExecutionStartToCloseTimeout().equals(this.getExecutionStartToCloseTimeout()) == false) return false; if (other.getTaskList() == null ^ this.getTaskList() == null) return false; if (other.getTaskList() != null && other.getTaskList().equals(this.getTaskList()) == false) return false; if (other.getTaskPriority() == null ^ this.getTaskPriority() == null) return false; if (other.getTaskPriority() != null && other.getTaskPriority().equals(this.getTaskPriority()) == false) return false; if (other.getTaskStartToCloseTimeout() == null ^ this.getTaskStartToCloseTimeout() == null) return false; if (other.getTaskStartToCloseTimeout() != null && other.getTaskStartToCloseTimeout().equals(this.getTaskStartToCloseTimeout()) == false) return false; if (other.getChildPolicy() == null ^ this.getChildPolicy() == null) return false; if (other.getChildPolicy() != null && other.getChildPolicy().equals(this.getChildPolicy()) == false) return false; if (other.getTagList() == null ^ this.getTagList() == null) return false; if (other.getTagList() != null && other.getTagList().equals(this.getTagList()) == false) return false; if (other.getLambdaRole() == null ^ this.getLambdaRole() == null) return false; if (other.getLambdaRole() != null && other.getLambdaRole().equals(this.getLambdaRole()) == false) return false; return true; } }