(Beta)
Package | com.adobe.mosaic.om.interfaces |
Interface | public interface IEnvironment |
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Runtime Versions: | AIR 2.0.2, Flash Player 10.1 |
IEnvironment
interface provides methods for retrieving information about the LiveCycle Mosaic server.
Related API Elements
com.adobe.om.interfaces.IApplication
Public Properties
Property | Defined By | ||
---|---|---|---|
build : String [read-only]
The build number of the LiveCycle Mosaic server. | IEnvironment | ||
copyright : String [read-only]
The copyright attributions of the server. | IEnvironment | ||
url : String [read-only]
The URL of the server. | IEnvironment | ||
version : String [read-only]
The version number of the server. | IEnvironment |
Property Detail
build | property |
build:String
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Runtime Versions: | AIR 2.0.2, Flash Player 10.1 |
The build number of the LiveCycle Mosaic server.
Implementation
public function get build():String
copyright | property |
copyright:String
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Runtime Versions: | AIR 2.0.2, Flash Player 10.1 |
The copyright attributions of the server.
Implementation
public function get copyright():String
url | property |
version | property |
version:String
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Runtime Versions: | AIR 2.0.2, Flash Player 10.1 |
The version number of the server.
Implementation
public function get version():String
Examples How to use this example
IEnvironment_example.mxml
private function showServerInfo():void { var serverInfo:IEnvironment = this.mosaicApp.environment; Alert.show("Version:\t" + serverInfo.version + "\n" + "Build:\t" + serverInfo.build + "\n" + "Copyright:\t" + serverInfo.copyright + "\n" + "URL:\t" + serverInfo.url); } // showServerInfo
Mon Nov 18 2013, 11:47 AM -08:00