Interface UserDefinitionAuthoritiesProvider
- All Known Implementing Classes:
UserDefinitionAuthoritiesProviderImpl
public interface UserDefinitionAuthoritiesProvider
A custom provider of
GrantedAuthority based on an id from a user definition.- Author:
- Filip Hrisafov
-
Method Summary
Modifier and TypeMethodDescriptionCollection<? extends GrantedAuthority>findGrantedAuthorities(String userDefinitionId) Deprecated.Collection<? extends GrantedAuthority>findGrantedAuthorities(String userDefinitionKey, String tenantId) All the authorities for the givenuserDefinitionKeyin the giventenantId
-
Method Details
-
findGrantedAuthorities
Deprecated.usefindGrantedAuthorities(String, String)insteadAll the authorities for the givenuserDefinitionId- Parameters:
userDefinitionId- the id of the user definition for which we need to fetch authorities- Returns:
- the granted authorities for the given
userDefinitionId
-
findGrantedAuthorities
Collection<? extends GrantedAuthority> findGrantedAuthorities(String userDefinitionKey, String tenantId) All the authorities for the givenuserDefinitionKeyin the giventenantId- Parameters:
userDefinitionKey- the id of the user definition for which we need to fetch authoritiestenantId- the tenant id in which the user definition should be located- Returns:
- the granted authorities for the given
userDefinitionKey
-
findGrantedAuthorities(String, String)instead