Packagelc.core
Interfacepublic interface IUserManager

The IUserManager interface contains methods for finding users and groups.

See also

lc.domain.User


Public Methods
 MethodDefined By
  
findGroups(commonNamePattern:String):CollectionToken
Retrieves the groups that match the specified substring.
IUserManager
  
findUsers(commonNamePattern:String):CollectionToken
Retrieves the users that match the specified substring.
IUserManager
  
findUsersInGroup(groupOid:String, commonNamePattern:String = null):CollectionToken
Retrieves a list of users who have a common name, who are members in the group specified by the group's OID.
IUserManager
Method Detail
findGroups()method
public function findGroups(commonNamePattern:String):CollectionToken

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

Parameters

commonNamePattern:String — Specifies a substring to match.

Returns
CollectionToken — A token containing a collection of Group objects when the request completes. You can set result and fault handlers on the token to be called when the invocation is complete and the collection is fully populated.
findUsers()method 
public function findUsers(commonNamePattern:String):CollectionToken

Retrieves the users that match the specified substring. The matching is performed against the display name of the user. For example, "ohn" would match "John Doe". Matching is not case-sensitive.

Parameters

commonNamePattern:String — Specifies a substring to match.

Returns
CollectionToken — A token containing a collection of User objects when the request completes. You can set result and fault handlers on the token to be called when the invocation is complete and the collection is fully populated.
findUsersInGroup()method 
public function findUsersInGroup(groupOid:String, commonNamePattern:String = null):CollectionToken

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
CollectionToken — A token containing a collection of User objects when the request completes. You can set result and fault handlers on the token to be called when the invocation is complete and the collection is fully populated.




 

Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/livecycle/es/sdkHelp/common/langref/lc/core/IUserManager.html