Package com.authlete.common.dto
Class NativeSsoLogoutResponse
- java.lang.Object
- 
- com.authlete.common.dto.ApiResponse
- 
- com.authlete.common.dto.NativeSsoLogoutResponse
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class NativeSsoLogoutResponse extends ApiResponse A response from Authlete's/nativesso/logoutAPI.The /nativesso/logoutAPI is provided to support the concept of "logout from all applications" in the context of Native SSO. This is accomplished by deleting access/refresh token records associated with the specified session ID.In Authlete's implementation, access/refresh token records can be associated with a session ID only through the mechanism introduced by the "OpenID Connect Native SSO for Mobile Apps 1.0" specification ("Native SSO"). - Since:
- 4.20, Authlete 3.0
- See Also:
- OpenID Connect Native SSO for Mobile Apps 1.0, Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classNativeSsoLogoutResponse.ActionThe next action that the API caller should take.
 - 
Constructor SummaryConstructors Constructor Description NativeSsoLogoutResponse()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description NativeSsoLogoutResponse.ActiongetAction()Get the next action that the API caller should take.intgetCount()Get the number of deleted access/refresh token records.NativeSsoLogoutResponsesetAction(NativeSsoLogoutResponse.Action action)Set the next action that the API caller should take.NativeSsoLogoutResponsesetCount(int count)Set the number of deleted access/refresh token records.- 
Methods inherited from class com.authlete.common.dto.ApiResponsegetResponseHeaders, getResultCode, getResultMessage, setResponseHeaders, setResultCode, setResultMessage
 
- 
 
- 
- 
- 
Method Detail- 
getActionpublic NativeSsoLogoutResponse.Action getAction() Get the next action that the API caller should take.- Returns:
- The next action to take.
 
 - 
setActionpublic NativeSsoLogoutResponse setAction(NativeSsoLogoutResponse.Action action) Set the next action that the API caller should take.- Parameters:
- action- The next action to take.
- Returns:
- thisobject.
 
 - 
getCountpublic int getCount() Get the number of deleted access/refresh token records.- Returns:
- The number of deleted access/refresh token records.
 
 - 
setCountpublic NativeSsoLogoutResponse setCount(int count) Set the number of deleted access/refresh token records.- Parameters:
- count- The number of deleted access/refresh token records.
- Returns:
- thisobject.
 
 
- 
 
-