Package com.compuware.api.topaz.tso
Interface ITSOCommandResult
-
public interface ITSOCommandResult
ITSOCommandResult provides the output from executing a TSO commandExamples:
To obtain anITSOCommandResult
: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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>
getTsoOutput()
Returns the list of strings output by the executed TSO command
-