Package com.authlete.common.dto
Class NativeSsoLogoutRequest
- java.lang.Object
-
- com.authlete.common.dto.NativeSsoLogoutRequest
-
- All Implemented Interfaces:
Serializable
public class NativeSsoLogoutRequest extends Object implements Serializable
A request to Authlete's/nativesso/logout
API.The
/nativesso/logout
API 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
-
-
Constructor Summary
Constructors Constructor Description NativeSsoLogoutRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getSessionId()
Get the session ID of a user's authentication session.NativeSsoLogoutRequest
setSessionId(String sessionId)
Set the session ID of a user's authentication session.
-
-
-
Method Detail
-
getSessionId
public String getSessionId()
Get the session ID of a user's authentication session.- Returns:
- The session ID.
-
setSessionId
public NativeSsoLogoutRequest setSessionId(String sessionId)
Set the session ID of a user's authentication session.- Parameters:
sessionId
- The session ID.- Returns:
this
object.
-
-