Unnecessary interface modifier
This commit is contained in:
+3
-3
@@ -33,7 +33,7 @@ public interface WebInvocationPrivilegeEvaluator {
|
||||
* @param uri the URI excluding the context path (a default context path setting will
|
||||
* be used)
|
||||
*/
|
||||
public boolean isAllowed(String uri, Authentication authentication);
|
||||
boolean isAllowed(String uri, Authentication authentication);
|
||||
|
||||
/**
|
||||
* Determines whether the user represented by the supplied <tt>Authentication</tt>
|
||||
@@ -52,6 +52,6 @@ public interface WebInvocationPrivilegeEvaluator {
|
||||
* be used in evaluation whether access should be granted.
|
||||
* @return true if access is allowed, false if denied
|
||||
*/
|
||||
public boolean isAllowed(String contextPath, String uri, String method,
|
||||
Authentication authentication);
|
||||
boolean isAllowed(String contextPath, String uri, String method,
|
||||
Authentication authentication);
|
||||
}
|
||||
|
||||
+2
-2
@@ -34,6 +34,6 @@ interface HttpServletRequestFactory {
|
||||
* @param response the original {@link HttpServletResponse}. Cannot be null.
|
||||
* @return a non-null HttpServletRequest
|
||||
*/
|
||||
public HttpServletRequest create(HttpServletRequest request,
|
||||
HttpServletResponse response);
|
||||
HttpServletRequest create(HttpServletRequest request,
|
||||
HttpServletResponse response);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user