com.plumtree.server
Class PT_ACCESS_LEVELS

java.lang.Object
  extended by com.plumtree.server.PT_ACCESS_LEVELS

public final class PT_ACCESS_LEVELS
extends java.lang.Object

This list contains the available access levels in the Plumtree security model. When defining or viewing an Access Control List, each entry will specify a user or group, and an access level. The access level will be an item in this list. For example, these values can be passed into IPTAccessList.Add.

Author:
michaels
See Also:
IPTAccessList, IPTAccessListEntry

Field Summary
static int PT_ACCESS_LEVEL_ADMIN
          Administrative access is granted.
static int PT_ACCESS_LEVEL_EDIT
          Edit access is granted.
static int PT_ACCESS_LEVEL_NONE
          No access to the item is granted
static int PT_ACCESS_LEVEL_READ
          Read access is granted.
static int PT_ACCESS_LEVEL_SELECT
          Select access is granted.
 
Constructor Summary
PT_ACCESS_LEVELS()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PT_ACCESS_LEVEL_NONE

public static final int PT_ACCESS_LEVEL_NONE
No access to the item is granted

See Also:
Constant Field Values

PT_ACCESS_LEVEL_READ

public static final int PT_ACCESS_LEVEL_READ
Read access is granted. This generally means that the user can see the object, but not use it

See Also:
Constant Field Values

PT_ACCESS_LEVEL_SELECT

public static final int PT_ACCESS_LEVEL_SELECT
Select access is granted. This generally means that the user can choose the object, and use it (e.g. select a Gadget object to view on a MyPage)

See Also:
Constant Field Values

PT_ACCESS_LEVEL_EDIT

public static final int PT_ACCESS_LEVEL_EDIT
Edit access is granted. This generally means that the user can edit the data in the object (e.g. change the name of a Community)

See Also:
Constant Field Values

PT_ACCESS_LEVEL_ADMIN

public static final int PT_ACCESS_LEVEL_ADMIN
Administrative access is granted. This generally means that all operations are permitted, including moving the object, deleting it, etc.

See Also:
Constant Field Values
Constructor Detail

PT_ACCESS_LEVELS

public PT_ACCESS_LEVELS()