Pacote | com.adobe.mosaic.om.interfaces |
Interface | public interface ISession extends IEventDispatcher |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versões de 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.
Propriedade | Definido por | ||
---|---|---|---|
name : String [somente leitura]
Returns the name supplied for this connection at open-time. | ISession | ||
securityManager : ISecurityManager [somente leitura]
Returns the ISecurityManager instance for a given session. | ISession | ||
server : IServer [somente leitura]
Returns an IServer instance for the remote server associated with this session. | ISession | ||
state : String [somente leitura]
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 um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | IEventDispatcher | ||
Envia um evento para o fluxo de eventos. | IEventDispatcher | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | IEventDispatcher | ||
Remove um ouvinte do 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 | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | IEventDispatcher |
name | propriedade |
name:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Returns the name supplied for this connection at open-time.
Implementação
public function get name():String
securityManager | propriedade |
securityManager:ISecurityManager
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versões de 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.
Implementação
public function get securityManager():ISecurityManager
server | propriedade |
server:IServer
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Returns an IServer instance for the remote server associated with this session.
Implementação
public function get server():IServer
state | propriedade |
state:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Returns the current status of the ISession, valid values are contained in ServerConstants.
Implementação
public function get state():String
Elementos da API relacionados
requestApplicationList | () | método |
public function requestApplicationList(onSuccess:Function = null, onFailure:Function = null):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versões de 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.
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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
Versões de 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.
Parâmetros
onSuccess:Function (default = null ) — The onSuccess function.
| |
onFailure:Function (default = null ) — The onFailure function.
|
Wed Jun 13 2018, 11:10 AM Z