Package com.flowable.idm.engine.ldap
Class DefaultLdapUserTenantIdProvider
- java.lang.Object
-
- com.flowable.idm.engine.ldap.DefaultLdapUserTenantIdProvider
-
- All Implemented Interfaces:
LdapUserTenantIdProvider
public class DefaultLdapUserTenantIdProvider extends Object implements LdapUserTenantIdProvider
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected org.slf4j.Logger
logger
protected LdapUserProperties
userProperties
-
Constructor Summary
Constructors Constructor Description DefaultLdapUserTenantIdProvider(LdapUserProperties userProperties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected OrFilter
createFilter(Collection<String> tenantIdMappings, String tenantId)
Optional<Filter>
createTenantIdFilter(String queryTenantId)
Method for providing the optionalFilter
for the tenant being queried.String
determineTenantId(Attributes attributes)
Method for extracting the tenant id for a user from the providedAttributes
LdapUserProperties
getUserProperties()
void
setUserProperties(LdapUserProperties userProperties)
-
-
-
Field Detail
-
logger
protected final org.slf4j.Logger logger
-
userProperties
protected LdapUserProperties userProperties
-
-
Constructor Detail
-
DefaultLdapUserTenantIdProvider
public DefaultLdapUserTenantIdProvider(LdapUserProperties userProperties)
-
-
Method Detail
-
determineTenantId
public String determineTenantId(Attributes attributes)
Description copied from interface:LdapUserTenantIdProvider
Method for extracting the tenant id for a user from the providedAttributes
- Specified by:
determineTenantId
in interfaceLdapUserTenantIdProvider
- Parameters:
attributes
- the attributes that can be used to determine the tenant id- Returns:
- the tenant id that the user should have
-
createTenantIdFilter
public Optional<Filter> createTenantIdFilter(String queryTenantId)
Description copied from interface:LdapUserTenantIdProvider
Method for providing the optionalFilter
for the tenant being queried. If no filter is provided, then querying on tenant id would be ignored.- Specified by:
createTenantIdFilter
in interfaceLdapUserTenantIdProvider
- Parameters:
queryTenantId
- the query tenant id, nevernull
- Returns:
- the optional LDAP filter
-
createFilter
protected OrFilter createFilter(Collection<String> tenantIdMappings, String tenantId)
-
getUserProperties
public LdapUserProperties getUserProperties()
-
setUserProperties
public void setUserProperties(LdapUserProperties userProperties)
-
-