OPEN - issue SEC-759: GrantedAuthoritiesContainer should extend Serializable

http://jira.springframework.org/browse/SEC-759. Added Serializable to interface.
This commit is contained in:
Luke Taylor 2008-04-11 17:25:41 +00:00
parent d1960b44f9
commit d288f722a8
1 changed files with 3 additions and 1 deletions

View File

@ -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();
}