Paquete | com.adobe.livecycle.ria.security.service |
Clase | public class User |
Herencia | User Object |
Implementa | IUser |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
User
class provides read-access to the user's attributes, and offers basic support for authorization checking.
Propiedad | Definido por | ||
---|---|---|---|
anonymous : Boolean
A flag that indicates whether the current user is anonymous. | User | ||
attributes : Object [solo lectura]
The other attributes of the user depending on available details on the server-side. | User | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
displayName : String [solo lectura]
The name that can be used for display purposes. | User | ||
email : String [solo lectura]
The email address of the user. | User | ||
firstName : String [solo lectura]
The first name of the user. | User | ||
groups : Array [solo lectura]
The groups to which a user belongs. | User | ||
lastName : String [solo lectura]
The last name of the user. | User | ||
session : ISession [solo lectura]
The session associated with the current user. | User | ||
userid : String [solo lectura]
The user's user identifier (ID). | User |
Método | Definido por | ||
---|---|---|---|
Constructor. | User | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Determines whether the current user is member of given group. | User | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
anonymous | propiedad |
anonymous:Boolean
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versiones de motor de ejecución: | 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.
Implementación
public function get anonymous():Boolean
public function set anonymous(value:Boolean):void
attributes | propiedad |
attributes:Object
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
The other attributes of the user depending on available details on the server-side.
Implementación
public function get attributes():Object
displayName | propiedad |
displayName:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
The name that can be used for display purposes.
Implementación
public function get displayName():String
propiedad |
firstName | propiedad |
groups | propiedad |
groups:Array
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versiones de motor de ejecución: | 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.
Implementación
public function get groups():Array
lastName | propiedad |
session | propiedad |
session:ISession
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
The session associated with the current user.
Implementación
public function get session():ISession
userid | propiedad |
User | () | Información sobre |
public function User(session:ISession, attributes:Object)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versiones de motor de ejecución: | 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
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versiones de motor de ejecución: | 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.
|
Tue Jun 12 2018, 02:12 PM Z