(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():Stringcopyright | 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():Stringurl | 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():StringExamples 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
Wed Nov 21 2018, 06:34 AM -08:00