com.sas.hls.work.workitem
Class CompletedTask

java.lang.Object
  extended by com.sas.hls.work.workitem.CompletedTask
All Implemented Interfaces:
Serializable

public class CompletedTask
extends Object
implements Serializable

A data object that represents a completed task in a work item

See Also:
Serialized Form

Constructor Summary
CompletedTask(String taskId, String name, String complexity, String priority, Date started, Date completed, Date dueDate, String assignee, String assigneeType, String completedBy, String status, String comments)
          Constructor
 
Method Summary
 String getAssignee()
          Get the assignee for the completed task
 String getAssigneeType()
          Get the assignee type for the completed task
 String getComments()
          Get the comments for the completed task
 Date getCompleted()
          Get the completed date for the completed task
 String getCompletedBy()
          Get the completed by for the completed task
 String getComplexity()
          Get the complexity for the completed task
 Date getDueDate()
          Get the due date for the completed task
 String getName()
          Get the name for the completed task
 String getPriority()
          Get the priority for the completed task
 Date getStarted()
          Get the start date for the completed task
 String getStatus()
          Get the status for the completed task
 String getTaskId()
          Get the task id for the completed task
 String toString()
          Return a string representation of the object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CompletedTask

public CompletedTask(String taskId,
                     String name,
                     String complexity,
                     String priority,
                     Date started,
                     Date completed,
                     Date dueDate,
                     String assignee,
                     String assigneeType,
                     String completedBy,
                     String status,
                     String comments)
Constructor

Parameters:
taskId - the task identifier for this completed task
name - the name of this completed task
complexity - the complexity of this completed task
priority - the priority of this completed task
started - the date this completed task was started
completed - the date this completed task was completed
dueDate - the date this completed task was due
assignee - the principal identifier assigned to this completed task
assigneeType - the type of principal assigned to this completed task
completedBy - who completed this task
status - the status of this completed task
comments - any comments associated with this completed task
Method Detail

getName

public String getName()
Get the name for the completed task

Returns:
Returns the name.

getComplexity

public String getComplexity()
Get the complexity for the completed task

Returns:
Returns the complexity.

getPriority

public String getPriority()
Get the priority for the completed task

Returns:
Returns the priority.

getDueDate

public Date getDueDate()
Get the due date for the completed task

Returns:
Returns the dueDate.

getAssignee

public String getAssignee()
Get the assignee for the completed task

Returns:
Returns the assignee.

getStatus

public String getStatus()
Get the status for the completed task

Returns:
Returns the status.

getTaskId

public String getTaskId()
Get the task id for the completed task

Returns:
Returns the taskId.

getAssigneeType

public String getAssigneeType()
Get the assignee type for the completed task

Returns:
Returns the assigneeType.

getCompletedBy

public String getCompletedBy()
Get the completed by for the completed task

Returns:
Returns the completedBy.

getComments

public String getComments()
Get the comments for the completed task

Returns:
Returns the comments.

getStarted

public Date getStarted()
Get the start date for the completed task

Returns:
Returns the started.

getCompleted

public Date getCompleted()
Get the completed date for the completed task

Returns:
Returns the completed.

toString

public String toString()
Return a string representation of the object.

Overrides:
toString in class Object
See Also:
Object.toString()


Copyright (c) 2016, SAS Institute Inc., Cary, NC, USA