Interface TokenQuery

All Superinterfaces:
Query<TokenQuery,Token>
All Known Implementing Classes:
TokenQueryImpl

public interface TokenQuery extends Query<TokenQuery,Token>
Allows programmatic querying of Token
Author:
Tijs Rademakers
  • Method Details

    • tokenId

      TokenQuery tokenId(String id)
      Only select Tokens with the given id/
    • tokenIds

      TokenQuery tokenIds(List<String> ids)
      Only select Tokens with the given ids/
    • tokenValue

      TokenQuery tokenValue(String tokenValue)
      Only select Tokens with the given token value.
    • tokenDate

      TokenQuery tokenDate(Date tokenDate)
      Only select Tokens that have a token date on the given date.
    • tokenDateBefore

      TokenQuery tokenDateBefore(Date before)
      Only select Tokens that have a token date before the given date.
    • tokenDateAfter

      TokenQuery tokenDateAfter(Date after)
      Only select Tokens that have a token date after the given date.
    • ipAddress

      TokenQuery ipAddress(String ipAddress)
      Only select Tokens with the given ip address.
    • ipAddressLike

      TokenQuery ipAddressLike(String ipAddressLike)
      Only select Tokens where the ip address matches the given parameter. The syntax is that of SQL, eg. %127%.
    • userAgent

      TokenQuery userAgent(String userAgent)
      Only select Tokens with the given user agent.
    • userAgentLike

      TokenQuery userAgentLike(String userAgentLike)
      Only select Tokens where the user agent matches the given parameter. The syntax is that of SQL, eg. %chrome%.
    • userId

      TokenQuery userId(String userId)
      Only select Tokens with the given user id.
    • userIdLike

      TokenQuery userIdLike(String userIdLike)
      Only select Tokens where the user id matches the given parameter. The syntax is that of SQL, eg. %test%.
    • tokenData

      TokenQuery tokenData(String tokenData)
      Only select Tokens with the given token data.
    • tokenDataLike

      TokenQuery tokenDataLike(String tokenDataLike)
      Only select Tokens 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 by Query.asc() or Query.desc()).
    • orderByTokenDate

      TokenQuery orderByTokenDate()
      Order by token date (needs to be followed by Query.asc() or Query.desc()).