Package com.authlete.common.dto
Class HskListResponse
- java.lang.Object
-
- com.authlete.common.dto.ApiResponse
-
- com.authlete.common.dto.HskListResponse
-
- All Implemented Interfaces:
Serializable
public class HskListResponse extends ApiResponse
Response from Authlete's/api/hsk/get/list
API.- Since:
- 2.97, Authlete 2.2.12
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HskListResponse.Action
The result of the API call.
-
Constructor Summary
Constructors Constructor Description HskListResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HskListResponse.Action
getAction()
Get the result of the API call.Hsk[]
getHsks()
Get the information about the keys on the HSM.HskListResponse
setAction(HskListResponse.Action action)
Set the result of the API call.HskListResponse
setHsks(Hsk[] hsks)
Set the information about the keys on the HSM.-
Methods inherited from class com.authlete.common.dto.ApiResponse
getResultCode, getResultMessage, setResultCode, setResultMessage
-
-
-
-
Method Detail
-
getAction
public HskListResponse.Action getAction()
Get the result of the API call.- Returns:
- The result of the API call.
-
setAction
public HskListResponse setAction(HskListResponse.Action action)
Set the result of the API call.- Parameters:
action
- The result of the API call.- Returns:
this
object.
-
getHsks
public Hsk[] getHsks()
Get the information about the keys on the HSM.- Returns:
- Information about the keys.
-
setHsks
public HskListResponse setHsks(Hsk[] hsks)
Set the information about the keys on the HSM.- Parameters:
hsks
- Information about the keys.- Returns:
this
object.
-
-