Class JaasGrantedAuthority

    • Constructor Summary

      Constructors 
      Constructor Description
      JaasGrantedAuthority​(java.lang.String role, java.security.Principal principal)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.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.
      java.security.Principal getPrincipal()  
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • JaasGrantedAuthority

        public JaasGrantedAuthority​(java.lang.String role,
                                    java.security.Principal principal)
    • Method Detail

      • getPrincipal

        public java.security.Principal getPrincipal()
      • getAuthority

        public java.lang.String getAuthority()
        Description copied from interface: 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.

        Specified by:
        getAuthority in interface GrantedAuthority
        Returns:
        a representation of the granted authority (or null if the granted authority cannot be expressed as a String with sufficient precision).
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object