Class AllPermission
java.lang.Object
java.security.Permission
java.security.AllPermission
- All Implemented Interfaces:
Serializable, Guard
The
AllPermission is a permission that implies all other permissions.- API Note:
- This permission cannot be used for controlling access to resources as the Security Manager is no longer supported.
- Since:
- 1.2
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newAllPermissionobject.AllPermission(String name, String actions) Creates a newAllPermissionobject. -
Method Summary
Modifier and TypeMethodDescriptionbooleanChecks twoAllPermissionobjects for equality.Returns the canonical string representation of the actions.inthashCode()Returns the hash code value for this object.booleanChecks if the specified permission is "implied" by this object.Returns a newPermissionCollectionfor storingAllPermissionobjects.Methods declared in class Permission
checkGuard, getName, toStringMethods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
AllPermission
public AllPermission()Creates a newAllPermissionobject. -
AllPermission
-
-
Method Details
-
implies
Checks if the specified permission is "implied" by this object. This method always returnstrue.- Specified by:
impliesin classPermission- Parameters:
p- the permission to check against.- Returns:
- return
-
equals
Checks twoAllPermissionobjects for equality. TwoAllPermissionobjects are always equal.- Specified by:
equalsin classPermission- Parameters:
obj- the object we are testing for equality with this object.- Returns:
- true if
objis anAllPermission, false otherwise. - See Also:
-
hashCode
public int hashCode()Returns the hash code value for this object.- Specified by:
hashCodein classPermission- Returns:
- the hash code value for this object
- See Also:
-
getActions
Returns the canonical string representation of the actions.- Specified by:
getActionsin classPermission- Returns:
- the actions.
-
newPermissionCollection
Returns a newPermissionCollectionfor storingAllPermissionobjects.- Overrides:
newPermissionCollectionin classPermission- Returns:
- a new
PermissionCollectionsuitable for storingAllPermissionobjects.
-