Paket | com.adobe.livecycle.ria.security.service |
Sınıf | public class User |
Miras Alma | User Object |
Uygular | IUser |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
User
class provides read-access to the user's attributes, and offers basic support for authorization checking.
Özellik | Tanımlayan: | ||
---|---|---|---|
anonymous : Boolean
A flag that indicates whether the current user is anonymous. | User | ||
attributes : Object [salt okunur]
The other attributes of the user depending on available details on the server-side. | User | ||
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
displayName : String [salt okunur]
The name that can be used for display purposes. | User | ||
email : String [salt okunur]
The email address of the user. | User | ||
firstName : String [salt okunur]
The first name of the user. | User | ||
groups : Array [salt okunur]
The groups to which a user belongs. | User | ||
lastName : String [salt okunur]
The last name of the user. | User | ||
session : ISession [salt okunur]
The session associated with the current user. | User | ||
userid : String [salt okunur]
The user's user identifier (ID). | User |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | User | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Determines whether the current user is member of given group. | User | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
anonymous | özellik |
anonymous:Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get anonymous():Boolean
public function set anonymous(value:Boolean):void
attributes | özellik |
attributes:Object
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
The other attributes of the user depending on available details on the server-side.
Uygulama
public function get attributes():Object
displayName | özellik |
özellik |
firstName | özellik |
groups | özellik |
groups:Array
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get groups():Array
lastName | özellik |
session | özellik |
userid | özellik |
User | () | Yapıcı |
public function User(session:ISession, attributes:Object)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
Constructor.
Parametrelersession:ISession — Specifies the session associated with this user instance.
| |
attributes:Object — Specifies the attributes of the user.
|
isMemberOf | () | yöntem |
public function isMemberOf(name:String):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
Determines whether the current user is member of given group.
Parametreler
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, 01:09 PM Z