パッケージ | lc.foundation |
インターフェイス | public interface IUserManager extends IManager , IEventDispatcher |
実装者 | UserManager |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
IUserManager
interface contains methods for finding users and groups.
関連する API エレメント
メソッド | 定義元 | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
イベントリスナーオブジェクトを EventDispatcher オブジェクトに登録し、リスナーがイベントの通知を受け取るようにします。 | IEventDispatcher | ||
イベントをイベントフローに送出します。 | IEventDispatcher | ||
Retrieves the groups that match the specified substring. | IUserManager | ||
Retrieves the users that match the specified substring. | IUserManager | ||
findUsersInGroup(groupOid:String, commonNamePattern:String = null):lc.foundation.util:CollectionToken
Retrieves a list of users who have a common name, who are members in the group specified by the group's OID. | IUserManager | ||
findUsersWithPermission(commonNamePattern:String, serviceName:String):lc.foundation.util:CollectionToken
Retrieves the users that match the specified substring and have invoke
permissions to the service. | IUserManager | ||
Determines whether the default operation is prevented. | IManager | ||
Determines whether the default operation is prevented. | IManager | ||
EventDispatcher オブジェクトに、特定のイベントタイプに対して登録されたリスナーがあるかどうかを確認します。 | IEventDispatcher | ||
EventDispatcher オブジェクトからリスナーを削除します。 | IEventDispatcher | ||
指定されたイベントタイプについて、この EventDispatcher オブジェクトまたはその祖先にイベントリスナーが登録されているかどうかを確認します。 | IEventDispatcher |
findGroups | () | メソッド |
public function findGroups(commonNamePattern:String):lc.foundation.util:CollectionToken
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), 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.
パラメーター
commonNamePattern:String — Specifies a substring to match.
|
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 | () | メソッド |
public function findUsers(commonNamePattern:String):lc.foundation.util:CollectionToken
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), 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.
パラメーター
commonNamePattern:String — Specifies a substring to match.
|
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 | () | メソッド |
public function findUsersInGroup(groupOid:String, commonNamePattern:String = null):lc.foundation.util:CollectionToken
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), 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.
パラメーター
groupOid:String — Specifies the OID of the group.
| |
commonNamePattern:String (default = null ) — Specifies the common name of the user(s). The default is null .
|
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 | () | メソッド |
public function findUsersWithPermission(commonNamePattern:String, serviceName:String):lc.foundation.util:CollectionToken
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), 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.
パラメーター
commonNamePattern:String — Specifies a substring to match.
| |
serviceName:String — Specifies the service name.
|
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.
|
Tue Jun 12 2018, 10:34 AM Z