cancel
Showing results for 
Search instead for 
Did you mean: 

[Activiti 6]: How to create a new custom Task

bond007
Champ in-the-making
Champ in-the-making
Hi

can i make a new custom task in activiti 6. Is there any document or example.
2 REPLIES 2

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi,


  /**
   * Creates a new task that is not related to any process instance.
   *
   * The returned task is transient and must be saved with {@link #saveTask(Task)} 'manually'.
   */
  Task newTask();

Regards
Martin

bond007
Champ in-the-making
Champ in-the-making
Thanks Martin.