Пакет | com.adobe.solutions.rca.services.impl |
Класс | public class UserManager |
Наследование | UserManager Object |
Реализует | IUserManager |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
Свойство | Определено | ||
---|---|---|---|
channelSet : ChannelSet
Channel set for remote operation calls. | UserManager | ||
constructor : Object
Ссылка на объект класса или функцию конструктора для данного экземпляра объекта. | Object | ||
instance : IUserManager [статические] [только для чтения]
This operation is used when a single instance of this class is to be shared across the application. | UserManager |
Метод | Определено | ||
---|---|---|---|
The constructor for UserManager class. | UserManager | ||
Retrieves a principal according to the specified identifier. | UserManager | ||
Retrieves a principal according to the name. | UserManager | ||
Retrieves a principal according to the principal name. | UserManager | ||
Finds the principals according to the specified search filter. | UserManager | ||
Retrieves a user according to the name. | UserManager | ||
Retrieves a principal according to the specified domain name and canonical name. | UserManager | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строковое представление заданного объекта. | Object | ||
Возвращает элементарное значение заданного объекта. | Object |
channelSet | свойство |
channelSet:ChannelSet
Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10.0 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
Channel set for remote operation calls.
Реализация
public function get channelSet():ChannelSet
public function set channelSet(value:ChannelSet):void
instance | свойство |
instance:IUserManager
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10.0 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
This operation is used when a single instance of this class is to be shared across the application. Using single instance has performance advantage in terms of using client-side cache for user look up.
Реализация
public static function get instance():IUserManager
UserManager | () | Конструктор |
public function UserManager()
Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10.0 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
The constructor for UserManager
class.
findPrincipalById | () | метод |
public function findPrincipalById(umOid:String):mx.rpc:AsyncToken
Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10.0 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
Retrieves a principal according to the specified identifier.
Параметры
umOid:String — The principal identifier.
|
mx.rpc:AsyncToken — It returns a token on which success or failure handlers can be attached. The resulting event contains the principal to be retrieved.
|
findPrincipalByName | () | метод |
public function findPrincipalByName(name:String):mx.rpc:AsyncToken
Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10.0 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
Retrieves a principal according to the name.
Параметры
name:String — The name of the principal.
|
mx.rpc:AsyncToken — It returns a token on which success or failure handlers can be attached. The resulting event contains the principal to be retrieved.
|
findPrincipalByPrincipalName | () | метод |
public function findPrincipalByPrincipalName(principalName:String):mx.rpc:AsyncToken
Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10.0 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
Retrieves a principal according to the principal name.
Параметры
principalName:String — The principal name.
|
mx.rpc:AsyncToken — It returns a token on which success or failure handlers can be attached. The resulting event contains the principal to be retrieved.
|
findPrincipals | () | метод |
public function findPrincipals(principalSearchFilter:PrincipalSearchFilterVO):mx.rpc:AsyncToken
Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10.0 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
Finds the principals according to the specified search filter.
Параметры
principalSearchFilter:PrincipalSearchFilterVO — The search filter specifying the principals to be returned.
|
mx.rpc:AsyncToken — It returns a token on which success or failure handlers can be attached.
The resulting event contains a list containing all the Principal objects found according to the specified search filter.
|
findUserByName | () | метод |
public function findUserByName(name:String):mx.rpc:AsyncToken
Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10.0 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
Retrieves a user according to the name.
Параметры
name:String — The name of the user.
|
mx.rpc:AsyncToken — It returns a token on which success or failure handlers can be attached. The resulting event contains the principal to be retrieved.
|
getPrincipal | () | метод |
public function getPrincipal(domainName:String, cannonicalName:String):mx.rpc:AsyncToken
Язык версии: | ActionScript 3.0 |
Версия продукта: | Review, Commenting, and Approval Building Block 10.0 |
Версии среды выполнения: | Flash Player 10.2, AIR (unsupported) |
Retrieves a principal according to the specified domain name and canonical name.
Параметры
domainName:String — The domain name of the principal.
| |
cannonicalName:String — The canonical name of the principal.
|
mx.rpc:AsyncToken — It returns a token on which success or failure handlers can be attached. The resulting event contains the principal to be retrieved.
|
Tue Jun 12 2018, 11:34 AM Z