Pacote | com.adobe.livecycle.ria.security.service |
Classe | public class User |
Herança | User Object |
Implementações | IUser |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
User
class provides read-access to the user's attributes, and offers basic support for authorization checking.
Propriedade | Definido por | ||
---|---|---|---|
anonymous : Boolean
A flag that indicates whether the current user is anonymous. | User | ||
attributes : Object [somente leitura]
The other attributes of the user depending on available details on the server-side. | User | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
displayName : String [somente leitura]
The name that can be used for display purposes. | User | ||
email : String [somente leitura]
The email address of the user. | User | ||
firstName : String [somente leitura]
The first name of the user. | User | ||
groups : Array [somente leitura]
The groups to which a user belongs. | User | ||
lastName : String [somente leitura]
The last name of the user. | User | ||
session : ISession [somente leitura]
The session associated with the current user. | User | ||
userid : String [somente leitura]
The user's user identifier (ID). | User |
Método | Definido por | ||
---|---|---|---|
Constructor. | User | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Determines whether the current user is member of given group. | User | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
anonymous | propriedade |
anonymous:Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | 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.
Implementação
public function get anonymous():Boolean
public function set anonymous(value:Boolean):void
attributes | propriedade |
attributes:Object
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
The other attributes of the user depending on available details on the server-side.
Implementação
public function get attributes():Object
displayName | propriedade |
displayName:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
The name that can be used for display purposes.
Implementação
public function get displayName():String
propriedade |
firstName | propriedade |
groups | propriedade |
groups:Array
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | 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.
Implementação
public function get groups():Array
lastName | propriedade |
session | propriedade |
session:ISession
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
The session associated with the current user.
Implementação
public function get session():ISession
userid | propriedade |
User | () | Construtor |
public function User(session:ISession, attributes:Object)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Constructor.
Parâmetrossession:ISession — Specifies the session associated with this user instance.
| |
attributes:Object — Specifies the attributes of the user.
|
isMemberOf | () | método |
public function isMemberOf(name:String):Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Determines whether the current user is member of given group.
Parâmetros
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.
|
Wed Jun 13 2018, 11:10 AM Z