Package zowe.client.sdk.zosconsole.input
Class IssueParams
- java.lang.Object
-
- zowe.client.sdk.zosconsole.input.ConsoleParams
-
- zowe.client.sdk.zosconsole.input.IssueParams
-
public class IssueParams extends ConsoleParams
Interface for Issue command parameters- Version:
- 1.0
- Author:
- Frank Giordano
-
-
Constructor Summary
Constructors Constructor Description IssueParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<String>
getAsync()
Retrieve async valueOptional<String>
getCommand()
Retrieve command valueOptional<String>
getSolicitedKeyword()
Retrieve solicitedKeyword valueOptional<String>
getSysplexSystem()
Retrieve sysplexSystem valuevoid
setAsync(String async)
Assign async valuevoid
setCommand(String command)
Assign command valuevoid
setSolicitedKeyword(String solicitedKeyword)
Assign solicitedKeyword valuevoid
setSysplexSystem(String sysplexSystem)
Assign sysplexSystem valueString
toString()
-
Methods inherited from class zowe.client.sdk.zosconsole.input.ConsoleParams
getConsoleName, getProcessResponses, setConsoleName, setProcessResponses
-
-
-
-
Method Detail
-
setCommand
public void setCommand(String command)
Assign command value- Parameters:
command
- value
-
getSysplexSystem
public Optional<String> getSysplexSystem()
Retrieve sysplexSystem value- Returns:
- sysplexSystem value
-
setSysplexSystem
public void setSysplexSystem(String sysplexSystem)
Assign sysplexSystem value- Parameters:
sysplexSystem
- value
-
getSolicitedKeyword
public Optional<String> getSolicitedKeyword()
Retrieve solicitedKeyword value- Returns:
- solicitedKeyword value
-
setSolicitedKeyword
public void setSolicitedKeyword(String solicitedKeyword)
Assign solicitedKeyword value- Parameters:
solicitedKeyword
- value
-
setAsync
public void setAsync(String async)
Assign async value- Parameters:
async
- value
-
toString
public String toString()
- Overrides:
toString
in classConsoleParams
-
-