org.springframework.security.core.authority
Interface MutableGrantedAuthoritiesContainer

All Superinterfaces:
GrantedAuthoritiesContainer, Serializable
All Known Implementing Classes:
GrantedAuthoritiesContainerImpl, PreAuthenticatedGrantedAuthoritiesAuthenticationDetails

Deprecated.

@Deprecated
public interface MutableGrantedAuthoritiesContainer
extends GrantedAuthoritiesContainer

Indicates that a object can be used to store and retrieve GrantedAuthority objects.

Typically used in a pre-authenticated scenario when an AuthenticationDetails instance may also be used to obtain user authorities.

Since:
2.0

Method Summary
 void setGrantedAuthorities(Collection<? extends GrantedAuthority> authorities)
          Deprecated. Used to store authorities in the containing object.
 
Methods inherited from interface org.springframework.security.core.authority.GrantedAuthoritiesContainer
getGrantedAuthorities
 

Method Detail

setGrantedAuthorities

void setGrantedAuthorities(Collection<? extends GrantedAuthority> authorities)
Deprecated. 
Used to store authorities in the containing object.