Package io.micronaut.security.rules
Class SecuredAnnotationRule
- java.lang.Object
-
- io.micronaut.security.rules.AbstractSecurityRule
-
- io.micronaut.security.rules.SecuredAnnotationRule
-
- All Implemented Interfaces:
io.micronaut.core.order.Ordered,SecurityRule
@Singleton public class SecuredAnnotationRule extends AbstractSecurityRule
Security rule implementation for theSecuredannotation.- Since:
- 1.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.IntegerORDERThe order of the rule.-
Fields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Fields inherited from interface io.micronaut.security.rules.SecurityRule
DENY_ALL, IS_ANONYMOUS, IS_AUTHENTICATED
-
-
Constructor Summary
Constructors Constructor Description SecuredAnnotationRule(RolesFinder rolesFinder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.reactivestreams.Publisher<SecurityRuleResult>check(io.micronaut.http.HttpRequest<?> request, io.micronaut.web.router.RouteMatch<?> routeMatch, Authentication authentication)ReturnsSecurityRuleResult.UNKNOWNif theSecuredannotation is not found on the method or class, or if the route match is not method based.intgetOrder()-
Methods inherited from class io.micronaut.security.rules.AbstractSecurityRule
compareRoles, getRoles
-
-
-
-
Constructor Detail
-
SecuredAnnotationRule
@Inject public SecuredAnnotationRule(RolesFinder rolesFinder)
- Parameters:
rolesFinder- Roles Parser
-
-
Method Detail
-
check
public org.reactivestreams.Publisher<SecurityRuleResult> check(io.micronaut.http.HttpRequest<?> request, @Nullable io.micronaut.web.router.RouteMatch<?> routeMatch, @Nullable Authentication authentication)
ReturnsSecurityRuleResult.UNKNOWNif theSecuredannotation is not found on the method or class, or if the route match is not method based.- Parameters:
request- The current requestrouteMatch- The matched routeauthentication- The authentication, or null if none found- Returns:
- The result
- See Also:
SecurityRuleResult
-
getOrder
public int getOrder()
-
-