Hi Srini,
You could implement such functionality in your JSF custom tasklist app
query for tasks assigned to x user as follow
taskService.createTaskQuery().taskAssignee("x").list()
iterate over the list of assigned tasks & do reassignment as follow
taskService.setAssignee("<taskId>", "<newUser>")