Interface ITSOCommandResult


  • public interface ITSOCommandResult
    ITSOCommandResult provides the output from executing a TSO command

    Examples:
    To obtain an ITSOCommandResult:

     IZOSHostConnection zosHostConnection = ...
     ITSOCommandProvider commandProvider = ...
     
     try {
         // submit the command
         ITSOCommandResult commandResult = commandProvider.submitTSOCommand(command);
     } catch (TopazAPIRuntimeException e) {
         // An error occurred submitting or executing the command
         ...
     }
     
    Since:
    2.2.0
    Version:
    2.2.0
    See Also:
    IZOSHostConnection, ITSOCommandProvider
    Restriction:
    This interface is not intended to be extended by clients.
    Restriction:
    This interface is not intended to be implemented by clients.
    • Method Detail

      • getTsoOutput

        List<String> getTsoOutput()
        Returns the list of strings output by the executed TSO command
        Returns:
        List of String objects