Package io.seald.seald_sdk
Class SaveIdentityResponse
-
- All Implemented Interfaces:
public final class SaveIdentityResponseSaveIdentityResponse is returned by SaveIdentity when an identity has been successfully saved
-
-
Field Summary
Fields Modifier and Type Field Description private final StringssksIdprivate StringauthenticatedSessionId
-
Constructor Summary
Constructors Constructor Description SaveIdentityResponse(String ssksId, String authenticatedSessionId)
-
Method Summary
Modifier and Type Method Description final StringgetSsksId()The SSKS ID of the stored identity, which can be used by your backend to manage it final StringgetAuthenticatedSessionId()If a challenge was passed, an authenticated sessionId, that you can use to perform further SSKS TMR operations without challenge final UnitsetAuthenticatedSessionId(String authenticatedSessionId)If a challenge was passed, an authenticated sessionId, that you can use to perform further SSKS TMR operations without challenge -
-
Method Detail
-
getSsksId
final String getSsksId()
The SSKS ID of the stored identity, which can be used by your backend to manage it
-
getAuthenticatedSessionId
final String getAuthenticatedSessionId()
If a challenge was passed, an authenticated sessionId, that you can use to perform further SSKS TMR operations without challenge
-
setAuthenticatedSessionId
final Unit setAuthenticatedSessionId(String authenticatedSessionId)
If a challenge was passed, an authenticated sessionId, that you can use to perform further SSKS TMR operations without challenge
-
-
-
-