Package com.flowable.core.idm.api.ldap
Class LdapGroupProperties
- java.lang.Object
-
- com.flowable.core.idm.api.ldap.LdapGroupProperties
-
public class LdapGroupProperties extends Object
LDAP properties for different group operations.- Author:
- Filip Hrisafov
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LdapGroupProperties.Mappings
Some properties are allowed to be aCollection
, this means that this particular property would come from one of those attributes.static class
LdapGroupProperties.Query
-
Field Summary
Fields Modifier and Type Field Description protected boolean
convertToUppercase
Whether to convert the group key and id to upper case when doing the mapping.protected LdapGroupProperties.Mappings
mappings
The mappings configuration for the LDAP Group Properties.protected LdapGroupProperties.Query
query
-
Constructor Summary
Constructors Constructor Description LdapGroupProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LdapGroupProperties.Mappings
getMappings()
LdapGroupProperties.Query
getQuery()
boolean
isConvertToUppercase()
void
setConvertToUppercase(boolean convertToUppercase)
void
setMappings(LdapGroupProperties.Mappings mappings)
void
setQuery(LdapGroupProperties.Query query)
-
-
-
Field Detail
-
convertToUppercase
protected boolean convertToUppercase
Whether to convert the group key and id to upper case when doing the mapping.
-
query
protected LdapGroupProperties.Query query
-
mappings
protected LdapGroupProperties.Mappings mappings
The mappings configuration for the LDAP Group Properties.
-
-
Method Detail
-
isConvertToUppercase
public boolean isConvertToUppercase()
-
setConvertToUppercase
public void setConvertToUppercase(boolean convertToUppercase)
-
getQuery
public LdapGroupProperties.Query getQuery()
-
setQuery
public void setQuery(LdapGroupProperties.Query query)
-
getMappings
public LdapGroupProperties.Mappings getMappings()
-
setMappings
public void setMappings(LdapGroupProperties.Mappings mappings)
-
-