| Package | Description |
|---|---|
| org.flowable.idm.api |
| Modifier and Type | Method and Description |
|---|---|
TokenQuery |
IdmIdentityService.createTokenQuery()
Creates a
TokenQuery that allows to programmatically query the tokens. |
TokenQuery |
TokenQuery.ipAddress(String ipAddress)
Only select
Tokens with the given ip address. |
TokenQuery |
TokenQuery.ipAddressLike(String ipAddressLike)
Only select
Tokens where the ip address matches the given parameter. |
TokenQuery |
TokenQuery.orderByTokenDate()
Order by token date (needs to be followed by
Query.asc() or Query.desc()). |
TokenQuery |
TokenQuery.orderByTokenId()
Order by token id (needs to be followed by
Query.asc() or Query.desc()). |
TokenQuery |
TokenQuery.tokenData(String tokenData)
Only select
Tokens with the given token data. |
TokenQuery |
TokenQuery.tokenDataLike(String tokenDataLike)
Only select
Tokens where the token data matches the given parameter. |
TokenQuery |
TokenQuery.tokenDate(Date tokenDate)
Only select
Tokens that have a token date on the given date. |
TokenQuery |
TokenQuery.tokenDateAfter(Date after)
Only select
Tokens that have a token date after the given date. |
TokenQuery |
TokenQuery.tokenDateBefore(Date before)
Only select
Tokens that have a token date before the given date. |
TokenQuery |
TokenQuery.tokenId(String id)
Only select
Tokens with the given id/ |
TokenQuery |
TokenQuery.tokenIds(List<String> ids)
Only select
Tokens with the given ids/ |
TokenQuery |
TokenQuery.tokenValue(String tokenValue)
Only select
Tokens with the given token value. |
TokenQuery |
TokenQuery.userAgent(String userAgent)
Only select
Tokens with the given user agent. |
TokenQuery |
TokenQuery.userAgentLike(String userAgentLike)
Only select
Tokens where the user agent matches the given parameter. |
TokenQuery |
TokenQuery.userId(String userId)
Only select
Tokens with the given user id. |
TokenQuery |
TokenQuery.userIdLike(String userIdLike)
Only select
Tokens where the user id matches the given parameter. |
Copyright © 2018 Flowable. All rights reserved.