Package | com.adobe.livecycle.ria.security.service |
Classe | public class User |
Héritage | User Object |
Implémente | IUser |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
User
class provides read-access to the user's attributes, and offers basic support for authorization checking.
Propriété | Défini par | ||
---|---|---|---|
anonymous : Boolean
A flag that indicates whether the current user is anonymous. | User | ||
attributes : Object [lecture seule]
The other attributes of the user depending on available details on the server-side. | User | ||
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | ||
displayName : String [lecture seule]
The name that can be used for display purposes. | User | ||
email : String [lecture seule]
The email address of the user. | User | ||
firstName : String [lecture seule]
The first name of the user. | User | ||
groups : Array [lecture seule]
The groups to which a user belongs. | User | ||
lastName : String [lecture seule]
The last name of the user. | User | ||
session : ISession [lecture seule]
The session associated with the current user. | User | ||
userid : String [lecture seule]
The user's user identifier (ID). | User |
Méthode | Défini par | ||
---|---|---|---|
Constructor. | User | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Determines whether the current user is member of given group. | User | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie la représentation sous forme de chaîne de l’objet spécifié. | Object | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
anonymous | propriété |
anonymous:Boolean
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versions du moteur d’exécution: | 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.
Implémentation
public function get anonymous():Boolean
public function set anonymous(value:Boolean):void
attributes | propriété |
attributes:Object
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
The other attributes of the user depending on available details on the server-side.
Implémentation
public function get attributes():Object
displayName | propriété |
displayName:String
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
The name that can be used for display purposes.
Implémentation
public function get displayName():String
propriété |
firstName | propriété |
groups | propriété |
groups:Array
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versions du moteur d’exécution: | 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.
Implémentation
public function get groups():Array
lastName | propriété |
session | propriété |
session:ISession
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
The session associated with the current user.
Implémentation
public function get session():ISession
userid | propriété |
User | () | Constructeur |
public function User(session:ISession, attributes:Object)
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Constructor.
Paramètressession:ISession — Specifies the session associated with this user instance.
| |
attributes:Object — Specifies the attributes of the user.
|
isMemberOf | () | méthode |
public function isMemberOf(name:String):Boolean
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Determines whether the current user is member of given group.
Paramètres
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, 09:30 AM Z