示例#1
0
 /**
  * Create a new CrowdJob, which is a Java representation of a Job, from a JSON template.
  * CrowdClient must be used to actually create the job on the server.
  *
  * @param template the template.
  */
 public CrowdJob(JsonNode template) {
   this.template = template;
   createArgumentMaps();
 }