}
@Action
public void reassign() {
try {
Department department = new Department();
ReassignDialog rd = new ReassignDialog(null, true, notificationDialogHelper.getClinicList(), department);
rd.setLocationRelativeTo(this);
rd.setVisible(true);
if (department.isSelected()) {
if (showConfirmMessage("Are you sure you want to reassign '" + notification.toString() + "' to "
+ department.getName() + "?")) {
notification.setReassignAggress(department.getCode());
notificationDialogHelper.reassignWork(notification);
notification.setFlaggedOff(true);
dispose();
}
}