...
My problem is that once assigned to the management team I cannot reassign the task to a contractor. I've been able to use the following code in the first assignment to programatically assign a number of users, but this fails in the second attempt to assign a contractor.
Code Block |
---|
import java.util.ArrayList; |
...
a = new ArrayList(); |
...
a.add("jack"); // one username |
...
return a; |
Am I misunderstanding the process in that once assigned to a user (Accepted) I cannot change change this?
...