パッケージ | com.adobe.livecycle.ria.security.api |
インターフェイス | public interface IPin |
実装者 | Pin |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
IPin
object is a type of ticket which can be used to authenticate a user in remote call.
A pin instance is typically used to perform authentication for file uploads. The pin can be
obtained by using the ISecurityManager.getTicket
method.
関連する API エレメント
パブリックプロパティ
プロパティ | 定義元 | ||
---|---|---|---|
enabled : Boolean
A flag that indicates whether a pin is enabled. | IPin | ||
expiry : Date
The date and time when the pin expires. | IPin | ||
id : String
An identifier to uniquely identify a pin on the server-side. | IPin | ||
maxUse : int
The maximum number of times a pin can be used. | IPin | ||
owner : String
The user who the pin is assigned or issued to. | IPin | ||
useCounter : int
The number of times the current pin has been used in calls made to Experience Server. | IPin |
パブリックメソッド
メソッド | 定義元 | ||
---|---|---|---|
Determines whether the current pin has expired. | IPin | ||
Determines whether a pin usage has exceeded the maximum usage limit. | IPin | ||
Determines whether a pin is valid and can be used. | IPin |
プロパティの詳細
enabled | プロパティ |
enabled:Boolean
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
A flag that indicates whether a pin is enabled. A value of True
specifies that the pin is enabled.
実装
public function get enabled():Boolean
public function set enabled(value:Boolean):void
expiry | プロパティ |
id | プロパティ |
maxUse | プロパティ |
owner | プロパティ |
useCounter | プロパティ |
useCounter:int
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
The number of times the current pin has been used in calls made to Experience Server.
実装
public function get useCounter():int
public function set useCounter(value:int):void
メソッドの詳細
isPinExpired | () | メソッド |
public function isPinExpired():Boolean
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Determines whether the current pin has expired.
戻り値Boolean — A boolean value to indicate whether the pin has expired. A value of True indicates that the
pin expired.
|
isUseCounterExceededMaxUsage | () | メソッド |
public function isUseCounterExceededMaxUsage():Boolean
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Determines whether a pin usage has exceeded the maximum usage limit.
戻り値Boolean — A flag to indicate whether the pin usage exceeds the maximum usage.
A value of True indicates that the pin usage count exceeds the maximum use limit.
|
isValid | () | メソッド |
public function isValid():Boolean
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Security 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Determines whether a pin is valid and can be used.
A pin is considered to be valid if it has not expired and its usage count is less than the maximum allowed limit.
戻り値Boolean — A boolean value that indicates whether the pin is valid. A value of True indicates that the pin is valid.
|
Tue Jun 12 2018, 10:34 AM Z