Class OAuth2MapperProperties
- java.lang.Object
-
- com.flowable.core.spring.security.oauth2.OAuth2MapperProperties
-
public class OAuth2MapperProperties extends Object
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected Collection<String>
authoritiesAttributes
The name of the attributes from which authorities should be extracted from without any changes.protected Collection<String>
groupsAttributes
The name of the attributes from which groups should be extracted from and converter to Flowable Groups.protected String
tenantAttribute
The name of the attribute that holds the tenant id for the authentication.protected String
userDefinitionKeyAttribute
The name of the attribute that holds the user definition key attribute for the authentication.
-
Constructor Summary
Constructors Constructor Description OAuth2MapperProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<String>
getAuthoritiesAttributes()
Collection<String>
getGroupsAttributes()
String
getTenantAttribute()
String
getUserDefinitionKeyAttribute()
void
setAuthoritiesAttributes(Collection<String> authoritiesAttributes)
void
setGroupsAttributes(Collection<String> groupsAttributes)
void
setTenantAttribute(String tenantAttribute)
void
setUserDefinitionKeyAttribute(String userDefinitionKeyAttribute)
-
-
-
Field Detail
-
authoritiesAttributes
protected Collection<String> authoritiesAttributes
The name of the attributes from which authorities should be extracted from without any changes.
-
groupsAttributes
protected Collection<String> groupsAttributes
The name of the attributes from which groups should be extracted from and converter to Flowable Groups.
-
tenantAttribute
protected String tenantAttribute
The name of the attribute that holds the tenant id for the authentication.
-
userDefinitionKeyAttribute
protected String userDefinitionKeyAttribute
The name of the attribute that holds the user definition key attribute for the authentication.
-
-
Method Detail
-
getAuthoritiesAttributes
public Collection<String> getAuthoritiesAttributes()
-
setAuthoritiesAttributes
public void setAuthoritiesAttributes(Collection<String> authoritiesAttributes)
-
getGroupsAttributes
public Collection<String> getGroupsAttributes()
-
setGroupsAttributes
public void setGroupsAttributes(Collection<String> groupsAttributes)
-
getTenantAttribute
public String getTenantAttribute()
-
setTenantAttribute
public void setTenantAttribute(String tenantAttribute)
-
getUserDefinitionKeyAttribute
public String getUserDefinitionKeyAttribute()
-
setUserDefinitionKeyAttribute
public void setUserDefinitionKeyAttribute(String userDefinitionKeyAttribute)
-
-