패키지 | com.adobe.livecycle.ria.security.service |
클래스 | public class User |
상속 | User Object |
구현 | IUser |
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
User
class provides read-access to the user's attributes, and offers basic support for authorization checking.
공용 속성
속성 | 정의 주체 | ||
---|---|---|---|
anonymous : Boolean
A flag that indicates whether the current user is anonymous. | User | ||
attributes : Object [읽기 전용]
The other attributes of the user depending on available details on the server-side. | User | ||
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
displayName : String [읽기 전용]
The name that can be used for display purposes. | User | ||
email : String [읽기 전용]
The email address of the user. | User | ||
firstName : String [읽기 전용]
The first name of the user. | User | ||
groups : Array [읽기 전용]
The groups to which a user belongs. | User | ||
lastName : String [읽기 전용]
The last name of the user. | User | ||
session : ISession [읽기 전용]
The session associated with the current user. | User | ||
userid : String [읽기 전용]
The user's user identifier (ID). | User |
공용 메서드
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor. | User | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Determines whether the current user is member of given group. | User | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
속성 세부 정보
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
public function set anonymous(value:Boolean):void
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 | 속성 |
생성자 세부 정보
User | () | 생성자 |
public function User(session:ISession, attributes:Object)
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
Constructor.
매개 변수session:ISession — Specifies the session associated with this user instance.
| |
attributes:Object — Specifies the attributes of the user.
|
메서드 세부 정보
isMemberOf | () | 메서드 |
public function isMemberOf(name: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.
매개 변수
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, 03:17 PM Z