atg.security
Interface AccessRight

All Superinterfaces:
java.security.acl.Permission
All Known Implementing Classes:
GenericAccessRight, Privilege

public interface AccessRight
extends java.security.acl.Permission

An object that defines an access right to a resource.


Field Summary
static java.lang.String CLASS_VERSION
           
 
Method Summary
 boolean equals(java.lang.Object object)
          Returns true if this access right is the same as another.
 java.lang.String getDescription()
          Returns a description of the access right suitable for display to a user.
 java.lang.String getDisplayName()
          Returns the human-readable name of the access right.
 java.lang.String getName()
          Returns a machine-readable name of the access right, useful for persisting the object.
 
Methods inherited from interface java.security.acl.Permission
toString
 

Field Detail

CLASS_VERSION

static final java.lang.String CLASS_VERSION
See Also:
Constant Field Values
Method Detail

getName

java.lang.String getName()
Returns a machine-readable name of the access right, useful for persisting the object.


getDisplayName

java.lang.String getDisplayName()
Returns the human-readable name of the access right.


getDescription

java.lang.String getDescription()
Returns a description of the access right suitable for display to a user.


equals

boolean equals(java.lang.Object object)
Returns true if this access right is the same as another.

Specified by:
equals in interface java.security.acl.Permission
Overrides:
equals in class java.lang.Object