패키지 | com.adobe.livecycle.ria.security.api |
인터페이스 | public interface IUser |
구현자 | User |
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
IUser
interface provides read-access to a user's attributes,
and offers basic support for authorization checking.
공용 속성
속성 | 정의 주체 | ||
---|---|---|---|
anonymous : Boolean [읽기 전용]
A flag that indicates whether the current user is anonymous. | IUser | ||
attributes : Object [읽기 전용]
The other attributes of the user depending on available details on the server-side. | IUser | ||
displayName : String [읽기 전용]
The name that can be used for display purposes. | IUser | ||
email : String [읽기 전용]
The email address of the user. | IUser | ||
firstName : String [읽기 전용]
The first name of the user. | IUser | ||
groups : Array [읽기 전용]
The groups to which a user belongs. | IUser | ||
lastName : String [읽기 전용]
The last name of the user. | IUser | ||
session : ISession [읽기 전용]
The session associated with the current user. | IUser | ||
userid : String [읽기 전용]
The user's user identifier (ID). | IUser |
공용 메서드
메서드 | 정의 주체 | ||
---|---|---|---|
Determines whether the current user is member of given group. | IUser |
속성 세부 정보
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
attributes | 속성 |
displayName | 속성 |
속성 |
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 | 속성 |
메서드 세부 정보
isMemberOf | () | 메서드 |
public function isMemberOf(groupName: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.
매개 변수
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, 03:17 PM Z