Paket | com.adobe.livecycle.ria.security.api |
Schnittstelle | public interface IUser |
Umsetzer | User |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
IUser
interface provides read-access to a user's attributes,
and offers basic support for authorization checking.
Eigenschaft | Definiert von | ||
---|---|---|---|
anonymous : Boolean [schreibgeschützt]
A flag that indicates whether the current user is anonymous. | IUser | ||
attributes : Object [schreibgeschützt]
The other attributes of the user depending on available details on the server-side. | IUser | ||
displayName : String [schreibgeschützt]
The name that can be used for display purposes. | IUser | ||
email : String [schreibgeschützt]
The email address of the user. | IUser | ||
firstName : String [schreibgeschützt]
The first name of the user. | IUser | ||
groups : Array [schreibgeschützt]
The groups to which a user belongs. | IUser | ||
lastName : String [schreibgeschützt]
The last name of the user. | IUser | ||
session : ISession [schreibgeschützt]
The session associated with the current user. | IUser | ||
userid : String [schreibgeschützt]
The user's user identifier (ID). | IUser |
Methode | Definiert von | ||
---|---|---|---|
Determines whether the current user is member of given group. | IUser |
anonymous | Eigenschaft |
anonymous:Boolean
[schreibgeschützt] Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Laufzeitversionen: | 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.
Implementierung
public function get anonymous():Boolean
attributes | Eigenschaft |
attributes:Object
[schreibgeschützt] Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
The other attributes of the user depending on available details on the server-side.
Implementierung
public function get attributes():Object
displayName | Eigenschaft |
displayName:String
[schreibgeschützt] Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
The name that can be used for display purposes.
Implementierung
public function get displayName():String
Eigenschaft |
firstName | Eigenschaft |
groups | Eigenschaft |
groups:Array
[schreibgeschützt] Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Laufzeitversionen: | 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.
Implementierung
public function get groups():Array
lastName | Eigenschaft |
session | Eigenschaft |
userid | Eigenschaft |
isMemberOf | () | Methode |
public function isMemberOf(groupName:String):Boolean
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
Determines whether the current user is member of given group.
Parameter
groupName: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, 10:04 AM Z