Package zowe.client.sdk.zosconsole.input
Class ConsoleCmdInputData
- java.lang.Object
-
- zowe.client.sdk.zosconsole.input.ConsoleCmdInputData
-
public class ConsoleCmdInputData extends Object
The z/OSMF console command API parameters. See the z/OSMF REST API documentation for full details.- Version:
- 5.0
- Author:
- Frank Giordano
-
-
Constructor Summary
Constructors Constructor Description ConsoleCmdInputData(String command)IssueConsoleInputData constructor, command value is required
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCmd()Retrieve cmd valueOptional<String>getSolKey()Retrieve solKey valueOptional<String>getSystem()Retrieve system valuebooleanisProcessResponse()Retrieve is processResponse specifiedvoidsetProcessResponse()Set a process response to truevoidsetSolKey(String solKey)Assign solKey valuevoidsetSystem(String system)Assign system valueStringtoString()Return string value representing IssueConsoleInputData object
-
-
-
Constructor Detail
-
ConsoleCmdInputData
public ConsoleCmdInputData(String command)
IssueConsoleInputData constructor, command value is required- Parameters:
command- console command to issue
-
-
Method Detail
-
getCmd
public String getCmd()
Retrieve cmd value- Returns:
- cmd value
-
setSolKey
public void setSolKey(String solKey)
Assign solKey value- Parameters:
solKey- value
-
setSystem
public void setSystem(String system)
Assign system value- Parameters:
system- value
-
isProcessResponse
public boolean isProcessResponse()
Retrieve is processResponse specified- Returns:
- boolean true or false
-
setProcessResponse
public void setProcessResponse()
Set a process response to true
-
-