/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/ |
H A D | Test.java | 79 collection.findMethod("DELETE")); 81 collection.findMethod("POST")); 91 collection.findMethod("DELETE")); 93 collection.findMethod("POST"));
|
H A D | SecurityCollection.java | 263 public boolean findMethod(String method) { method in class:SecurityCollection
|
H A D | SecurityConstraint.java | 351 if (!collections[i].findMethod(method))
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/util/ |
H A D | SetMethodAction.java | 177 Method[] setterMethods = findMethod(setterMethodName); 238 Method[] getterMethods = findMethod(getterName); 243 Method[] getterMethodsWithIsPrefix = findMethod(getterName); 259 * and this implementation of findMethod returns both camelCased and non-Camel 262 private Method[] findMethod(String methodName) { method in class:SetMethodAction
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/security/ |
H A D | SecurityUtil.java | 198 method = findMethod(methodsCache, methodName); 280 method = findMethod(methodsCache, methodName); 390 private static Method findMethod(Method[] methodsCache, method in class:SecurityUtil
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/mapping/ |
H A D | CacheMapping.java | 217 public boolean findMethod(String method) { method in class:CacheMapping
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/ |
H A D | IntrospectionUtils.java | 96 executeM = findMethod(c, method, params); 118 executeM = findMethod(c, "setAttribute", params); 138 executeM = findMethod(c, "getAttribute", params); 156 Method m = findMethod(urlCL, "newInstance", paramT); 765 public static Method findMethod(Class<?> c, String name, method in class:IntrospectionUtils 849 Method m = findMethod(target.getClass(), methodN, params); 868 Method m = findMethod(target.getClass(), methodN, params); 880 m = findMethod(target.getClass(), methodN, typeParams);
|
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/mbean/ |
H A D | AMXImplBase.java | 736 protected final Method findMethod(String methodName, final Class[] sig) { method in class:AMXImplBase 737 return (ClassUtil.findMethod(this.getClass(), methodName, sig)); 750 Method m = findMethod(methodName, GETTER_SIG); 752 m = findMethod("is" + name, GETTER_SIG); 785 Method setter = findMethod(methodName, sig); 795 setter = findMethod(methodName, sig); 868 final Method m = findMethod(operationName, signature);
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/ |
H A D | DefaultCacheHelper.java | 188 if (mapping.findMethod(request.getMethod())) {
|
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/client/ |
H A D | PerformanceTest.java | 176 findMethod( method in class:PerformanceTest 226 final Method testMethod = findMethod(target, methodName, args);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/realm/ |
H A D | RealmBase.java | 623 if(collection[j].findMethod(method)) { 726 if (collection[j].findMethod(method)) { 817 if (collection[pos].findMethod(method)) {
|
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
H A D | ClassFile.java | 240 public ClassMethod findMethod(String methodName, String methodSig) { method in class:ClassFile
|
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/ |
H A D | ClassUtil.java | 823 public static final Method findMethod( method in class:ClassUtil
|