public final class SimpleGrantedAuthority extends Object implements GrantedAuthority
GrantedAuthority.
Stores a String representation of an authority granted to the
Authentication object.
| Constructor and Description |
|---|
SimpleGrantedAuthority(String role) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getAuthority()
If the
GrantedAuthority can be represented as a String
and that String is sufficient in precision to be relied upon for an
access control decision by an AccessDecisionManager (or delegate), this
method should return such a String. |
int |
hashCode() |
String |
toString() |
public SimpleGrantedAuthority(String role)
public String getAuthority()
GrantedAuthorityGrantedAuthority can be represented as a String
and that String is sufficient in precision to be relied upon for an
access control decision by an AccessDecisionManager (or delegate), this
method should return such a String.
If the GrantedAuthority cannot be expressed with sufficient precision
as a String, null should be returned. Returning
null will require an AccessDecisionManager (or delegate)
to specifically support the GrantedAuthority implementation, so
returning null should be avoided unless actually required.
getAuthority in interface GrantedAuthoritynull if the
granted authority cannot be expressed as a String with sufficient
precision).