@@ -29,20 +29,28 @@ public interface WebInvocationPrivilegeEvaluator {
29
29
/**
30
30
* Determines whether the user represented by the supplied <tt>Authentication</tt>
31
31
* object is allowed to invoke the supplied URI.
32
+ * <p>
33
+ * Note this will only match authorization rules that don't require a certain
34
+ * {@code HttpMethod}.
32
35
* @param uri the URI excluding the context path (a default context path setting will
33
36
* be used)
34
37
*/
35
38
boolean isAllowed (String uri , Authentication authentication );
36
39
37
40
/**
38
41
* Determines whether the user represented by the supplied <tt>Authentication</tt>
39
- * object is allowed to invoke the supplied URI, with the given .
42
+ * object is allowed to invoke the supplied URI, with the given parameters .
40
43
* <p>
41
- * Note the default implementation of <tt>FilterInvocationSecurityMetadataSource</tt>
44
+ * Note:
45
+ * <ul>
46
+ * <li>The default implementation of <tt>FilterInvocationSecurityMetadataSource</tt>
42
47
* disregards the <code>contextPath</code> when evaluating which secure object
43
48
* metadata applies to a given request URI, so generally the <code>contextPath</code>
44
49
* is unimportant unless you are using a custom
45
- * <code>FilterInvocationSecurityMetadataSource</code>.
50
+ * <code>FilterInvocationSecurityMetadataSource</code>.</li>
51
+ * <li>this will only match authorization rules that don't require a certain
52
+ * {@code HttpMethod}.</li>
53
+ * </ul>
46
54
* @param uri the URI excluding the context path
47
55
* @param contextPath the context path (may be null).
48
56
* @param method the HTTP method (or null, for any method)
0 commit comments