Package org.camunda.bpm.engine.impl.db
Class TenantCheck
- java.lang.Object
-
- org.camunda.bpm.engine.impl.db.TenantCheck
-
- All Implemented Interfaces:
java.io.Serializable
public class TenantCheck extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<java.lang.String>
authTenantIds
the ids of the authenticated tenantsprotected boolean
isTenantCheckEnabled
Iftrue
then the process engine performs tenant checks to ensure that the query only access data that belongs to one of the authenticated tenant ids.
-
Constructor Summary
Constructors Constructor Description TenantCheck()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>
getAuthTenantIds()
boolean
getIsTenantCheckEnabled()
is used by myBatisboolean
isTenantCheckEnabled()
void
setAuthTenantIds(java.util.List<java.lang.String> tenantIds)
void
setTenantCheckEnabled(boolean isTenantCheckEnabled)
-
-
-
Field Detail
-
isTenantCheckEnabled
protected boolean isTenantCheckEnabled
Iftrue
then the process engine performs tenant checks to ensure that the query only access data that belongs to one of the authenticated tenant ids.
-
authTenantIds
protected java.util.List<java.lang.String> authTenantIds
the ids of the authenticated tenants
-
-
Method Detail
-
isTenantCheckEnabled
public boolean isTenantCheckEnabled()
-
getIsTenantCheckEnabled
public boolean getIsTenantCheckEnabled()
is used by myBatis
-
setTenantCheckEnabled
public void setTenantCheckEnabled(boolean isTenantCheckEnabled)
-
getAuthTenantIds
public java.util.List<java.lang.String> getAuthTenantIds()
-
setAuthTenantIds
public void setAuthTenantIds(java.util.List<java.lang.String> tenantIds)
-
-