Skip to content
Snippets Groups Projects
Commit af8b5b58 authored by felmer's avatar felmer
Browse files

bug fixed: Deactivation of a person could lead to a...

bug fixed: Deactivation of a person could lead to a ConcurrentModificationException because loop body code changed collection to be iterated.

SVN: 28641
parent e843a6ed
No related branches found
No related tags found
No related merge requests found
...@@ -493,7 +493,12 @@ public abstract class AbstractServer<T> extends AbstractServiceWithLogger<T> imp ...@@ -493,7 +493,12 @@ public abstract class AbstractServer<T> extends AbstractServiceWithLogger<T> imp
IRoleAssignmentDAO roleAssignmenDAO = getDAOFactory().getRoleAssignmentDAO(); IRoleAssignmentDAO roleAssignmenDAO = getDAOFactory().getRoleAssignmentDAO();
person.setActive(false); person.setActive(false);
person.clearAuthorizationGroups(); person.clearAuthorizationGroups();
for (RoleAssignmentPE roleAssignment : person.getRoleAssignments()) // Direct iteration over role assignments could lead to a
// ConcurrentModificationException because roleAssignmentDAO.deleteRoleAssignment()
// will remove the assignment from person.
List<RoleAssignmentPE> roleAssignments =
new ArrayList<RoleAssignmentPE>(person.getRoleAssignments());
for (RoleAssignmentPE roleAssignment : roleAssignments)
{ {
roleAssignmenDAO.deleteRoleAssignment(roleAssignment); roleAssignmenDAO.deleteRoleAssignment(roleAssignment);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment