java.lang.Object
io.helidon.security.abac.role.RoleValidator
- All Implemented Interfaces:
AbacValidator<RoleValidator.RoleConfig>
Validator capable of validating role attributes of a subject.
In default configuration, checks roles of current user's subject. This can be overridden to support user and service, or just
a service either on global level (see
RoleValidatorService.configKey() and configKey().
This validator supports both RolesAllowed and RoleValidator.Roles annotations.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic @interfaceMark a type or method as public.static final classAttribute configuration class for Role validator.static @interfaceA definition of "roles allowed" for a specific subject type.static @interfaceRepeatable annotation forRoleValidator.Roles. -
Method Summary
Modifier and TypeMethodDescriptionClass of the configuration type.Key of a configuration entry that maps to this validator's configuration.static RoleValidatorcreate()Create a new instance of role validator.fromAnnotations(EndpointConfig endpointConfig) Load configuration class instance from annotations this validator expects.fromConfig(Config config) Load configuration class instance from configuration.Collection<Class<? extends Annotation>> Provide extension annotations supported by this validator (e.g.voidvalidate(RoleValidator.RoleConfig config, Errors.Collector collector, ProviderRequest request) Validate that the configuration provided would grant access to the resource.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.helidon.security.providers.abac.spi.AbacValidator
fromConfig
-
Method Details
-
create
Create a new instance of role validator.- Returns:
- a new instance with default configuration
-
configClass
Description copied from interface:AbacValidatorClass of the configuration type.- Specified by:
configClassin interfaceAbacValidator<RoleValidator.RoleConfig>- Returns:
- class of the type
-
configKey
Description copied from interface:AbacValidatorKey of a configuration entry that maps to this validator's configuration.- Specified by:
configKeyin interfaceAbacValidator<RoleValidator.RoleConfig>- Returns:
- key in a config
Config
-
fromConfig
Description copied from interface:AbacValidatorLoad configuration class instance from configuration.API Note: the default method implementation is provided for backward compatibility and will be removed in the next major version
- Specified by:
fromConfigin interfaceAbacValidator<RoleValidator.RoleConfig>- Parameters:
config- configuration located on the key this validator expects inAbacValidator.configKey()- Returns:
- instance of configuration class
-
fromAnnotations
Description copied from interface:AbacValidatorLoad configuration class instance from annotations this validator expects.- Specified by:
fromAnnotationsin interfaceAbacValidator<RoleValidator.RoleConfig>- Parameters:
endpointConfig- endpoint config- Returns:
- instance of configuration class
-
validate
public void validate(RoleValidator.RoleConfig config, Errors.Collector collector, ProviderRequest request) Description copied from interface:AbacValidatorValidate that the configuration provided would grant access to the resource. Update collector with errors, if access should be denied usingErrors.Collector.fatal(Object, String).- Specified by:
validatein interfaceAbacValidator<RoleValidator.RoleConfig>- Parameters:
config- configuration of this validatorcollector- error collector to gather issues with this request (e.g. "service not in role ABC")request- ABAC context containing subject(s), object(s) and environment
-
supportedAnnotations
Description copied from interface:AbacValidatorProvide extension annotations supported by this validator (e.g.RolesAllowed). Annotations will be collected according to framework in use. For JAX-RS, annotations from application class, resource class and resource methods will be collected. The annotations will be transformed to configuration byAbacValidator.fromAnnotations(EndpointConfig).- Specified by:
supportedAnnotationsin interfaceAbacValidator<RoleValidator.RoleConfig>- Returns:
- Collection of annotations this provider expects.
-