Uses of Class
org.craftercms.profile.api.PersistentLogin
-
-
Uses of PersistentLogin in org.craftercms.profile.api.services
Methods in org.craftercms.profile.api.services that return PersistentLogin Modifier and Type Method Description PersistentLogin
AuthenticationService. createPersistentLogin(String profileId)
Creates a persistent login, use for remember me functionality.PersistentLogin
AuthenticationService. getPersistentLogin(String loginId)
Returns the persistent login object for the given ID.PersistentLogin
AuthenticationService. refreshPersistentLoginToken(String loginId)
Refreshes the token of the specified persistent login. -
Uses of PersistentLogin in org.craftercms.profile.controllers.rest
Methods in org.craftercms.profile.controllers.rest that return PersistentLogin Modifier and Type Method Description PersistentLogin
AuthenticationController. createPersistentLogin(String profileId)
PersistentLogin
AuthenticationController. getPersistentLogin(String loginId)
PersistentLogin
AuthenticationController. refreshPersistentLoginToken(String loginId)
-
Uses of PersistentLogin in org.craftercms.profile.repositories
Methods in org.craftercms.profile.repositories that return PersistentLogin Modifier and Type Method Description PersistentLogin
PersistentLoginRepository. findByProfileIdAndToken(String profileId, String token)
Returns the login associated to the given profile ID and token. -
Uses of PersistentLogin in org.craftercms.profile.repositories.impl
Methods in org.craftercms.profile.repositories.impl that return PersistentLogin Modifier and Type Method Description PersistentLogin
PersistentLoginRepositoryImpl. findByProfileIdAndToken(String profileId, String token)
-
Uses of PersistentLogin in org.craftercms.profile.services.impl
Methods in org.craftercms.profile.services.impl that return PersistentLogin Modifier and Type Method Description PersistentLogin
AuthenticationServiceImpl. createPersistentLogin(String profileId)
PersistentLogin
AuthenticationServiceRestClient. createPersistentLogin(String profileId)
PersistentLogin
AuthenticationServiceImpl. getPersistentLogin(String loginId)
PersistentLogin
AuthenticationServiceRestClient. getPersistentLogin(String loginId)
PersistentLogin
AuthenticationServiceImpl. refreshPersistentLoginToken(String loginId)
PersistentLogin
AuthenticationServiceRestClient. refreshPersistentLoginToken(String loginId)
-
Uses of PersistentLogin in org.craftercms.security.authentication.impl
Methods in org.craftercms.security.authentication.impl that return PersistentLogin Modifier and Type Method Description protected PersistentLogin
RememberMeManagerImpl. deserializeLogin(String serializedLogin)
protected PersistentLogin
RememberMeManagerImpl. getPersistentLoginFromCookie(javax.servlet.http.HttpServletRequest request)
Methods in org.craftercms.security.authentication.impl with parameters of type PersistentLogin Modifier and Type Method Description protected String
RememberMeManagerImpl. serializeLogin(PersistentLogin login)
-