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 selectTokens with the given ip address.ipAddressLike(String ipAddressLike) Only selectTokens 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 selectTokens with the given token data.tokenDataLike(String tokenDataLike) Only selectTokens where the token data matches the given parameter.Only selectTokens that have a token date on the given date.tokenDateAfter(Date after) Only selectTokens that have a token date after the given date.tokenDateBefore(Date before) Only selectTokens that have a token date before the given date.Only selectTokens with the given id/Only selectTokens with the given ids/tokenValue(String tokenValue) Only selectTokens with the given token value.Only selectTokens with the given user agent.userAgentLike(String userAgentLike) Only selectTokens where the user agent matches the given parameter.Only selectTokens with the given user id.userIdLike(String userIdLike) Only selectTokens where the user id matches the given parameter.
-
Method Details
-
tokenId
Only selectTokens with the given id/ -
tokenIds
Only selectTokens with the given ids/ -
tokenValue
Only selectTokens with the given token value. -
tokenDate
Only selectTokens that have a token date on the given date. -
tokenDateBefore
Only selectTokens that have a token date before the given date. -
tokenDateAfter
Only selectTokens that have a token date after the given date. -
ipAddress
Only selectTokens with the given ip address. -
ipAddressLike
Only selectTokens where the ip address matches the given parameter. The syntax is that of SQL, eg. %127%. -
userAgent
Only selectTokens with the given user agent. -
userAgentLike
Only selectTokens where the user agent matches the given parameter. The syntax is that of SQL, eg. %chrome%. -
userId
Only selectTokens with the given user id. -
userIdLike
Only selectTokens where the user id matches the given parameter. The syntax is that of SQL, eg. %test%. -
tokenData
Only selectTokens with the given token data. -
tokenDataLike
Only selectTokens 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()).
-