Interface DeviceQuery
-
- All Superinterfaces:
Query<DeviceQuery,Device>
- All Known Implementing Classes:
DeviceQueryImpl
public interface DeviceQuery extends Query<DeviceQuery,Device>
- Author:
- Filip Hrisafov
-
-
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 DeviceQuery
applicationId(String applicationId)
Query for devices for the given application.DeviceQuery
deviceOS(String deviceOS)
Query devices only with the given OS.DeviceQuery
id(String id)
Query for devices for the given id.DeviceQuery
onlyEnabled()
Query only for enabled devices.DeviceQuery
tenantId(String tenantId)
Query for devices within the given tenant.DeviceQuery
token(String token)
Query for devices for the given token.DeviceQuery
userId(String userId)
Query for devices for the given user.
-
-
-
Method Detail
-
id
DeviceQuery id(String id)
Query for devices for the given id.- Parameters:
id
- the id for which to query
-
token
DeviceQuery token(String token)
Query for devices for the given token.- Parameters:
token
- the token for which to query
-
userId
DeviceQuery userId(String userId)
Query for devices for the given user.- Parameters:
userId
- the id of the user for which to query
-
tenantId
DeviceQuery tenantId(String tenantId)
Query for devices within the given tenant.- Parameters:
tenantId
- the tenant id for which to query
-
applicationId
DeviceQuery applicationId(String applicationId)
Query for devices for the given application.- Parameters:
applicationId
- the id of the application for which to query
-
deviceOS
DeviceQuery deviceOS(String deviceOS)
Query devices only with the given OS.- Parameters:
deviceOS
- the type of the os for which to query- See Also:
DeviceOS
-
onlyEnabled
DeviceQuery onlyEnabled()
Query only for enabled devices.
-
-