Paquete | com.adobe.mosaic.om.interfaces |
Interfaz | public interface ISession extends IEventDispatcher |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | 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.
Propiedad | Definido por | ||
---|---|---|---|
name : String [solo lectura]
Returns the name supplied for this connection at open-time. | ISession | ||
securityManager : ISecurityManager [solo lectura]
Returns the ISecurityManager instance for a given session. | ISession | ||
server : IServer [solo lectura]
Returns an IServer instance for the remote server associated with this session. | ISession | ||
state : String [solo lectura]
Returns the current status of the ISession, valid values
are contained in ServerConstants. | ISession |
Método | Definido por | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de un evento. | IEventDispatcher | ||
Distribuye un evento en el flujo del evento. | IEventDispatcher | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | IEventDispatcher | ||
Elimina un detector del objeto 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 | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | IEventDispatcher |
name | propiedad |
name:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Returns the name supplied for this connection at open-time.
Implementación
public function get name():String
securityManager | propiedad |
securityManager:ISecurityManager
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | 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.
Implementación
public function get securityManager():ISecurityManager
server | propiedad |
server:IServer
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Returns an IServer instance for the remote server associated with this session.
Implementación
public function get server():IServer
state | propiedad |
state:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Returns the current status of the ISession, valid values are contained in ServerConstants.
Implementación
public function get state():String
Elementos de API relacionados
requestApplicationList | () | método |
public function requestApplicationList(onSuccess:Function = null, onFailure:Function = null):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | 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.
Parámetros
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
requestCatalogList | () | método |
public function requestCatalogList(onSuccess:Function = null, onFailure:Function = null):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versiones de motor de ejecución: | 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.
Parámetros
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
Tue Jun 12 2018, 02:12 PM Z