Interface GroupManagerSettings
-
- All Superinterfaces:
Settings
- All Known Implementing Classes:
GroupManagerSettingsImpl
public interface GroupManagerSettings extends Settings
The settings for a groups entity manager.
- Since:
- 0.8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanallowEmpty()Specify if the provider allows groups with no users assigned.Collection<String>getConstrainedGroups()Return constrained groups for managementvoidsetConstrainedGroups(Collection<String> constrainedGroups)Sets constrained groups for management (usually the registered roles).-
Methods inherited from interface org.uberfire.ext.security.management.api.Settings
getCapabilities
-
-
-
-
Method Detail
-
allowEmpty
boolean allowEmpty()
Specify if the provider allows groups with no users assigned.
Usually realm based on property files, such as the default ones for Wildfly or EAP, does not allow empty users as the username is the key for the property entry.
- Returns:
- Allows groups with any user assigned.
-
getConstrainedGroups
Collection<String> getConstrainedGroups()
Return constrained groups for management
-
setConstrainedGroups
void setConstrainedGroups(Collection<String> constrainedGroups)
Sets constrained groups for management (usually the registered roles).
-
-