Package org.flowable.idm.api
Interface TokenQuery
-
- All Superinterfaces:
Query<TokenQuery,Token>
public interface TokenQuery extends Query<TokenQuery,Token>
Allows programmatic querying ofToken- Author:
- Tijs Rademakers
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TokenQueryipAddress(String ipAddress)Only selectTokens with the given ip address.TokenQueryipAddressLike(String ipAddressLike)Only selectTokens where the ip address matches the given parameter.TokenQueryorderByTokenDate()Order by token date (needs to be followed byQuery.asc()orQuery.desc()).TokenQueryorderByTokenId()Order by token id (needs to be followed byQuery.asc()orQuery.desc()).TokenQuerytokenData(String tokenData)Only selectTokens with the given token data.TokenQuerytokenDataLike(String tokenDataLike)Only selectTokens where the token data matches the given parameter.TokenQuerytokenDate(Date tokenDate)Only selectTokens that have a token date on the given date.TokenQuerytokenDateAfter(Date after)Only selectTokens that have a token date after the given date.TokenQuerytokenDateBefore(Date before)Only selectTokens that have a token date before the given date.TokenQuerytokenId(String id)Only selectTokens with the given id/TokenQuerytokenIds(List<String> ids)Only selectTokens with the given ids/TokenQuerytokenValue(String tokenValue)Only selectTokens with the given token value.TokenQueryuserAgent(String userAgent)Only selectTokens with the given user agent.TokenQueryuserAgentLike(String userAgentLike)Only selectTokens where the user agent matches the given parameter.TokenQueryuserId(String userId)Only selectTokens with the given user id.TokenQueryuserIdLike(String userIdLike)Only selectTokens where the user id matches the given parameter.
-
-
-
Method Detail
-
tokenId
TokenQuery tokenId(String id)
Only selectTokens with the given id/
-
tokenIds
TokenQuery tokenIds(List<String> ids)
Only selectTokens with the given ids/
-
tokenValue
TokenQuery tokenValue(String tokenValue)
Only selectTokens with the given token value.
-
tokenDate
TokenQuery tokenDate(Date tokenDate)
Only selectTokens that have a token date on the given date.
-
tokenDateBefore
TokenQuery tokenDateBefore(Date before)
Only selectTokens that have a token date before the given date.
-
tokenDateAfter
TokenQuery tokenDateAfter(Date after)
Only selectTokens that have a token date after the given date.
-
ipAddress
TokenQuery ipAddress(String ipAddress)
Only selectTokens with the given ip address.
-
ipAddressLike
TokenQuery ipAddressLike(String ipAddressLike)
Only selectTokens where the ip address matches the given parameter. The syntax is that of SQL, eg. %127%.
-
userAgent
TokenQuery userAgent(String userAgent)
Only selectTokens with the given user agent.
-
userAgentLike
TokenQuery userAgentLike(String userAgentLike)
Only selectTokens where the user agent matches the given parameter. The syntax is that of SQL, eg. %chrome%.
-
userId
TokenQuery userId(String userId)
Only selectTokens with the given user id.
-
userIdLike
TokenQuery userIdLike(String userIdLike)
Only selectTokens where the user id matches the given parameter. The syntax is that of SQL, eg. %test%.
-
tokenData
TokenQuery tokenData(String tokenData)
Only selectTokens with the given token data.
-
tokenDataLike
TokenQuery tokenDataLike(String 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()).
-
-