Package zowe.client.sdk.zosconsole.input
Class IssueConsoleInputData
- java.lang.Object
-
- zowe.client.sdk.zosconsole.input.IssueConsoleInputData
-
public class IssueConsoleInputData extends Object
The z/OSMF console API parameters. See the z/OSMF REST API documentation for full details.- Version:
- 4.0
- Author:
- Frank Giordano
-
-
Constructor Summary
Constructors Constructor Description IssueConsoleInputData(String command)
IssueConsoleInputData constructor, command value is required
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCmd()
Retrieve cmd valueOptional<String>
getSolKey()
Retrieve solKey valueOptional<String>
getSystem()
Retrieve system valueboolean
isProcessResponse()
Retrieve is processResponse specifiedvoid
setProcessResponse()
Set process response to truevoid
setSolKey(String solKey)
Assign solKey valuevoid
setSystem(String system)
Assign system valueString
toString()
Return string value representing IssueConsoleParams object
-
-
-
Constructor Detail
-
IssueConsoleInputData
public IssueConsoleInputData(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 process response to true
-
-