Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Encapsulates the allowed privileges and provides access to simple
descriptions of what operations are allowed.
This class is immutable, which means that once it is constructed with
privileges, the privileges cannot be changed for this instance.
canAdd:Boolean
[read-only]
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates whether add operations are permitted.
Implementation public function get canAdd():Boolean
canModify:Boolean
[read-only]
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates whether any modification operation can be performed.
Implementation public function get canModify():Boolean
canRemove:Boolean
[read-only]
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates whether remove operations are permitted.
Implementation public function get canRemove():Boolean
canUpdate:Boolean
[read-only]
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates whether updates are permitted.
Implementation public function get canUpdate():Boolean
public function AccessPrivileges(privileges:uint = 14)
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Constructs an instance with the specified privileges.
Parameters | privileges:uint (default = 14 ) — bitmap representing access privileges. Starting
with the smallest order bit:
First bit - not used - should always be zero; read-only access when value is 0.
Second bit - on when add operations are allowed
Third bit - on when update operations are allowed
Fourth bit - on when remove operations are allowed
|
public static const ADD:uint = 2
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that add operations are allowed.
public static const ALL:uint = 14
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that no restrictions are imposed.
All mutation operations, add, update, and remove are allowed.
public static const NONE:uint = 0
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates read-only access.
public static const REMOVE:uint = 8
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that remove operations are allowed.
public static const UPDATE:uint = 4
Language Version: | ActionScript 3.0 |
Product Version: | LiveCycle Data Services 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Indicates that update operations are allowed.