Package org.flowable.idm.api
Interface TokenQuery
- All Superinterfaces:
Query<TokenQuery,
Token>
- All Known Implementing Classes:
TokenQueryImpl
Allows programmatic querying of
Token
- Author:
- Tijs Rademakers
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptionOnly selectToken
s with the given ip address.ipAddressLike
(String ipAddressLike) Only selectToken
s where the ip address matches the given parameter.Order by token date (needs to be followed byQuery.asc()
orQuery.desc()
).Order by token id (needs to be followed byQuery.asc()
orQuery.desc()
).Only selectToken
s with the given token data.tokenDataLike
(String tokenDataLike) Only selectToken
s where the token data matches the given parameter.Only selectToken
s that have a token date on the given date.tokenDateAfter
(Date after) Only selectToken
s that have a token date after the given date.tokenDateBefore
(Date before) Only selectToken
s that have a token date before the given date.Only selectToken
s with the given id/Only selectToken
s with the given ids/tokenValue
(String tokenValue) Only selectToken
s with the given token value.Only selectToken
s with the given user agent.userAgentLike
(String userAgentLike) Only selectToken
s where the user agent matches the given parameter.Only selectToken
s with the given user id.userIdLike
(String userIdLike) Only selectToken
s where the user id matches the given parameter.
-
Method Details
-
tokenId
Only selectToken
s with the given id/ -
tokenIds
Only selectToken
s with the given ids/ -
tokenValue
Only selectToken
s with the given token value. -
tokenDate
Only selectToken
s that have a token date on the given date. -
tokenDateBefore
Only selectToken
s that have a token date before the given date. -
tokenDateAfter
Only selectToken
s that have a token date after the given date. -
ipAddress
Only selectToken
s with the given ip address. -
ipAddressLike
Only selectToken
s where the ip address matches the given parameter. The syntax is that of SQL, eg. %127%. -
userAgent
Only selectToken
s with the given user agent. -
userAgentLike
Only selectToken
s where the user agent matches the given parameter. The syntax is that of SQL, eg. %chrome%. -
userId
Only selectToken
s with the given user id. -
userIdLike
Only selectToken
s where the user id matches the given parameter. The syntax is that of SQL, eg. %test%. -
tokenData
Only selectToken
s with the given token data. -
tokenDataLike
Only selectToken
s where the token data matches the given parameter. The syntax is that of SQL, eg. %test%. -
orderByTokenId
TokenQuery orderByTokenId()Order by token id (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTokenDate
TokenQuery orderByTokenDate()Order by token date (needs to be followed byQuery.asc()
orQuery.desc()
).
-