Package de.xima.fc.dao.token
Class RefreshTokenUserDataDTO
- java.lang.Object
-
- de.xima.fc.dao.token.RefreshTokenUserDataDTO
-
- All Implemented Interfaces:
Serializable
public class RefreshTokenUserDataDTO extends Object implements Serializable
Data transfer object for the user data that is stored in a refresh token.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RefreshTokenUserDataDTO(org.pac4j.core.profile.UserProfile userProfile, Map<String,Serializable> sessionData)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Serializable>getSessionData()Returns the session data.org.pac4j.core.profile.UserProfilegetUserProfile()Returns the user profile.
-
-
-
Constructor Detail
-
RefreshTokenUserDataDTO
public RefreshTokenUserDataDTO(org.pac4j.core.profile.UserProfile userProfile, Map<String,Serializable> sessionData)Constructor.- Parameters:
userProfile- The user profile.sessionData- The session data.
-
-
Method Detail
-
getUserProfile
public org.pac4j.core.profile.UserProfile getUserProfile()
Returns the user profile.- Returns:
- The user profile.
-
getSessionData
public Map<String,Serializable> getSessionData()
Returns the session data.- Returns:
- The session data.
-
-