SEC-676: Remove child ACLs from cache during delete.

This commit is contained in:
Ben Alex
2008-04-05 03:42:16 +00:00
parent 1036074d26
commit 833b76c011
2 changed files with 9 additions and 4 deletions

View File

@@ -81,13 +81,13 @@ public class JdbcAclService implements AclService {
public Object mapRow(ResultSet rs, int rowNum)
throws SQLException {
String javaType = rs.getString("class");
String identifier = rs.getString("obj_id");
Long identifier = rs.getLong("obj_id");
return new ObjectIdentityImpl(javaType, identifier);
}
});
return (ObjectIdentityImpl[]) objects.toArray(new ObjectIdentityImpl[] {});
return (ObjectIdentityImpl[]) objects.toArray(new ObjectIdentityImpl[objects.size()]);
}
public Acl readAclById(ObjectIdentity object, Sid[] sids) throws NotFoundException {