org.camunda.bpm.engine.identity
Interface TenantQuery

All Superinterfaces:
Query<TenantQuery,Tenant>
All Known Implementing Classes:
DbTenantQueryImpl, TenantQueryImpl

public interface TenantQuery
extends Query<TenantQuery,Tenant>

Allows to programmatically query for Tenants.


Method Summary
 TenantQuery orderByTenantId()
          Order by tenant id (needs to be followed by Query.asc() or Query.desc()).
 TenantQuery orderByTenantName()
          Order by tenant name (needs to be followed by Query.asc() or Query.desc()).
 TenantQuery tenantId(String tenantId)
          Only select Tenants with the given id.
 TenantQuery tenantIdIn(String... ids)
          Only select Tenants with the given ids
 TenantQuery tenantName(String tenantName)
          Only select Tenants with the given name.
 TenantQuery tenantNameLike(String tenantNameLike)
          Only select Tenants where the name matches the given parameter.
 
Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult
 

Method Detail

tenantId

TenantQuery tenantId(String tenantId)
Only select Tenants with the given id.


tenantIdIn

TenantQuery tenantIdIn(String... ids)
Only select Tenants with the given ids


tenantName

TenantQuery tenantName(String tenantName)
Only select Tenants with the given name.


tenantNameLike

TenantQuery tenantNameLike(String tenantNameLike)
Only select Tenants where the name matches the given parameter. The syntax to use is that of SQL, eg. %tenant%.


orderByTenantId

TenantQuery orderByTenantId()
Order by tenant id (needs to be followed by Query.asc() or Query.desc()).


orderByTenantName

TenantQuery orderByTenantName()
Order by tenant name (needs to be followed by Query.asc() or Query.desc()).



Copyright © 2016 camunda services GmbH. All rights reserved.