portfolio
Toggle table of contents
0.0.1-SNAPSHOT
jvm
Platform filter
jvm
Switch theme
Search in API
portfolio
portfolio
/
org.project.portfolio.auth.application
/
RefreshTokenRedisRepository
Refresh
Token
Redis
Repository
@
Repository
interface
RefreshTokenRedisRepository
:
CrudRepository
<
RefreshToken
,
String
>
Members
Functions
count
Link copied to clipboard
abstract
fun
count
(
)
:
Long
delete
Link copied to clipboard
abstract
fun
delete
(
entity
:
RefreshToken
)
delete
All
Link copied to clipboard
abstract
fun
deleteAll
(
)
abstract
fun
deleteAll
(
entities
:
MutableIterable
<
RefreshToken
>
)
delete
All
By
Id
Link copied to clipboard
abstract
fun
deleteAllById
(
ids
:
MutableIterable
<
String
>
)
delete
By
Id
Link copied to clipboard
abstract
fun
deleteById
(
id
:
String
)
exists
By
Id
Link copied to clipboard
abstract
fun
existsById
(
id
:
String
)
:
Boolean
find
All
Link copied to clipboard
abstract
fun
findAll
(
)
:
MutableIterable
<
RefreshToken
>
find
All
By
Id
Link copied to clipboard
abstract
fun
findAllById
(
ids
:
MutableIterable
<
String
>
)
:
MutableIterable
<
RefreshToken
>
find
By
Id
Link copied to clipboard
abstract
fun
findById
(
id
:
String
)
:
Optional
<
RefreshToken
>
save
Link copied to clipboard
abstract
fun
<
S
:
RefreshToken
>
save
(
entity
:
S
)
:
S
save
All
Link copied to clipboard
abstract
fun
<
S
:
RefreshToken
>
saveAll
(
entities
:
MutableIterable
<
S
>
)
:
MutableIterable
<
S
>