Interface SecurityFilterRule
-
- All Known Implementing Classes:
PathFilterRule
public interface SecurityFilterRuleThis interface is used by the
SecurityFilterto authorize incoming requests.- Author:
- Daniel Meyer, nico.rehwaldt
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Authorizationauthorize(String requestMethod, String requestUri)Authorize the given request and return aAuthorizationas a result.
-
-
-
Method Detail
-
authorize
Authorization authorize(String requestMethod, String requestUri)
Authorize the given request and return aAuthorizationas a result. May returnnullif the request could not be authorized.- Parameters:
requestMethod-requestUri-- Returns:
- the authorization for the given request or
nullif the authorization for the request could not be checked
-
-