mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-25 13:32:30 +00:00
Changed internals to use list instead of set, to preserve element ordering.
This commit is contained in:
parent
adb1971873
commit
1b726825fa
@ -18,8 +18,8 @@ package net.sf.acegisecurity.providers.dao.memory;
|
||||
import net.sf.acegisecurity.GrantedAuthority;
|
||||
import net.sf.acegisecurity.GrantedAuthorityImpl;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.List;
|
||||
import java.util.Vector;
|
||||
|
||||
|
||||
/**
|
||||
@ -32,7 +32,7 @@ import java.util.Set;
|
||||
public class UserAttributeDefinition {
|
||||
//~ Instance fields ========================================================
|
||||
|
||||
private Set authorities = new HashSet();
|
||||
private List authorities = new Vector();
|
||||
private String password;
|
||||
private boolean enabled = true;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user