com.amazonaws.services.simpleworkflow.model.StartChildWorkflowExecutionInitiatedEventAttributes Maven / Gradle / Ivy
Show all versions of aws-java-sdk Show documentation
/*
* Copyright 2010-2014 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.amazonaws.services.simpleworkflow.model;
import java.io.Serializable;
/**
*
* Provides details of the
* StartChildWorkflowExecutionInitiated
event.
*
*/
public class StartChildWorkflowExecutionInitiatedEventAttributes implements Serializable {
/**
* The workflowId
of the child workflow execution.
*
* Constraints:
* Length: 1 - 256
*/
private String workflowId;
/**
* The type of the child workflow execution.
*/
private WorkflowType workflowType;
/**
* Optional data attached to the event that can be used by the decider in
* subsequent decision tasks. This data is not sent to the activity.
*
* Constraints:
* Length: 0 - 32768
*/
private String control;
/**
* The inputs provided to the child workflow execution (if any).
*
* Constraints:
* Length: 0 - 32768
*/
private String input;
/**
* The maximum duration for the child workflow execution. If the workflow
* execution is not closed within this duration, it will be timed out and
* force terminated.
The valid values are integers greater than or
* equal to 0
. An integer value can be used to specify the
* duration in seconds while NONE
can be used to specify
* unlimited duration.
*
* Constraints:
* Length: 0 - 8
*/
private String executionStartToCloseTimeout;
/**
* The name of the task list used for the decision tasks of the child
* workflow execution.
*/
private TaskList taskList;
/**
* The id of the DecisionTaskCompleted
event corresponding
* to the decision task that resulted in the
* StartChildWorkflowExecution
Decision to request
* this child workflow execution. This information can be useful for
* diagnosing problems by tracing back the cause of events.
*/
private Long decisionTaskCompletedEventId;
/**
* The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
*
The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* Constraints:
* Allowed Values: TERMINATE, REQUEST_CANCEL, ABANDON
*/
private String childPolicy;
/**
* The maximum duration allowed for the decision tasks for this workflow
* execution.
The valid values are integers greater than or equal to
* 0
. An integer value can be used to specify the duration
* in seconds while NONE
can be used to specify unlimited
* duration.
*
* Constraints:
* Length: 0 - 8
*/
private String taskStartToCloseTimeout;
/**
* The list of tags to associated with the child workflow execution.
*
* Constraints:
* Length: 0 - 5
*/
private com.amazonaws.internal.ListWithAutoConstructFlag tagList;
/**
* The workflowId
of the child workflow execution.
*
* Constraints:
* Length: 1 - 256
*
* @return The workflowId
of the child workflow execution.
*/
public String getWorkflowId() {
return workflowId;
}
/**
* The workflowId
of the child workflow execution.
*
* Constraints:
* Length: 1 - 256
*
* @param workflowId The workflowId
of the child workflow execution.
*/
public void setWorkflowId(String workflowId) {
this.workflowId = workflowId;
}
/**
* The workflowId
of the child workflow execution.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 256
*
* @param workflowId The workflowId
of the child workflow execution.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withWorkflowId(String workflowId) {
this.workflowId = workflowId;
return this;
}
/**
* The type of the child workflow execution.
*
* @return The type of the child workflow execution.
*/
public WorkflowType getWorkflowType() {
return workflowType;
}
/**
* The type of the child workflow execution.
*
* @param workflowType The type of the child workflow execution.
*/
public void setWorkflowType(WorkflowType workflowType) {
this.workflowType = workflowType;
}
/**
* The type of the child workflow execution.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param workflowType The type of the child workflow execution.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withWorkflowType(WorkflowType workflowType) {
this.workflowType = workflowType;
return this;
}
/**
* Optional data attached to the event that can be used by the decider in
* subsequent decision tasks. This data is not sent to the activity.
*
* Constraints:
* Length: 0 - 32768
*
* @return Optional data attached to the event that can be used by the decider in
* subsequent decision tasks. This data is not sent to the activity.
*/
public String getControl() {
return control;
}
/**
* Optional data attached to the event that can be used by the decider in
* subsequent decision tasks. This data is not sent to the activity.
*
* Constraints:
* Length: 0 - 32768
*
* @param control Optional data attached to the event that can be used by the decider in
* subsequent decision tasks. This data is not sent to the activity.
*/
public void setControl(String control) {
this.control = control;
}
/**
* Optional data attached to the event that can be used by the decider in
* subsequent decision tasks. This data is not sent to the activity.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 0 - 32768
*
* @param control Optional data attached to the event that can be used by the decider in
* subsequent decision tasks. This data is not sent to the activity.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withControl(String control) {
this.control = control;
return this;
}
/**
* The inputs provided to the child workflow execution (if any).
*
* Constraints:
* Length: 0 - 32768
*
* @return The inputs provided to the child workflow execution (if any).
*/
public String getInput() {
return input;
}
/**
* The inputs provided to the child workflow execution (if any).
*
* Constraints:
* Length: 0 - 32768
*
* @param input The inputs provided to the child workflow execution (if any).
*/
public void setInput(String input) {
this.input = input;
}
/**
* The inputs provided to the child workflow execution (if any).
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 0 - 32768
*
* @param input The inputs provided to the child workflow execution (if any).
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withInput(String input) {
this.input = input;
return this;
}
/**
* The maximum duration for the child workflow execution. If the workflow
* execution is not closed within this duration, it will be timed out and
* force terminated.
The valid values are integers greater than or
* equal to 0
. An integer value can be used to specify the
* duration in seconds while NONE
can be used to specify
* unlimited duration.
*
* Constraints:
* Length: 0 - 8
*
* @return The maximum duration for the child workflow execution. If the workflow
* execution is not closed within this duration, it will be timed out and
* force terminated.
The valid values are integers greater than or
* equal to 0
. An integer value can be used to specify the
* duration in seconds while NONE
can be used to specify
* unlimited duration.
*/
public String getExecutionStartToCloseTimeout() {
return executionStartToCloseTimeout;
}
/**
* The maximum duration for the child workflow execution. If the workflow
* execution is not closed within this duration, it will be timed out and
* force terminated.
The valid values are integers greater than or
* equal to 0
. An integer value can be used to specify the
* duration in seconds while NONE
can be used to specify
* unlimited duration.
*
* Constraints:
* Length: 0 - 8
*
* @param executionStartToCloseTimeout The maximum duration for the child workflow execution. If the workflow
* execution is not closed within this duration, it will be timed out and
* force terminated.
The valid values are integers greater than or
* equal to 0
. An integer value can be used to specify the
* duration in seconds while NONE
can be used to specify
* unlimited duration.
*/
public void setExecutionStartToCloseTimeout(String executionStartToCloseTimeout) {
this.executionStartToCloseTimeout = executionStartToCloseTimeout;
}
/**
* The maximum duration for the child workflow execution. If the workflow
* execution is not closed within this duration, it will be timed out and
* force terminated.
The valid values are integers greater than or
* equal to 0
. An integer value can be used to specify the
* duration in seconds while NONE
can be used to specify
* unlimited duration.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 0 - 8
*
* @param executionStartToCloseTimeout The maximum duration for the child workflow execution. If the workflow
* execution is not closed within this duration, it will be timed out and
* force terminated.
The valid values are integers greater than or
* equal to 0
. An integer value can be used to specify the
* duration in seconds while NONE
can be used to specify
* unlimited duration.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withExecutionStartToCloseTimeout(String executionStartToCloseTimeout) {
this.executionStartToCloseTimeout = executionStartToCloseTimeout;
return this;
}
/**
* The name of the task list used for the decision tasks of the child
* workflow execution.
*
* @return The name of the task list used for the decision tasks of the child
* workflow execution.
*/
public TaskList getTaskList() {
return taskList;
}
/**
* The name of the task list used for the decision tasks of the child
* workflow execution.
*
* @param taskList The name of the task list used for the decision tasks of the child
* workflow execution.
*/
public void setTaskList(TaskList taskList) {
this.taskList = taskList;
}
/**
* The name of the task list used for the decision tasks of the child
* workflow execution.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param taskList The name of the task list used for the decision tasks of the child
* workflow execution.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withTaskList(TaskList taskList) {
this.taskList = taskList;
return this;
}
/**
* The id of the DecisionTaskCompleted
event corresponding
* to the decision task that resulted in the
* StartChildWorkflowExecution
Decision to request
* this child workflow execution. This information can be useful for
* diagnosing problems by tracing back the cause of events.
*
* @return The id of the DecisionTaskCompleted
event corresponding
* to the decision task that resulted in the
* StartChildWorkflowExecution
Decision to request
* this child workflow execution. This information can be useful for
* diagnosing problems by tracing back the cause of events.
*/
public Long getDecisionTaskCompletedEventId() {
return decisionTaskCompletedEventId;
}
/**
* The id of the DecisionTaskCompleted
event corresponding
* to the decision task that resulted in the
* StartChildWorkflowExecution
Decision to request
* this child workflow execution. This information can be useful for
* diagnosing problems by tracing back the cause of events.
*
* @param decisionTaskCompletedEventId The id of the DecisionTaskCompleted
event corresponding
* to the decision task that resulted in the
* StartChildWorkflowExecution
Decision to request
* this child workflow execution. This information can be useful for
* diagnosing problems by tracing back the cause of events.
*/
public void setDecisionTaskCompletedEventId(Long decisionTaskCompletedEventId) {
this.decisionTaskCompletedEventId = decisionTaskCompletedEventId;
}
/**
* The id of the DecisionTaskCompleted
event corresponding
* to the decision task that resulted in the
* StartChildWorkflowExecution
Decision to request
* this child workflow execution. This information can be useful for
* diagnosing problems by tracing back the cause of events.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param decisionTaskCompletedEventId The id of the DecisionTaskCompleted
event corresponding
* to the decision task that resulted in the
* StartChildWorkflowExecution
Decision to request
* this child workflow execution. This information can be useful for
* diagnosing problems by tracing back the cause of events.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withDecisionTaskCompletedEventId(Long decisionTaskCompletedEventId) {
this.decisionTaskCompletedEventId = decisionTaskCompletedEventId;
return this;
}
/**
* The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
*
The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* Constraints:
* Allowed Values: TERMINATE, REQUEST_CANCEL, ABANDON
*
* @return The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
*
The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* @see ChildPolicy
*/
public String getChildPolicy() {
return childPolicy;
}
/**
* The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
* The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* Constraints:
* Allowed Values: TERMINATE, REQUEST_CANCEL, ABANDON
*
* @param childPolicy The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
*
The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* @see ChildPolicy
*/
public void setChildPolicy(String childPolicy) {
this.childPolicy = childPolicy;
}
/**
* The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
* The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: TERMINATE, REQUEST_CANCEL, ABANDON
*
* @param childPolicy The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
*
The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see ChildPolicy
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withChildPolicy(String childPolicy) {
this.childPolicy = childPolicy;
return this;
}
/**
* The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
* The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* Constraints:
* Allowed Values: TERMINATE, REQUEST_CANCEL, ABANDON
*
* @param childPolicy The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
*
The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* @see ChildPolicy
*/
public void setChildPolicy(ChildPolicy childPolicy) {
this.childPolicy = childPolicy.toString();
}
/**
* The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
* The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: TERMINATE, REQUEST_CANCEL, ABANDON
*
* @param childPolicy The policy to use for the child workflow executions if this execution
* gets terminated by explicitly calling the
* TerminateWorkflowExecution action or due to an expired timeout.
*
The supported child policies are:
- TERMINATE: the
* child executions will be terminated.
- REQUEST_CANCEL: a
* request to cancel will be attempted for each child execution by
* recording a
WorkflowExecutionCancelRequested
event in its
* history. It is up to the decider to take appropriate actions when it
* receives an execution history with this event.
* - ABANDON: no action will be taken. The child executions will
* continue to run.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see ChildPolicy
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withChildPolicy(ChildPolicy childPolicy) {
this.childPolicy = childPolicy.toString();
return this;
}
/**
* The maximum duration allowed for the decision tasks for this workflow
* execution. The valid values are integers greater than or equal to
* 0
. An integer value can be used to specify the duration
* in seconds while NONE
can be used to specify unlimited
* duration.
*
* Constraints:
* Length: 0 - 8
*
* @return The maximum duration allowed for the decision tasks for this workflow
* execution.
The valid values are integers greater than or equal to
* 0
. An integer value can be used to specify the duration
* in seconds while NONE
can be used to specify unlimited
* duration.
*/
public String getTaskStartToCloseTimeout() {
return taskStartToCloseTimeout;
}
/**
* The maximum duration allowed for the decision tasks for this workflow
* execution.
The valid values are integers greater than or equal to
* 0
. An integer value can be used to specify the duration
* in seconds while NONE
can be used to specify unlimited
* duration.
*
* Constraints:
* Length: 0 - 8
*
* @param taskStartToCloseTimeout The maximum duration allowed for the decision tasks for this workflow
* execution.
The valid values are integers greater than or equal to
* 0
. An integer value can be used to specify the duration
* in seconds while NONE
can be used to specify unlimited
* duration.
*/
public void setTaskStartToCloseTimeout(String taskStartToCloseTimeout) {
this.taskStartToCloseTimeout = taskStartToCloseTimeout;
}
/**
* The maximum duration allowed for the decision tasks for this workflow
* execution.
The valid values are integers greater than or equal to
* 0
. An integer value can be used to specify the duration
* in seconds while NONE
can be used to specify unlimited
* duration.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 0 - 8
*
* @param taskStartToCloseTimeout The maximum duration allowed for the decision tasks for this workflow
* execution.
The valid values are integers greater than or equal to
* 0
. An integer value can be used to specify the duration
* in seconds while NONE
can be used to specify unlimited
* duration.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withTaskStartToCloseTimeout(String taskStartToCloseTimeout) {
this.taskStartToCloseTimeout = taskStartToCloseTimeout;
return this;
}
/**
* The list of tags to associated with the child workflow execution.
*
* Constraints:
* Length: 0 - 5
*
* @return The list of tags to associated with the child workflow execution.
*/
public java.util.List getTagList() {
if (tagList == null) {
tagList = new com.amazonaws.internal.ListWithAutoConstructFlag();
tagList.setAutoConstruct(true);
}
return tagList;
}
/**
* The list of tags to associated with the child workflow execution.
*
* Constraints:
* Length: 0 - 5
*
* @param tagList The list of tags to associated with the child workflow execution.
*/
public void setTagList(java.util.Collection tagList) {
if (tagList == null) {
this.tagList = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag tagListCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tagList.size());
tagListCopy.addAll(tagList);
this.tagList = tagListCopy;
}
/**
* The list of tags to associated with the child workflow execution.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 0 - 5
*
* @param tagList The list of tags to associated with the child workflow execution.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withTagList(String... tagList) {
if (getTagList() == null) setTagList(new java.util.ArrayList(tagList.length));
for (String value : tagList) {
getTagList().add(value);
}
return this;
}
/**
* The list of tags to associated with the child workflow execution.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 0 - 5
*
* @param tagList The list of tags to associated with the child workflow execution.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public StartChildWorkflowExecutionInitiatedEventAttributes withTagList(java.util.Collection tagList) {
if (tagList == null) {
this.tagList = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag tagListCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tagList.size());
tagListCopy.addAll(tagList);
this.tagList = tagListCopy;
}
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 (getWorkflowId() != null) sb.append("WorkflowId: " + getWorkflowId() + ",");
if (getWorkflowType() != null) sb.append("WorkflowType: " + getWorkflowType() + ",");
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 (getDecisionTaskCompletedEventId() != null) sb.append("DecisionTaskCompletedEventId: " + getDecisionTaskCompletedEventId() + ",");
if (getChildPolicy() != null) sb.append("ChildPolicy: " + getChildPolicy() + ",");
if (getTaskStartToCloseTimeout() != null) sb.append("TaskStartToCloseTimeout: " + getTaskStartToCloseTimeout() + ",");
if (getTagList() != null) sb.append("TagList: " + getTagList() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getWorkflowId() == null) ? 0 : getWorkflowId().hashCode());
hashCode = prime * hashCode + ((getWorkflowType() == null) ? 0 : getWorkflowType().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 + ((getDecisionTaskCompletedEventId() == null) ? 0 : getDecisionTaskCompletedEventId().hashCode());
hashCode = prime * hashCode + ((getChildPolicy() == null) ? 0 : getChildPolicy().hashCode());
hashCode = prime * hashCode + ((getTaskStartToCloseTimeout() == null) ? 0 : getTaskStartToCloseTimeout().hashCode());
hashCode = prime * hashCode + ((getTagList() == null) ? 0 : getTagList().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof StartChildWorkflowExecutionInitiatedEventAttributes == false) return false;
StartChildWorkflowExecutionInitiatedEventAttributes other = (StartChildWorkflowExecutionInitiatedEventAttributes)obj;
if (other.getWorkflowId() == null ^ this.getWorkflowId() == null) return false;
if (other.getWorkflowId() != null && other.getWorkflowId().equals(this.getWorkflowId()) == false) return false;
if (other.getWorkflowType() == null ^ this.getWorkflowType() == null) return false;
if (other.getWorkflowType() != null && other.getWorkflowType().equals(this.getWorkflowType()) == 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.getDecisionTaskCompletedEventId() == null ^ this.getDecisionTaskCompletedEventId() == null) return false;
if (other.getDecisionTaskCompletedEventId() != null && other.getDecisionTaskCompletedEventId().equals(this.getDecisionTaskCompletedEventId()) == 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.getTaskStartToCloseTimeout() == null ^ this.getTaskStartToCloseTimeout() == null) return false;
if (other.getTaskStartToCloseTimeout() != null && other.getTaskStartToCloseTimeout().equals(this.getTaskStartToCloseTimeout()) == false) return false;
if (other.getTagList() == null ^ this.getTagList() == null) return false;
if (other.getTagList() != null && other.getTagList().equals(this.getTagList()) == false) return false;
return true;
}
}