Package com.persequor.app
Interface IProfileRegistrationInfo
public interface IProfileRegistrationInfo
-
Method Summary
Modifier and TypeMethodDescriptionGet the app roles for this registration.Get the profile id for this registration.Get the individual id for this registration.Class<? extends SpaceExtensionContext>
getSpace()
Get the space for this registration.Get the token (used for identifying which app registration a request is made from) id for this registration.Get the user id (username) for this registration.Get the time this registration is valid until.void
setValidUntil
(ZonedDateTime validUntil) Set the time this registration is valid until.
-
Method Details
-
getTokenId
String getTokenId()Get the token (used for identifying which app registration a request is made from) id for this registration.- Returns:
- the token id
-
getRegistrationId
String getRegistrationId()Get the individual id for this registration.- Returns:
- the registration id
-
getValidUntil
ZonedDateTime getValidUntil()Get the time this registration is valid until.- Returns:
- the time this registration is valid until
-
setValidUntil
Set the time this registration is valid until.- Parameters:
validUntil
- the time this registration is valid until
-
getUserId
String getUserId()Get the user id (username) for this registration.- Returns:
- the user id
-
getProfileId
String getProfileId()Get the profile id for this registration.- Returns:
- the profile id
-
getAppRoles
Get the app roles for this registration.- Returns:
- the app roles
-
getSpace
Class<? extends SpaceExtensionContext> getSpace()Get the space for this registration.- Returns:
- the space
-