Class TaskDto

java.lang.Object
com.qfs.snl.dtos.TaskDto
All Implemented Interfaces:
Serializable

public class TaskDto extends Object implements Serializable
DTO representing a user task to perform.
Author:
ActiveViam
See Also:
  • Constructor Details Link icon

    • TaskDto Link icon

      public TaskDto()
      Default constructor.
  • Method Details Link icon

    • getId Link icon

      public String getId()
      Returns the id.
    • setId Link icon

      public void setId(String id)
      Sets the id.
      Parameters:
      id - The id to set
    • getName Link icon

      public String getName()
      Returns the name.
    • setName Link icon

      public void setName(String name)
      Sets the name.
      Parameters:
      name - The name to set
    • getDescription Link icon

      public String getDescription()
      Returns the description.
    • setDescription Link icon

      public void setDescription(String description)
      Sets the description.
      Parameters:
      description - The description to set
    • getCandidates Link icon

      public List<String> getCandidates()
      Returns the candidates.
    • setCandidates Link icon

      public void setCandidates(List<String> candidates)
      Sets the candidates.
      Parameters:
      candidates - The candidates to set
    • getAssignee Link icon

      public String getAssignee()
      Returns the assignee.
    • setAssignee Link icon

      public void setAssignee(String assignee)
      Sets the assignee.
      Parameters:
      assignee - The assignee to set
    • getFormFields Link icon

      public List<FormFieldDto> getFormFields()
      Returns the fields.
    • setFormFields Link icon

      public void setFormFields(List<FormFieldDto> fields)
      Sets the fields.
      Parameters:
      fields - The fields to set
    • getCategory Link icon

      public String getCategory()
      Returns the category.
    • setCategory Link icon

      public void setCategory(String category)
      Sets the category.
      Parameters:
      category - The category to set
    • getPriority Link icon

      public int getPriority()
      Returns the priority.
    • setPriority Link icon

      public void setPriority(int priority)
      Sets the priority.
      Parameters:
      priority - The priority to set