Start changeSystem Status

The SystemStatus classes allow you to retrieve system status information and to retrieve and change system pool information. The SystemStatus object allows you to retreive system status information including the following:

In addition to the methods within the SystemStatus class, you also can access SystemPool through SystemStatus. SystemPool allows you to get information about system pools and change system pool information.

Example

This example shows you how to get the number of users that are temporarily signed off:

SystemStatus status = new SystemStatus(new AS400());
System.out.println(" There are " + status.getUsersTemporarilySignedOff()
+ " Users temporarily signed off.");End change


[ Legal | AS/400 Glossary ]