Application Integration Guide > ApplicationInterface > System Overview

Classes for the System Overview

Use the available classes to get information about the status of processing.

Reading the System Overview

The AE.ApplicationInterface provides classes which can be used to read the different areas of the System Overview. This includes the classes of the package com.uc4.api.systemoverview. First request the System Overview's particular area to be read. It is supplied without the specification of filter criteria being required. The cells of the overview (which is provided in table form) can then be checked with an iterator. The example shown below reads server processes.

ServerList list = new ServerList();
uc4.sendRequestAndWait(list);

Iterator it = list.iterator();

while(it.hasNext())
{
ServerListItem item = (ServerListItem) it.next();
System.out.println(item.getName());
}

 

See also:

Classes for Objects
Classes for Workflows and Schedules

Classes for Activities

Classes for Statistics and Reports