| java.lang.Object | |
| ↳ | org.springframework.security.authentication.jaas.JaasGrantedAuthority | 
GrantedAuthority which, in addition to the assigned role, holds the principal that an
 AuthorityGranter used as a reason to grant this authority.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| If the  GrantedAuthoritycan be represented as aStringand thatStringis sufficient in precision to be relied upon for an access control decision by anAccessDecisionManager(or delegate), this method should return such aString. | |||||||||||
| [Expand] Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class
  java.lang.Object | |||||||||||
|  From interface
  org.springframework.security.core.GrantedAuthority | |||||||||||
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.
 
 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.
null if the granted authority cannot be
         expressed as a String with sufficient precision).