use of org.jbpm.services.task.impl.model.ReassignmentImpl in project jbpm by kiegroup.
the class CollectionUtils method readReassignmentList.
public static List<Reassignment> readReassignmentList(ObjectInput in) throws IOException, ClassNotFoundException {
int size = in.readInt();
List<Reassignment> list = new ArrayList<Reassignment>(size);
for (int i = 0; i < size; i++) {
Reassignment item = new ReassignmentImpl();
item.readExternal(in);
list.add(item);
}
return list;
}
Aggregations