IBM WebSphere Extended Deployment (XD)TM, Release 6.1
ObjectGrid API Specification

com.ibm.websphere.objectgrid.security
Class MapPermission

java.lang.Object
  extended by java.security.Permission
      extended by com.ibm.websphere.objectgrid.security.MapPermission
All Implemented Interfaces:
java.io.Serializable, java.security.Guard

public final class MapPermission
extends java.security.Permission

This class represents permissions to the ObjectMap. It has five different actions:

Please refer to the ObjectMap class for the permissions needed for each method.

Since:
WAS XD 6.0
See Also:
Permission, ObjectMap, Serialized Form

Field Summary
static int ALL
          All permission constant
static java.lang.String ALL_PERMISSION
          All permissions String
static int INSERT
          Insert permission constant
static int INVALIDATE
          Invalidate permission constant
static int NUMBER_PERMISSION
          The total number of possible Permissions
static java.lang.String[] PERMISSIONS
          An array with the string representation of each permission.
static int READ
          Read permission constant
static int REMOVE
          Remove permission constant
static int WRITE
          Write permission constant
 
Constructor Summary
MapPermission(java.lang.String name, int actions)
          Constructs a new MapPermission for the named map with the specified actions.
MapPermission(java.lang.String name, java.lang.String actions)
          Constructs a new MapPermission for the named map with the specified actions.
 
Method Summary
 boolean equals(java.lang.Object o)
          Checks two MapPermission objects for equality.
 java.lang.String getActions()
          Returns the actions as a String.
static java.lang.String getActions(int m)
          Returns the actions as a String for the specified mask.
 int getActionsInInt()
          Returns an int mask value which represents the permission's actions.
 java.lang.String[] getParsedNames()
          Returns an array which contains the object grid name and map name.
 int hashCode()
          Returns the hash code value for this MapPermission object.
 boolean implies(java.security.Permission permission)
          Checks if the specified permission is "implied" by this object.
 
Methods inherited from class java.security.Permission
checkGuard, getName, newPermissionCollection, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

NUMBER_PERMISSION

public static final int NUMBER_PERMISSION
The total number of possible Permissions

See Also:
Constant Field Values

READ

public static final int READ
Read permission constant

See Also:
Constant Field Values

WRITE

public static final int WRITE
Write permission constant

See Also:
Constant Field Values

INSERT

public static final int INSERT
Insert permission constant

See Also:
Constant Field Values

REMOVE

public static final int REMOVE
Remove permission constant

See Also:
Constant Field Values

INVALIDATE

public static final int INVALIDATE
Invalidate permission constant

See Also:
Constant Field Values

PERMISSIONS

public static final java.lang.String[] PERMISSIONS
An array with the string representation of each permission.

The indexes to the String representation are the int constants for each permission (i.e. READ, WRITE, INSERT, REMOVE, INVALIDATE)


ALL_PERMISSION

public static final java.lang.String ALL_PERMISSION
All permissions String

See Also:
Constant Field Values

ALL

public static final int ALL
All permission constant

See Also:
Constant Field Values
Constructor Detail

MapPermission

public MapPermission(java.lang.String name,
                     java.lang.String actions)
Constructs a new MapPermission for the named map with the specified actions.

The map name for this permission should be in the format of ., for example "og1.map1". A special value of "*" is used to represent all objectgrids or all maps, for example "*.map1", "og1.*", or "*.*".

Parameters:
name - the map name.
actions - the comma separated list of actions, such as "read", "write", "remove", "insert", and "invalidate".
Throws:
java.lang.IllegalArgumentException - if name is null or malformed or if actions is null or contains an invalidate action name

MapPermission

public MapPermission(java.lang.String name,
                     int actions)
Constructs a new MapPermission for the named map with the specified actions.

The map name for this permission should be in the format of ., for example "og1.map1". A special value of "*" is used to represent all objectgrids or all maps, for example "*.map1", "og1.*", or "*.*".

Parameters:
name - the map name
actions - the actions mask. For example, MapPermission.READ|MapPermission.WRITE
Throws:
java.lang.IllegalArgumentException - if name is null or malformed or if actions is less than 0 or greater than ALL
Method Detail

implies

public boolean implies(java.security.Permission permission)
Checks if the specified permission is "implied" by this object.

More specifically, this method returns true if:

Specified by:
implies in class java.security.Permission
Parameters:
permission - the permission to check against.
Returns:
true if the passed permission is equal to or implied by this permission, false otherwise.

equals

public boolean equals(java.lang.Object o)
Checks two MapPermission objects for equality. Two MapPermission objects are equal if and only if their names and actions are equal.

Do not use the equals method for making access control decisions; use the implies method.

Specified by:
equals in class java.security.Permission
Parameters:
o - the object we are testing for equality with this object.
Returns:
true if both MapPermission objects are equivalent.

hashCode

public int hashCode()
Returns the hash code value for this MapPermission object.

Specified by:
hashCode in class java.security.Permission
Returns:
a hash code value for this object.

getActions

public java.lang.String getActions()
Returns the actions as a String.

Specified by:
getActions in class java.security.Permission
Returns:
the actions of this Permission.

getActions

public static java.lang.String getActions(int m)
Returns the actions as a String for the specified mask.

Parameters:
m - the mask
Returns:
the action string representation for the mask

getParsedNames

public java.lang.String[] getParsedNames()
Returns an array which contains the object grid name and map name.

Returns:
the parsed name array

getActionsInInt

public int getActionsInInt()
Returns an int mask value which represents the permission's actions.

For example, for a MapPermission which has read and insert permissions, the returned value will be 5 (MapPermission.READ|MapPermission.INSERT).

Returns:
an int value which represents the permission.

IBM WebSphere Extended Deployment (XD)TM, Release 6.1
ObjectGrid API Specification

© Copyright International Business Machines Corp 2005-2007. All rights reserved.