com.opensymphony.xwork2.interceptor
Class MethodFilterInterceptorUtil
java.lang.Object
com.opensymphony.xwork2.interceptor.MethodFilterInterceptorUtil
public class MethodFilterInterceptorUtil
- extends Object
Utility class contains common methods used by
MethodFilterInterceptor.
- Author:
- tm_jee
|
Method Summary |
static boolean |
applyMethod(Set excludeMethods,
Set includeMethods,
String method)
Static method to decide if the specified method should be
apply (not filtered) depending on the set of excludeMethods and
includeMethods. |
static boolean |
applyMethod(String excludeMethods,
String includeMethods,
String method)
Same as applyMethod(Set, Set, String), except that excludeMethods
and includeMethods are supplied as comma separated string. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MethodFilterInterceptorUtil
public MethodFilterInterceptorUtil()
applyMethod
public static boolean applyMethod(Set excludeMethods,
Set includeMethods,
String method)
- Static method to decide if the specified
method should be
apply (not filtered) depending on the set of excludeMethods and
includeMethods.
-
excludeMethods takes precedence over includeMethods
Note: Asterict '*' could be used to indicate all methods.
- Parameters:
excludeMethods - list of methods to exclude.includeMethods - list of methods to include.method - the specified method to check
- Returns:
- true if the method should be applied.
applyMethod
public static boolean applyMethod(String excludeMethods,
String includeMethods,
String method)
- Same as
applyMethod(Set, Set, String), except that excludeMethods
and includeMethods are supplied as comma separated string.
- Parameters:
excludeMethods - comma seperated string of methods to exclude.includeMethods - comma seperated string of methods to include.method - the specified method to check
- Returns:
- true if the method should be applied.
Copyright © 2007 OpenSymphony. All Rights Reserved.