See: Description
| Interface | Description | 
|---|---|
| OpenListOfObjectsAuthorityListener | |
| OpenListOfObjectsFormatListener | |
| OpenListOfObjectsSelectionListener | 
| Class | Description | 
|---|---|
| CreateUserSpace |  Call the QUSCRTUS API, 
 QUSCRTUS
 
 This class is used with a CommandConnection to create a user space
 
  Sample code
 
 public static void main(String[] args) {
   try { 
     CommandConnection connection = CommandConnection.getConnection(args[0],  args[1],  args[2]);
     CreateUserSpace createUserSpace = new CreateUserSpace(
                       args[4], // userSpaceName 
                       args[3], // userSpaceLibrary 
                       CreateUserSpace.EXTENDED_ATTRIBUTE_NONE,      // extendedAttribute 
                       100,     // initialSize       
                       CreateUserSpace.INITIAL_VALUE_BEST_PERFORMANCE, // initialValue 
                       CreateUserSpace.PUBLIC_AUTHORITY_USE, // publicAuthority 
                       "", //textDescription 
                       CreateUserSpace.REPLACE_NO,  //replace 
                       CreateUserSpace.DOMAIN_DEFAULT, //domain 
                       CreateUserSpace.TRANSFER_SIZE_REQUEST_DEFAULT, //transferSizeRequest 
                       CreateUserSpace.OPTIMUM_SPACE_ALIGNMENT_YES // optimumSpaceAlignment 
                    );
     CommandResult result = connection.call(createUserSpace); 
     System.out.println("Command completed with "+result); 
   } catch (Exception e) {
     e.printStackTrace(System.out); 
   }
}
  | 
| DeleteUserSpace | |
| OpenListOfObjects | |
| OpenListOfObjectsFormat | |
| RetrieveObjectDescription | QUSROBJD
 This class fully implements the V5R4 specification of QUSROBJD. | 
| RetrieveUserSpace |