Пакет | com.adobe.livecycle.ria.security.service |
Класс | public class User |
Наследование | User Object |
Реализует | IUser |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Версии среды выполнения: | AIR 2.6, Flash Player 10.2 |
User
class provides read-access to the user's attributes, and offers basic support for authorization checking.
Свойство | Определено | ||
---|---|---|---|
anonymous : Boolean
A flag that indicates whether the current user is anonymous. | User | ||
attributes : Object [только для чтения]
The other attributes of the user depending on available details on the server-side. | User | ||
constructor : Object
Ссылка на объект класса или функцию конструктора для данного экземпляра объекта. | Object | ||
displayName : String [только для чтения]
The name that can be used for display purposes. | User | ||
email : String [только для чтения]
The email address of the user. | User | ||
firstName : String [только для чтения]
The first name of the user. | User | ||
groups : Array [только для чтения]
The groups to which a user belongs. | User | ||
lastName : String [только для чтения]
The last name of the user. | User | ||
session : ISession [только для чтения]
The session associated with the current user. | User | ||
userid : String [только для чтения]
The user's user identifier (ID). | User |
Метод | Определено | ||
---|---|---|---|
Constructor. | User | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Determines whether the current user is member of given group. | User | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строковое представление заданного объекта. | Object | ||
Возвращает элементарное значение заданного объекта. | Object |
anonymous | свойство |
anonymous:Boolean
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Версии среды выполнения: | AIR 2.6, Flash Player 10.2 |
A flag that indicates whether the current user is anonymous.
It can be used to control display at time of startup when user identity is not determined.
Реализация
public function get anonymous():Boolean
public function set anonymous(value:Boolean):void
attributes | свойство |
attributes:Object
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Версии среды выполнения: | AIR 2.6, Flash Player 10.2 |
The other attributes of the user depending on available details on the server-side.
Реализация
public function get attributes():Object
displayName | свойство |
displayName:String
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Версии среды выполнения: | AIR 2.6, Flash Player 10.2 |
The name that can be used for display purposes.
Реализация
public function get displayName():String
свойство |
firstName | свойство |
groups | свойство |
groups:Array
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Версии среды выполнения: | AIR 2.6, Flash Player 10.2 |
The groups to which a user belongs.
The returned Array
object contains Group names. By default all the groups
to which the user belongs are returned. However in some cases the group names might be filtered.
For example if a group has property UIEnabled
set to false then such a group would not
be sent to client.
Реализация
public function get groups():Array
lastName | свойство |
session | свойство |
userid | свойство |
User | () | Конструктор |
public function User(session:ISession, attributes:Object)
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Версии среды выполнения: | AIR 2.6, Flash Player 10.2 |
Constructor.
Параметрыsession:ISession — Specifies the session associated with this user instance.
| |
attributes:Object — Specifies the attributes of the user.
|
isMemberOf | () | метод |
public function isMemberOf(name:String):Boolean
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Версии среды выполнения: | AIR 2.6, Flash Player 10.2 |
Determines whether the current user is member of given group.
Параметры
name:String — Specifies the name of the group for which check is performed.
|
Boolean — A boolean value. A value of true indicates that the user is member of passed group.
|
Tue Jun 12 2018, 11:34 AM Z