BETA ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Hide Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes

Language Reference only
Filters: Retrieving Data from Server...
Retrieving Data from Server...
lc.foundation 

UserManager  - AS3 ADEP Document Services

(Beta)
Packagelc.foundation
Classpublic class UserManager
InheritanceUserManager Inheritance Manager Inheritance EventDispatcher Inheritance Object
Implements IUserManager

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Document Services ES2
Runtime Versions: AIR 1.0, Flash Player 9, Flash Player 10

The UserManager class is the standard implementation of the IUserManager interface.



Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
Public Methods
 MethodDefined By
  
Constructor.
UserManager
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
EventDispatcher
 Inherited
Dispatches an event into the event flow.
EventDispatcher
  
Retrieves the groups that match the specified substring.
UserManager
  
Retrieves the users that match the specified substring.
UserManager
  
Retrieves a list of users who have a common name, who are members in the group specified by the group's OID.
UserManager
  
Retrieves the users that match the specified substring and have invoke permissions to the service.
UserManager
 Inherited
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
EventDispatcher
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
EventDispatcher
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
 Inherited
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
EventDispatcher
Events
 Event Summary Defined By
 Inherited[broadcast event] Dispatched when the Flash Player or AIR application gains operating system focus and becomes active.EventDispatcher
 Inherited[broadcast event] Dispatched when the Flash Player or AIR application operating loses system focus and is becoming inactive.EventDispatcher
Public Constants
 ConstantDefined By
  MSG_GET_GROUPS_ERROR : String = "ALC-WKS-007-121"
[static] A special value that specifies an error occurred retrieving group information.
UserManager
  SESSION_KEY : String = "lc.foundation.IUserManager"
[static] A special value that specifies the manager key name in the SessionMap object.
UserManager
Constructor Detail

UserManager

()Constructor
public function UserManager(session:SessionMap)

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Document Services ES2
Runtime Versions: AIR 1.0, Flash Player 9, Flash Player 10

Constructor.

Parameters
session:SessionMap — Specifies the location of the server URL. If the URL is a value of null, the default is to access the LiveCycle ES2 server at the same location where LiveCycle Workspace ES2 SWF file is loaded from.
Method Detail

findGroups

()method
public function findGroups(commonNamePattern:String):lc.foundation.util:CollectionToken

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Document Services ES2
Runtime Versions: AIR 1.0, Flash Player 9, Flash Player 10

Retrieves the groups that match the specified substring. The matching is performed against the display name of the group. For example, "ample" would match groups named SampleOrganization. Matching is not case-sensitive.

Parameters

commonNamePattern:String — Specifies a substring to match.

Returns
lc.foundation.util:CollectionToken — A token containing a collection of Group objects when the request completes. Set result and fault handlers on the token that executes when the invocation completes and the collection is populated.

findUsers

()method 
public function findUsers(commonNamePattern:String):lc.foundation.util:CollectionToken

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Document Services ES2
Runtime Versions: AIR 1.0, Flash Player 9, Flash Player 10

Retrieves the users that match the specified substring. A match is made against the display name of the user. For example, "ikira" would match "Akira Tanaka". Matching is not case-sensitive.

Parameters

commonNamePattern:String — Specifies a substring to match.

Returns
lc.foundation.util:CollectionToken — A token containing a collection of User objects when the request completes. Set result and fault handlers on the token that executes when the invocation completes and the collection is populated.

findUsersInGroup

()method 
public function findUsersInGroup(groupOid:String, commonNamePattern:String = null):lc.foundation.util:CollectionToken

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Document Services ES2
Runtime Versions: AIR 1.0, Flash Player 9, Flash Player 10

Retrieves a list of users who have a common name, who are members in the group specified by the group's OID. If the commonNamePattern parameter is not supplied, it will return the users who are members of the group specified by the groupOID parameter.

Parameters

groupOid:String — Specifies the OID of the group.
 
commonNamePattern:String (default = null) — Specifies the common name of the user(s). The default is null.

Returns
lc.foundation.util:CollectionToken — A token containing a collection of User objects when the request completes. Set result and fault handlers on the token that executes when the invocation completes and the collection is populated.

findUsersWithPermission

()method 
public function findUsersWithPermission(commonNamePattern:String, serviceName:String):lc.foundation.util:CollectionToken

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Document Services ES2
Runtime Versions: AIR 1.0, Flash Player 9, Flash Player 10

Retrieves the users that match the specified substring and have invoke permissions to the service. The matching is performed against the display name of the user. For example, ikira would match Akira Tanaka. Matching is not case sensitive.

Parameters

commonNamePattern:String — Specifies a substring to match.
 
serviceName:String — Specifies the service name.

Returns
lc.foundation.util:CollectionToken — A token containing a collection of User objects when the request completes. Set result and fault handlers on the token that executes when the invocation completes and the collection is populated.
Constant Detail

MSG_GET_GROUPS_ERROR

Constant
public static const MSG_GET_GROUPS_ERROR:String = "ALC-WKS-007-121"

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Document Services ES2
Runtime Versions: AIR 1.0, Flash Player 9, Flash Player 10

A special value that specifies an error occurred retrieving group information.

SESSION_KEY

Constant 
public static const SESSION_KEY:String = "lc.foundation.IUserManager"

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Document Services ES2
Runtime Versions: AIR 1.0, Flash Player 9, Flash Player 10

A special value that specifies the manager key name in the SessionMap object.