(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 |
---|
Property Detail
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
Wed Nov 21 2018, 06:34 AM -08:00