Class java.security.AllPermission
java.lang.Object
|
+----java.security.Permission
|
+----java.security.AllPermission
- public final class AllPermission
- extends Permission
The AllPermission is a permission that implies all other permissions.
Note: Granting the AllPermission should be done with extreme care,
as it implies all other permissions.
- See Also:
- Permission, AccessController, Permissions, PermissionCollection, SecurityManager
Methods inherited from class java.lang.Object
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AllPermission
public AllPermission()
- Creates a new AllPermission object.
AllPermission
public AllPermission(String name,
String actions)
- Creates a new AllPermission object. This
constructor exists for use by the
Policy
object
to instantiate new Permission objects.
- Parameters:
name
- ignored
actions
- ignored.
implies
public boolean implies(Permission p)
- Checks if the specified permission is "implied" by
this object. This method always returns true.
- Parameters:
p
- the permission to check against.
- Returns:
- return
- Overrides:
- implies in class Permission
equals
public boolean equals(Object obj)
- Checks two AllPermission objects for equality. Two AllPermission
objects are always equal.
- Parameters:
obj
- the object we are testing for equality with this object.
- Returns:
- true if obj is an AllPermission, false otherwise.
- Overrides:
- equals in class Permission
hashCode
public int hashCode()
- Returns the hash code value for this object.
- Returns:
- a hash code value for this object.
- Overrides:
- hashCode in class Permission
getActions
public String getActions()
- Returns the canonical string representation of the actions.
- Returns:
- the actions.
- Overrides:
- getActions in class Permission
newPermissionCollection
public PermissionCollection newPermissionCollection()
- Returns a new PermissionCollection object for storing AllPermission
objects.
- Returns:
- a new PermissionCollection object suitable for
storing AllPermissions.
- Overrides:
- newPermissionCollection in class Permission
Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.