Pacote | com.adobe.mosaic.mxml |
Classe | public class Service |
Herança | Service EventDispatcher Object |
Implementações | IMXMLObject |
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 |
serviceNode
property.
Elementos da API relacionados
com.adobe.mosaic.om.interfaces.IShell
com.adobe.mosaic.mxml.ServerSession
com.adobe.mosaic.mxml.Application
com.adobe.mosaic.mxml.Catalog
Propriedade | Definido por | ||
---|---|---|---|
catalog : Catalog
The Service's composite application catalog component. | Service | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
library : String
The value of the library name. | Service | ||
loaded : Boolean [somente leitura]
Checks if the underlying IService is instantiated. | Service | ||
name : String
The name of the Experience Service. | Service | ||
serviceNode : IService [somente leitura]
The underlying Composite Application Framework SDK IService. | Service | ||
shell : IShell
The associated IShell that the Service belongs to. | Service |
Método | Definido por | ||
---|---|---|---|
Service()
Constructor. | Service | ||
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. | EventDispatcher | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Implementation of IMXMLObject initialized. | Service | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Makes a request to load the Service by the value
of the name property from the associated Catalog, and then
attempts to add the service to the associated IShell. | Service | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Evento | Resumo | Definido por | ||
---|---|---|---|---|
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR ganha o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
The addServiceEventFailure defines a failure notification of an attempt to load a Service. | Service | |||
The addServiceEventSuccess defines a successful notification of loading a Service. | Service | |||
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR perde o foco do sistema operacional e está se tornando inativo. | EventDispatcher |
catalog | propriedade |
catalog:Catalog
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 |
The Service's composite application catalog component.
Implementação
public function get catalog():Catalog
public function set catalog(value:Catalog):void
Elementos da API relacionados
library | propriedade |
library:String
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 |
The value of the library name.
Implementação
public function get library():String
public function set library(value:String):void
loaded | propriedade |
loaded:Boolean
[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 |
Checks if the underlying IService is instantiated.
Implementação
public function get loaded():Boolean
name | propriedade |
name:String
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 |
The name of the Experience Service.
Implementação
public function get name():String
public function set name(value:String):void
serviceNode | propriedade |
serviceNode:IService
[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 |
The underlying Composite Application Framework SDK IService.
Implementação
public function get serviceNode():IService
Elementos da API relacionados
shell | propriedade |
shell:IShell
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 |
The associated IShell that the Service belongs to.
Implementação
public function get shell():IShell
public function set shell(value:IShell):void
Elementos da API relacionados
Service | () | Construtor |
public function Service()
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 |
Constructor.
initialized | () | método |
public function initialized(document:Object, id:String):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 |
Implementation of IMXMLObject initialized.
Parâmetros
document:Object — The document
| |
id:String — The mxml id
|
loadService | () | método |
public function loadService():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 |
Makes a request to load the Service by the value of the name property from the associated Catalog, and then attempts to add the service to the associated IShell. Both Catalog and Shell are required, and if either one is missing a log message will be generated. If the state of the catalog is either CatalogConstants.STATE_UNINITIALIZED or not CatalogConstants.STATE_LOADED, an event listener is added to listen for a CatalogLoadEvent.SUCCESS, at which time the catalog is considered loaded and a call to loadService() is triggered then.
addServiceEventFailure | Evento |
com.adobe.mosaic.om.events.AddServiceEvent
propriedade AddServiceEvent.type =
com.adobe.mosaic.om.events.AddServiceEvent.FAILURE
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 |
The addServiceEventFailure defines a failure notification of an attempt to load a Service.
addServiceEventSuccess | Evento |
com.adobe.mosaic.om.events.AddServiceEvent
propriedade AddServiceEvent.type =
com.adobe.mosaic.om.events.AddServiceEvent.SUCCESS
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 |
The addServiceEventSuccess defines a successful notification of loading a Service.
<fx:Declarations> <mosaic:ServerSession id="myServer" openSessionEventSuccess="myServer_connectedHandler(event)" openSessionEventFailure="myServer_faultHandler(event)" url="{_serverUrl}" /> <mosaic:Application id="myApp" loadApplicationEventSuccess="myApp_loadApplicationEventSuccessHandler(event)" loadApplicationEventFailure="myApp_loadApplicationEventFailureHandler(event)"> <mosaic:catalogs> <mosaic:Catalog id="sampleCatalog" name="sample_catalog" catalogLoadEventSuccess="myCatalogSuccess(event)" catalogLoadEventFailure="myCatalogFail(event)" serverSession="{myServer}"/> </mosaic:catalogs> </mosaic:Application> <mosaic:Service id="myService" catalog="{sampleCatalog}" shell="{myApp.shell}" library="MyDataService-Weather" name="WeatherService"/> </fx:Declarations>
Wed Jun 13 2018, 11:10 AM Z