Package | com.adobe.mosaic.om.interfaces |
Interface | public interface ISession extends IEventDispatcher |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
ISession
interface represents an instance of a user's server connection.
Use this interface to examine server information and to query the associated server for stored assets.
Propriété | Défini par | ||
---|---|---|---|
name : String [lecture seule]
Returns the name supplied for this connection at open-time. | ISession | ||
securityManager : ISecurityManager [lecture seule]
Returns the ISecurityManager instance for a given session. | ISession | ||
server : IServer [lecture seule]
Returns an IServer instance for the remote server associated with this session. | ISession | ||
state : String [lecture seule]
Returns the current status of the ISession, valid values
are contained in ServerConstants. | ISession |
Méthode | Défini par | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Enregistre un objet écouteur d’événement auprès d’un objet EventDispatcher afin que l’écouteur soit averti d’un événement. | IEventDispatcher | ||
Distribue un événement dans le flux d’événements. | IEventDispatcher | ||
Vérifie si des écouteurs sont enregistrés auprès de l’objet EventDispatcher pour un type spécifique d’événement. | IEventDispatcher | ||
Supprime un écouteur de l’objet EventDispatcher. | IEventDispatcher | ||
Initiates a network request to the associated server for a list of the Applications available
to the current user. | ISession | ||
Initiates a network request to the associated server for a list of the Catalogs available
to the current user. | ISession | ||
Vérifie si un écouteur d’événement est enregistré auprès de cet objet EventDispatcher ou de ses ancêtres pour le type d’événement spécifié. | IEventDispatcher |
name | propriété |
name:String
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns the name supplied for this connection at open-time.
Implémentation
public function get name():String
securityManager | propriété |
securityManager:ISecurityManager
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns the ISecurityManager instance for a given session. Provides the developer access to all available user information on the IUser interface (username, email, first/last name, etc), as well as full support for all authentication patterns (Web Basic-Auth, SSO, etc) provided by the Experience Service Client Security Library.
Implémentation
public function get securityManager():ISecurityManager
server | propriété |
server:IServer
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns an IServer instance for the remote server associated with this session.
Implémentation
public function get server():IServer
state | propriété |
state:String
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns the current status of the ISession, valid values are contained in ServerConstants.
Implémentation
public function get state():String
Eléments de l’API associés
requestApplicationList | () | méthode |
public function requestApplicationList(onSuccess:Function = null, onFailure:Function = null):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Initiates a network request to the associated server for a list of the Applications available to the current user. The result is an Array of type IApplicationListItem.
Paramètres
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
requestCatalogList | () | méthode |
public function requestCatalogList(onSuccess:Function = null, onFailure:Function = null):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Initiates a network request to the associated server for a list of the Catalogs available to the current user. The result is an Array of type ICatalogListItem.
Paramètres
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
Tue Jun 12 2018, 09:30 AM Z