public final class SwitchUserGrantedAuthority extends java.lang.Object implements GrantedAuthority
GrantedAuthority
used by
SwitchUserFilter
Stores the Authentication
object of the original user to be used later when
'exiting' from a user switch.
SwitchUserFilter
,
Serialized FormConstructor and Description |
---|
SwitchUserGrantedAuthority(java.lang.String role,
Authentication source) |
Modifier and Type | Method and 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 . |
Authentication |
getSource()
Returns the original user associated with a successful user switch.
|
int |
hashCode() |
java.lang.String |
toString() |
public SwitchUserGrantedAuthority(java.lang.String role, Authentication source)
public Authentication getSource()
Authentication
object of the switched user.public java.lang.String getAuthority()
GrantedAuthority
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.
getAuthority
in interface GrantedAuthority
null
if the
granted authority cannot be expressed as a String
with sufficient
precision).public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object