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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Authorization
authorize(java.lang.String requestMethod, java.lang.String requestUri)
Authorize the given request and return aAuthorization
as a result.
-
-
-
Method Detail
-
authorize
Authorization authorize(java.lang.String requestMethod, java.lang.String requestUri)
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
-
-