All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.simpleworkflow.model.DecisionTaskScheduledEventAttributes Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon SWF module holds the client classes that are used for communicating with Amazon Simple Workflow Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2012-2017 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;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Provides details about the DecisionTaskScheduled event. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DecisionTaskScheduledEventAttributes implements Serializable, Cloneable, StructuredPojo { /** *

* The name of the task list in which the decision task was scheduled. *

*/ private TaskList taskList; /** *

* A task priority that, if set, specifies the priority for this decision task. Valid values are integers that range * from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher * numbers indicate higher priority. *

*

* For more information about setting task priority, see Setting Task * Priority in the Amazon SWF Developer Guide. *

*/ private String taskPriority; /** *

* The maximum duration for this decision task. The task is considered timed out if it doesn't completed within this * duration. *

*

* The duration is specified in seconds, an integer greater than or equal to 0. You can use * NONE to specify unlimited duration. *

*/ private String startToCloseTimeout; /** *

* The name of the task list in which the decision task was scheduled. *

* * @param taskList * The name of the task list in which the decision task was scheduled. */ public void setTaskList(TaskList taskList) { this.taskList = taskList; } /** *

* The name of the task list in which the decision task was scheduled. *

* * @return The name of the task list in which the decision task was scheduled. */ public TaskList getTaskList() { return this.taskList; } /** *

* The name of the task list in which the decision task was scheduled. *

* * @param taskList * The name of the task list in which the decision task was scheduled. * @return Returns a reference to this object so that method calls can be chained together. */ public DecisionTaskScheduledEventAttributes withTaskList(TaskList taskList) { setTaskList(taskList); return this; } /** *

* A task priority that, if set, specifies the priority for this decision task. Valid values are integers that range * from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher * numbers indicate higher priority. *

*

* For more information about setting task priority, see Setting Task * Priority in the Amazon SWF Developer Guide. *

* * @param taskPriority * A task priority that, if set, specifies the priority for this decision task. Valid values are integers * that range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE * (2147483647). Higher numbers indicate higher priority.

*

* For more information about setting task priority, see Setting Task * Priority in the Amazon SWF Developer Guide. */ public void setTaskPriority(String taskPriority) { this.taskPriority = taskPriority; } /** *

* A task priority that, if set, specifies the priority for this decision task. Valid values are integers that range * from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher * numbers indicate higher priority. *

*

* For more information about setting task priority, see Setting Task * Priority in the Amazon SWF Developer Guide. *

* * @return A task priority that, if set, specifies the priority for this decision task. Valid values are integers * that range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE * (2147483647). Higher numbers indicate higher priority.

*

* For more information about setting task priority, see Setting Task * Priority in the Amazon SWF Developer Guide. */ public String getTaskPriority() { return this.taskPriority; } /** *

* A task priority that, if set, specifies the priority for this decision task. Valid values are integers that range * from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher * numbers indicate higher priority. *

*

* For more information about setting task priority, see Setting Task * Priority in the Amazon SWF Developer Guide. *

* * @param taskPriority * A task priority that, if set, specifies the priority for this decision task. Valid values are integers * that range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE * (2147483647). Higher numbers indicate higher priority.

*

* For more information about setting task priority, see Setting Task * Priority in the Amazon SWF Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public DecisionTaskScheduledEventAttributes withTaskPriority(String taskPriority) { setTaskPriority(taskPriority); return this; } /** *

* The maximum duration for this decision task. The task is considered timed out if it doesn't completed within this * duration. *

*

* The duration is specified in seconds, an integer greater than or equal to 0. You can use * NONE to specify unlimited duration. *

* * @param startToCloseTimeout * The maximum duration for this decision task. The task is considered timed out if it doesn't completed * within this duration.

*

* The duration is specified in seconds, an integer greater than or equal to 0. You can use * NONE to specify unlimited duration. */ public void setStartToCloseTimeout(String startToCloseTimeout) { this.startToCloseTimeout = startToCloseTimeout; } /** *

* The maximum duration for this decision task. The task is considered timed out if it doesn't completed within this * duration. *

*

* The duration is specified in seconds, an integer greater than or equal to 0. You can use * NONE to specify unlimited duration. *

* * @return The maximum duration for this decision task. The task is considered timed out if it doesn't completed * within this duration.

*

* The duration is specified in seconds, an integer greater than or equal to 0. You can use * NONE to specify unlimited duration. */ public String getStartToCloseTimeout() { return this.startToCloseTimeout; } /** *

* The maximum duration for this decision task. The task is considered timed out if it doesn't completed within this * duration. *

*

* The duration is specified in seconds, an integer greater than or equal to 0. You can use * NONE to specify unlimited duration. *

* * @param startToCloseTimeout * The maximum duration for this decision task. The task is considered timed out if it doesn't completed * within this duration.

*

* The duration is specified in seconds, an integer greater than or equal to 0. You can use * NONE to specify unlimited duration. * @return Returns a reference to this object so that method calls can be chained together. */ public DecisionTaskScheduledEventAttributes withStartToCloseTimeout(String startToCloseTimeout) { setStartToCloseTimeout(startToCloseTimeout); 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 (getTaskList() != null) sb.append("TaskList: ").append(getTaskList()).append(","); if (getTaskPriority() != null) sb.append("TaskPriority: ").append(getTaskPriority()).append(","); if (getStartToCloseTimeout() != null) sb.append("StartToCloseTimeout: ").append(getStartToCloseTimeout()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DecisionTaskScheduledEventAttributes == false) return false; DecisionTaskScheduledEventAttributes other = (DecisionTaskScheduledEventAttributes) obj; 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.getStartToCloseTimeout() == null ^ this.getStartToCloseTimeout() == null) return false; if (other.getStartToCloseTimeout() != null && other.getStartToCloseTimeout().equals(this.getStartToCloseTimeout()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTaskList() == null) ? 0 : getTaskList().hashCode()); hashCode = prime * hashCode + ((getTaskPriority() == null) ? 0 : getTaskPriority().hashCode()); hashCode = prime * hashCode + ((getStartToCloseTimeout() == null) ? 0 : getStartToCloseTimeout().hashCode()); return hashCode; } @Override public DecisionTaskScheduledEventAttributes clone() { try { return (DecisionTaskScheduledEventAttributes) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.simpleworkflow.model.transform.DecisionTaskScheduledEventAttributesMarshaller.getInstance().marshall(this, protocolMarshaller); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy