SystemPool class

The SystemPool class allows you to retrieve and change system pool information including the following:

Example
Note: Read the Code example disclaimer for important legal information.
    //Create AS400 object.
    AS400 as400 = new AS400("system name");
    
    //Construct a system pool object.
    SystemPool systemPool = new SystemPool(as400,"*SPOOL");
    
    //Get system pool paging option
    System.out.println("Paging option : "+systemPool.getPagingOption());