3 Replies Latest reply on Jul 11, 2007 3:27 PM by szaccaria

    Abandon a taskInstance

    szaccaria

      Hello again,
      Suppose I want to exit from a bussines process for after re-enter in a second moment, how can reach this?

      I'll try to explain it in best way:

      I've a simple process definition like this:

      <process-definition
       name="todo">
      
       <start-state name="start">
       <transition to="task1"/>
       </start-state>
      
       <task-node name="task1">
       <task name="todo" description="dosomething">
       <assignment actor-id="actor1"/>
       </task>
       <transition to="done" name="end"/>
       </task-node>
      
       <end-state name="done"/>
      
      </process-definition>
      


      And I've a user action that start a process:
      @Stateless
      @Name("todoMachine")
      public class TodoMachineAction implements TodoMachine {
      
       @CreateProcess(definition="todo")
       public String newTodo() {
       return "home";
       }
       ...
       ...
       ...
       ...
      }
      


      So I've a web page that listing the task assign to the actor "actor1" like the "todo" example of Seam example.
      Suppose the actor1 start a task with the action :
      @StartTask
      public void write() {
       .... make something ....
       return "writesomething.xhtml";
      }
      


      And this action redirect to a web page where actor1 write something....
      So the actor1 want to exit from this task but not close it, with example
      @EndTask
      public void done() {
       .... make something ....
       return "endtodo.xhtml";
      }
      

      but he want return in this task later for continues his work, whit something like this:
      public void suspendTask() {
       .... make something ....
       return "listTask.xhtml";
      }
      
      
      

      Ofcourse He find the task in the list task open or open yet
      Moreover suppose that the actor1 remain in the page until expire the session time, what happen at the taskinstance on the session?
      Thanks