Uses of Interface
com.broadleafcommerce.auth.token.provider.jpa.domain.RefreshToken
-
Packages that use RefreshToken Package Description com.broadleafcommerce.auth.autoconfigure com.broadleafcommerce.auth.token.provider.jpa.domain com.broadleafcommerce.auth.token.service -
-
Uses of RefreshToken in com.broadleafcommerce.auth.autoconfigure
Method parameters in com.broadleafcommerce.auth.autoconfigure with type arguments of type RefreshToken Modifier and Type Method Description org.springframework.security.oauth2.provider.token.TokenStore
AuthServiceOAuth2CommonAutoConfiguration. tokenStore(org.springframework.security.oauth2.provider.token.store.JwtAccessTokenConverter jwtTokenConverter, List<RefreshTokenRepository<RefreshToken>> repositories, TokenProperties properties, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate)
-
Uses of RefreshToken in com.broadleafcommerce.auth.token.provider.jpa.domain
Classes in com.broadleafcommerce.auth.token.provider.jpa.domain that implement RefreshToken Modifier and Type Class Description class
JpaRefreshToken1
JPA Shard partition for recording a refresh token assignmentclass
JpaRefreshToken2
JPA Shard partition for recording a refresh token assignmentclass
JpaRefreshToken3
JPA Shard partition for recording a refresh token assignmentclass
JpaRefreshToken4
JPA Shard partition for recording a refresh token assignmentclass
JpaRefreshToken5
JPA Shard partition for recording a refresh token assignmentclass
JpaRefreshToken6
JPA Shard partition for recording a refresh token assignment -
Uses of RefreshToken in com.broadleafcommerce.auth.token.service
Methods in com.broadleafcommerce.auth.token.service that return RefreshToken Modifier and Type Method Description RefreshToken
DefaultRotatingTokenStore. readRefreshTokenEntity(String tokenValue)
RefreshToken
RotatableTokenStore. readRefreshTokenEntity(String tokenValue)
Given an encoded refresh token string, return theRefreshToken
instance matching from the datastore.Methods in com.broadleafcommerce.auth.token.service that return types with arguments of type RefreshToken Modifier and Type Method Description List<RefreshToken>
DefaultRotatingTokenStore. findByAncestor(String tokenValue)
List<RefreshToken>
RotatableTokenStore. findByAncestor(String tokenValue)
Find all refresh token instances derived from the original, root refresh token.protected RefreshTokenRepository<RefreshToken>
DefaultRotatingTokenStore. getRepository(int partition)
Find the correct handling repository for a given partition identifierConstructor parameters in com.broadleafcommerce.auth.token.service with type arguments of type RefreshToken Constructor Description DefaultRotatingTokenStore(org.springframework.security.oauth2.provider.token.store.JwtAccessTokenConverter jwtTokenEnhancer, List<RefreshTokenRepository<RefreshToken>> repositories, TokenProperties properties, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate)
-