| java.security.acl.Permission
Permission | public interface Permission (Code) | | This interface represents a permission, such as that used to grant
a particular type of access to a resource.
author: Satish Dharmaraj |
Method Summary | |
public boolean | equals(Object another) Returns true if the object passed matches the permission represented
in this interface.
Parameters: another - the Permission object to compare with. | public String | toString() Prints a string representation of this permission. |
equals | public boolean equals(Object another)(Code) | | Returns true if the object passed matches the permission represented
in this interface.
Parameters: another - the Permission object to compare with. true if the Permission objects are equal, false otherwise |
toString | public String toString()(Code) | | Prints a string representation of this permission.
the string representation of the permission. |
|
|