.. java:import:: com.fasterxml.jackson.annotation JsonIgnoreProperties .. java:import:: com.fasterxml.jackson.annotation JsonProperty .. java:import:: java.util HashMap .. java:import:: java.util Map Task ==== .. java:package:: io.taskmonk.entities :noindex: .. java:type:: @JsonIgnoreProperties public class Task Holds the data for a single Task. This is used for both uploading data to Taskmonk and for receiving updates from Taskmonk Fields ------ batchId ^^^^^^^ .. java:field:: public String batchId :outertype: Task The batch id for the task. This is set only when retrieving tasks from multiple projects. This need not be set when uploading tasks to Taskmonk data ^^^^ .. java:field:: public Map data :outertype: Task The data for the task. The key would be the field name and the value would be the field value. When Taskmonk sends back the updated task, this would contain the output field values also. externalId ^^^^^^^^^^ .. java:field:: public String externalId :outertype: Task The external id is used for correlation when sending and receiving tasks. The same externalId will be set when Taskmonk sends an update for the task back. This is optional. Constructors ------------ Task ^^^^ .. java:constructor:: public Task() :outertype: Task Task ^^^^ .. java:constructor:: public Task(String batchId, String externalId, Map data) :outertype: Task Task ^^^^ .. java:constructor:: public Task(String externalId, Map data) :outertype: Task Methods ------- getBatchId ^^^^^^^^^^ .. java:method:: @JsonProperty public String getBatchId() :outertype: Task getData ^^^^^^^ .. java:method:: public Map getData() :outertype: Task getExternalId ^^^^^^^^^^^^^ .. java:method:: @JsonProperty public String getExternalId() :outertype: Task setBatchId ^^^^^^^^^^ .. java:method:: @JsonProperty public void setBatchId(String batchId) :outertype: Task setData ^^^^^^^ .. java:method:: public void setData(Map data) :outertype: Task setExternalId ^^^^^^^^^^^^^ .. java:method:: @JsonProperty public void setExternalId(String externalId) :outertype: Task toString ^^^^^^^^ .. java:method:: @Override public String toString() :outertype: Task