Classes for the Administration Perspective

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

Reading the Administration Perspective

The AE.ApplicationInterface provides classes which can be used to read the different areas of the Administration perspective. This includes the classes of the package com.uc4.api.systemoverview. First request the Administration perspective 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:

Object Classes
Classes for Workflows and Schedules
Classes for Activities
Classes for Statistics and Reports