OPEN - issue SEC-759: GrantedAuthoritiesContainer should extend Serializable
http://jira.springframework.org/browse/SEC-759. Added Serializable to interface.
This commit is contained in:
parent
d1960b44f9
commit
d288f722a8
|
@ -1,5 +1,7 @@
|
|||
package org.springframework.security;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Indicates that a object stores GrantedAuthority objects.
|
||||
* <p>
|
||||
|
@ -10,6 +12,6 @@ package org.springframework.security;
|
|||
* @author Luke Taylor
|
||||
* @since 2.0
|
||||
*/
|
||||
public interface GrantedAuthoritiesContainer {
|
||||
public interface GrantedAuthoritiesContainer extends Serializable {
|
||||
GrantedAuthority[] getGrantedAuthorities();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue