public final class AllPermission extends Permission
Note: Granting AllPermission should be done with extreme care, as it implies all other permissions. Thus, it grants code the ability to run with security disabled. Extreme caution should be taken before granting such a permission to code. This permission should be used only during testing, or in extremely rare cases where an application or applet is completely trusted and adding the necessary permissions to the policy is prohibitively cumbersome.
Permission,
AccessController,
Permissions,
PermissionCollection,
SecurityManager
| Constructor and Description |
|---|
AllPermission()
Creates a new AllPermission object.
|
AllPermission(String
Creates a new AllPermission object.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object
Checks two AllPermission objects for equality.
|
String |
getActions()
Returns the canonical string representation of the actions.
|
int |
hashCode()
Returns the hash code value for this object.
|
boolean |
implies(Permission
Checks if the specified permission is "implied" by this object.
|
PermissionCollection |
newPermissionCollection()
Returns a new PermissionCollection object for storing AllPermission objects.
|
checkGuard, getName, toStringpublic boolean implies(Permissionp)
implies in class
Permission
p - the permission to check against.
public boolean equals(Objectobj)
equals in class
Permission
obj - the object we are testing for equality with this object.
Object.hashCode() ,
HashMap
public int hashCode()
hashCode in class
Permission
Object.equals(java.lang.Object) ,
System.identityHashCode(java.lang.Object)
public StringgetActions()
getActions in class
Permission
public PermissionCollectionnewPermissionCollection()
newPermissionCollection in class
Permission