public interface TokenQuery extends Query<TokenQuery,Token>
TokenQuery.NullHandlingOnOrder| Modifier and Type | Method and Description |
|---|---|
TokenQuery |
ipAddress(String ipAddress)
Only select
Tokens with the given ip address. |
TokenQuery |
ipAddressLike(String ipAddressLike)
Only select
Tokens where the ip address matches the given parameter. |
TokenQuery |
orderByTokenDate()
Order by token date (needs to be followed by
Query.asc() or Query.desc()). |
TokenQuery |
orderByTokenId()
Order by token id (needs to be followed by
Query.asc() or Query.desc()). |
TokenQuery |
tokenData(String tokenData)
Only select
Tokens with the given token data. |
TokenQuery |
tokenDataLike(String tokenDataLike)
Only select
Tokens where the token data matches the given parameter. |
TokenQuery |
tokenDate(Date tokenDate)
Only select
Tokens that have a token date on the given date. |
TokenQuery |
tokenDateAfter(Date after)
Only select
Tokens that have a token date after the given date. |
TokenQuery |
tokenDateBefore(Date before)
Only select
Tokens that have a token date before the given date. |
TokenQuery |
tokenId(String id)
Only select
Tokens with the given id/ |
TokenQuery |
tokenIds(List<String> ids)
Only select
Tokens with the given ids/ |
TokenQuery |
tokenValue(String tokenValue)
Only select
Tokens with the given token value. |
TokenQuery |
userAgent(String userAgent)
Only select
Tokens with the given user agent. |
TokenQuery |
userAgentLike(String userAgentLike)
Only select
Tokens where the user agent matches the given parameter. |
TokenQuery |
userId(String userId)
Only select
Tokens with the given user id. |
TokenQuery |
userIdLike(String userIdLike)
Only select
Tokens where the user id matches the given parameter. |
TokenQuery tokenId(String id)
Tokens with the given id/TokenQuery tokenIds(List<String> ids)
Tokens with the given ids/TokenQuery tokenValue(String tokenValue)
Tokens with the given token value.TokenQuery tokenDate(Date tokenDate)
Tokens that have a token date on the given date.TokenQuery tokenDateBefore(Date before)
Tokens that have a token date before the given date.TokenQuery tokenDateAfter(Date after)
Tokens that have a token date after the given date.TokenQuery ipAddress(String ipAddress)
Tokens with the given ip address.TokenQuery ipAddressLike(String ipAddressLike)
Tokens where the ip address matches the given parameter. The syntax is that of SQL, eg. %127%.TokenQuery userAgent(String userAgent)
Tokens with the given user agent.TokenQuery userAgentLike(String userAgentLike)
Tokens where the user agent matches the given parameter. The syntax is that of SQL, eg. %chrome%.TokenQuery userId(String userId)
Tokens with the given user id.TokenQuery userIdLike(String userIdLike)
Tokens where the user id matches the given parameter. The syntax is that of SQL, eg. %test%.TokenQuery tokenData(String tokenData)
Tokens with the given token data.TokenQuery tokenDataLike(String tokenDataLike)
Tokens where the token data matches the given parameter. The syntax is that of SQL, eg. %test%.TokenQuery orderByTokenId()
Query.asc() or Query.desc()).TokenQuery orderByTokenDate()
Query.asc() or Query.desc()).Copyright © 2020 Flowable. All rights reserved.