Interface SecurityFilterRule
- All Known Implementing Classes:
PathFilterRule
public interface SecurityFilterRule
This interface is used by the SecurityFilter
to authorize incoming requests.
- Author:
- Daniel Meyer, nico.rehwaldt
-
Method Summary
Modifier and TypeMethodDescriptionAuthorize the given request and return aAuthorization
as a result.
-
Method Details
-
authorize
Authorize the given request and return aAuthorization
as a result. May returnnull
if the request could not be authorized.- Parameters:
requestMethod
-requestUri
-- Returns:
- the authorization for the given request or
null
if the authorization for the request could not be checked
-