Package zowe.client.sdk.zostso.response
Class TsoCommonResponse
- java.lang.Object
-
- zowe.client.sdk.zostso.response.TsoCommonResponse
-
public class TsoCommonResponse extends Object
The z/OSMF tso common response.This class is used to parse the response from the z/OSMF tso apis using jackson library.
- Version:
- 5.0
- Author:
- Frank Giordano
-
-
Constructor Summary
Constructors Constructor Description TsoCommonResponse(String servletKey, String ver, Boolean timeout, Boolean reused)TsoCommonResponse constructor for JSON deserialization
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetReused()Retrieve tso reuse valueStringgetServletKey()Retrieve tso session idBooleangetTimeout()Retrieve tso timeout valueStringgetVer()Retrieve tso version valueStringtoString()Return string value representing TsoCommonResponse object
-
-
-
Constructor Detail
-
TsoCommonResponse
public TsoCommonResponse(String servletKey, String ver, Boolean timeout, Boolean reused)
TsoCommonResponse constructor for JSON deserialization- Parameters:
servletKey- TSO session identifierver- TSO versiontimeout- Indicates if timeout occurredreused- Indicates if a session was reused
-
-
Method Detail
-
getServletKey
public String getServletKey()
Retrieve tso session id- Returns:
- string value representing tso session id
-
getVer
public String getVer()
Retrieve tso version value- Returns:
- string value
-
getTimeout
public Boolean getTimeout()
Retrieve tso timeout value- Returns:
- Boolean value
-
getReused
public Boolean getReused()
Retrieve tso reuse value- Returns:
- boolean value
-
-