public class ScopedMemoryPermission extends RealtimePermission
Action Name | Description | Risks of grant |
---|---|---|
map | Uses a given amount of the global backing store. | Physical Map Risk |
enter | Enters a scoped memory | Memory Risk |
monitor | Visit root scoped memories | Encapsulation Risk |
*
or no target allows access to any scoped
memory area or any amount of backing store.
The risk classes are defined in RealtimePermission
.Constructor and Description |
---|
ScopedMemoryPermission(java.lang.String actions)
Creates a new
ImmortalMemoryPermission object for a given action,
i.e., the symbolic name of an action. |
ScopedMemoryPermission(java.lang.String target,
java.lang.String actions)
Creates a new
DirectMemoryPermission object for a given action,
i.e., the symbolic name of an action. |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object other)
Compare two Permission objects for equality.
|
java.lang.String |
getActions()
Obtain the actions as a String in canonical form.
|
int |
hashCode()
Obtain the hash code value for this object.
|
boolean |
implies(java.security.Permission permission)
Checks if the given permission's actions are "implied by" this
object's actions.
|
public ScopedMemoryPermission(java.lang.String target, java.lang.String actions)
DirectMemoryPermission
object for a given action,
i.e., the symbolic name of an action. The target
string
specifies additional limitations on the action.target
- Specifies the domain for the action, or *
for no limit on the permission.actions
- The names of the actions to allow, or *
for all actions.java.lang.NullPointerException
- when action
is null
.StaticIllegalArgumentException
- when
target
or action
is empty.public ScopedMemoryPermission(java.lang.String actions)
ImmortalMemoryPermission
object for a given action,
i.e., the symbolic name of an action.actions
- The names of the actions to allow, or *
for all actions.java.lang.NullPointerException
- when action
is null
.StaticIllegalArgumentException
- when
action
is empty.public boolean equals(java.lang.Object other)
RealtimePermission
equals
in class RealtimePermission
other
- is the object with which to compare.true
when yes and false
otherwise.public java.lang.String getActions()
RealtimePermission
getActions
in class RealtimePermission
public int hashCode()
RealtimePermission
hashCode
in class RealtimePermission
public boolean implies(java.security.Permission permission)
RealtimePermission
implies
in class RealtimePermission
permission
- is the permission to check.true
when yes and false
otherwise.