パッケージ | 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, 10:34 AM Z