org.springframework.security.acls.domain
Class GrantedAuthoritySid

java.lang.Object
  extended by org.springframework.security.acls.domain.GrantedAuthoritySid
All Implemented Interfaces:
Serializable, Sid

public class GrantedAuthoritySid
extends Object
implements Sid

Represents a GrantedAuthority as a Sid.

This is a basic implementation that simply uses the String-based principal for Sid comparison. More complex principal objects may wish to provide an alternative Sid implementation that uses some other identifier.

Version:
$Id: GrantedAuthoritySid.java 3651 2009-05-11 05:20:09Z ltaylor $
Author:
Ben Alex
See Also:
Serialized Form

Constructor Summary
GrantedAuthoritySid(GrantedAuthority grantedAuthority)
           
GrantedAuthoritySid(String grantedAuthority)
           
 
Method Summary
 boolean equals(Object object)
          Refer to the java.lang.Object documentation for the interface contract.
 String getGrantedAuthority()
           
 int hashCode()
          Refer to the java.lang.Object documentation for the interface contract.
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GrantedAuthoritySid

public GrantedAuthoritySid(String grantedAuthority)

GrantedAuthoritySid

public GrantedAuthoritySid(GrantedAuthority grantedAuthority)
Method Detail

equals

public boolean equals(Object object)
Description copied from interface: Sid
Refer to the java.lang.Object documentation for the interface contract.

Specified by:
equals in interface Sid
Overrides:
equals in class Object
Parameters:
object - to be compared
Returns:
true if the objects are equal, false otherwise

hashCode

public int hashCode()
Description copied from interface: Sid
Refer to the java.lang.Object documentation for the interface contract.

Specified by:
hashCode in interface Sid
Overrides:
hashCode in class Object
Returns:
a hash code representation of this object

getGrantedAuthority

public String getGrantedAuthority()

toString

public String toString()
Overrides:
toString in class Object


Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.