Pacchetto | com.adobe.mosaic.om.interfaces |
Interfaccia | public interface ISession extends IEventDispatcher |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versioni runtime: | 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.
Proprietà | Definito da | ||
---|---|---|---|
name : String [sola lettura]
Returns the name supplied for this connection at open-time. | ISession | ||
securityManager : ISecurityManager [sola lettura]
Returns the ISecurityManager instance for a given session. | ISession | ||
server : IServer [sola lettura]
Returns an IServer instance for the remote server associated with this session. | ISession | ||
state : String [sola lettura]
Returns the current status of the ISession, valid values
are contained in ServerConstants. | ISession |
Metodo | Definito da | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | IEventDispatcher | ||
Invia un evento nel flusso di eventi. | IEventDispatcher | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | IEventDispatcher | ||
Rimuove un listener dall'oggetto 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 | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | IEventDispatcher |
name | proprietà |
name:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the name supplied for this connection at open-time.
Implementazione
public function get name():String
securityManager | proprietà |
securityManager:ISecurityManager
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versioni runtime: | 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.
Implementazione
public function get securityManager():ISecurityManager
server | proprietà |
server:IServer
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns an IServer instance for the remote server associated with this session.
Implementazione
public function get server():IServer
state | proprietà |
state:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the current status of the ISession, valid values are contained in ServerConstants.
Implementazione
public function get state():String
Elementi API correlati
requestApplicationList | () | metodo |
public function requestApplicationList(onSuccess:Function = null, onFailure:Function = null):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versioni runtime: | 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.
Parametri
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
requestCatalogList | () | metodo |
public function requestCatalogList(onSuccess:Function = null, onFailure:Function = null):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versioni runtime: | 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.
Parametri
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
Tue Jun 12 2018, 02:44 PM Z