Skip to end of banner
Go to start of banner

serverInfo

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Availability

This routine is available starting with SIL Engine™ 4.5.6.

Syntax

serverInfo()

Description

Returns some basic information about the Jira server.

Return type

JServerInfo

Example 1

JServerInfo info = serverInfo();

runnerLog("OS: " + info.os);
runnerLog("OS Version: " + info.osVersion);
runnerLog("Java Home: " + info.javaHome);
runnerLog("Java Version: " + info.javaVersion);
...

//for a complete list of JServerInfo fields see the JServerInfo struct type documentation

See also

  • No labels