| /forgerock/opendj-b2.6/src/server/org/opends/server/monitors/ |
| H A D | DatabaseEnvironmentMonitor.java | 157 * using reflection to call all the getter methods of the statistics object. 159 * the names of the getter methods. 172 Method[] methods = c.getMethods(); 174 // Iterate through all the statistic class methods. 175 for (Method method : methods)
|
| /forgerock/opendj2/src/server/org/opends/server/monitors/ |
| H A D | DatabaseEnvironmentMonitor.java | 156 * using reflection to call all the getter methods of the statistics object. 158 * the names of the getter methods. 171 Method[] methods = c.getMethods(); 173 // Iterate through all the statistic class methods. 174 for (Method method : methods)
|
| /forgerock/opendj2/ext/testng/lib/ |
| H A D | testng-5.7b-jdk15.jar | META-INF/ META-INF/MANIFEST.MF com/ com/beust/ com/beust/testng/ org/ org/testng/ org/ ... |
| /forgerock/opendj-b2.6/ext/testng/lib/ |
| H A D | testng-5.7b-jdk15.jar | META-INF/ META-INF/MANIFEST.MF com/ com/beust/ com/beust/testng/ org/ org/testng/ org/ ... |
| /forgerock/opendj2/src/build-tools/org/opends/build/tools/ |
| H A D | PrepTestNG.java | 110 String[] methods; 162 methods = methodList.split(";"); 166 methods = new String[0]; 235 if(classes.length > 0 || methods.length > 0) 249 if(methods.length > 0) 252 for(String mhd : methods) 269 println(writer, ++level, "<methods>"); 280 println(writer, --level, "</methods>");
|
| /forgerock/opendj-b2.6/src/build-tools/org/opends/build/tools/ |
| H A D | PrepTestNG.java | 111 String[] methods; 163 methods = methodList.split(";"); 167 methods = new String[0]; 236 if(classes.length > 0 || methods.length > 0) 250 if(methods.length > 0) 253 for(String mhd : methods) 270 println(writer, ++level, "<methods>"); 281 println(writer, --level, "</methods>");
|
| /forgerock/opendj2.6.2/src/server/org/opends/server/monitors/ |
| H A D | DatabaseEnvironmentMonitor.java | 157 * using reflection to call all the getter methods of the statistics object. 159 * the names of the getter methods. 172 Method[] methods = c.getMethods(); 174 // Iterate through all the statistic class methods. 175 for (Method method : methods)
|
| /forgerock/opendj2.6.2/src/build-tools/org/opends/build/tools/ |
| H A D | PrepTestNG.java | 111 String[] methods; 163 methods = methodList.split(";"); 167 methods = new String[0]; 236 if(classes.length > 0 || methods.length > 0) 250 if(methods.length > 0) 253 for(String mhd : methods) 270 println(writer, ++level, "<methods>"); 281 println(writer, --level, "</methods>");
|
| /forgerock/opendj2.6.2/ext/testng/lib/ |
| H A D | testng-5.7b-jdk15.jar | META-INF/ META-INF/MANIFEST.MF com/ com/beust/ com/beust/testng/ org/ org/testng/ org/ ... |
| /forgerock/opendj2-hg/src/build-tools/org/opends/build/tools/ |
| H A D | PrepTestNG.java | 110 String[] methods; 162 methods = methodList.split(";"); 166 methods = new String[0]; 235 if(classes.length > 0 || methods.length > 0) 249 if(methods.length > 0) 252 for(String mhd : methods) 269 println(writer, ++level, "<methods>"); 280 println(writer, --level, "</methods>");
|
| /forgerock/opendj2-jel-hg/ext/testng/lib/ |
| H A D | testng-5.7b-jdk15.jar | META-INF/ META-INF/MANIFEST.MF com/ com/beust/ com/beust/testng/ org/ org/testng/ org/ ... |
| /forgerock/opendj2-jel-hg/src/build-tools/org/opends/build/tools/ |
| H A D | PrepTestNG.java | 111 String[] methods; 163 methods = methodList.split(";"); 167 methods = new String[0]; 236 if(classes.length > 0 || methods.length > 0) 250 if(methods.length > 0) 253 for(String mhd : methods) 270 println(writer, ++level, "<methods>"); 281 println(writer, --level, "</methods>");
|
| /forgerock/opendj2-hg/ext/testng/lib/ |
| H A D | testng-5.7b-jdk15.jar | META-INF/ META-INF/MANIFEST.MF com/ com/beust/ com/beust/testng/ org/ org/testng/ org/ ... |
| /forgerock/opendj2-jel-hg/src/server/org/opends/server/monitors/ |
| H A D | DatabaseEnvironmentMonitor.java | 157 * using reflection to call all the getter methods of the statistics object. 159 * the names of the getter methods. 172 Method[] methods = c.getMethods(); 174 // Iterate through all the statistic class methods. 175 for (Method method : methods)
|
| /forgerock/openam-v13/openam-rest/src/test/java/org/forgerock/openam/cors/ |
| H A D | CORSServiceTest.java | 42 ArrayList<String> methods = new ArrayList<String>(); 43 methods.add("POST"); 44 methods.add("DELETE"); 45 methods.add("OPTIONS"); 51 testService = new CORSService(origins, methods, acceptedHeaders, 192 ArrayList<String> methods = new ArrayList<String>(); 193 methods.add("POST"); 195 testService = new CORSService(origins, methods, null, null, 0, false, null); 266 ArrayList<String> methods = new ArrayList<String>(); 267 methods [all...] |
| /forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/https/ |
| H A D | ApprovalCallback.java | 115 Method [] methods = GeneralNames.class.getDeclaredMethods(); 116 for (int m = 0; m < methods.length; ++m) { 117 if (methods[m].getName().equals(OLD_METHOD_NAME)) {
|
| /forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/jaas/ |
| H A D | LoginContext.java | 177 Method[] methods = null; 180 methods = info.module.getClass().getMethods(); 194 methods = info.module.getClass().getMethods(); 197 for (mIndex = 0; mIndex < methods.length; mIndex++) { 198 if (methods[mIndex].getName().equals(INIT_METHOD)) 204 methods[mIndex].invoke(info.module, initArgs); 208 for (mIndex = 0; mIndex < methods.length; mIndex++) { 209 if (methods[mIndex].getName().equals(methodName)) 217 boolean status = (Boolean)methods[mIndex].invoke(info.module, args);
|
| /forgerock/openam-v13/openam-http/src/main/java/org/forgerock/openam/http/annotations/ |
| H A D | Endpoints.java | 36 * Convenience class for creating {@code Handler}s from classes that contain annotated methods 45 * Produce a {@code Handler} from the annotated methods on the provided object. 50 * @param obj The object containing annotated methods. 54 final Map<String, AnnotatedMethod> methods = new HashMap<>(); 55 methods.put("DELETE", AnnotatedMethod.findMethod(obj, Delete.class)); 56 methods.put("GET", AnnotatedMethod.findMethod(obj, Get.class)); 57 methods.put("POST", AnnotatedMethod.findMethod(obj, Post.class)); 58 methods.put("PUT", AnnotatedMethod.findMethod(obj, Put.class)); 62 AnnotatedMethod method = methods.get(getMethod(request));
|
| /forgerock/openidm-v4/openidm-shell/src/main/java/org/forgerock/openidm/shell/ |
| H A D | CustomCommandScope.java | 230 * Fetches a sorted list of methods all sharing a specified name. 234 * @return a sorted list of methods 264 List<Method> methods = getAllMethodsByName(name); 265 if (methods.isEmpty()) { 268 return methods.get(methods.size() - 1); 279 List<Method> methods = getAllMethodsByName(name); 280 if (methods.isEmpty()) { 283 return methods.get(0);
|
| /forgerock/openidm-v4/openidm-shell/src/main/java/org/forgerock/openidm/shell/impl/ |
| H A D | BasicCommandScope.java | 119 List<Method> methods = null; 122 // search for matching methods by ignoring the scope. 128 methods = entry.getValue(); 132 // Otherwise directly look up matching methods. 134 methods = commands.get(name); 137 if ((methods != null) && (methods.size() > 0)) { 139 for (int i = 0; i < methods.size(); i++) { 140 Method m = methods.get(i); 163 Method[] methods [all...] |
| /forgerock/openam/openam-rest/src/test/java/org/forgerock/openam/cors/ |
| H A D | CORSServiceTest.java | 42 ArrayList<String> methods = new ArrayList<String>(); 43 methods.add("POST"); 44 methods.add("DELETE"); 45 methods.add("OPTIONS"); 51 testService = new CORSService(origins, methods, acceptedHeaders, 192 ArrayList<String> methods = new ArrayList<String>(); 193 methods.add("POST"); 195 testService = new CORSService(origins, methods, null, null, 0, false, null); 266 ArrayList<String> methods = new ArrayList<String>(); 267 methods [all...] |
| /forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/jaas/ |
| H A D | LoginContext.java | 179 Method[] methods = null; 182 methods = info.module.getClass().getMethods(); 196 methods = info.module.getClass().getMethods(); 199 for (mIndex = 0; mIndex < methods.length; mIndex++) { 200 if (methods[mIndex].getName().equals(INIT_METHOD)) 206 methods[mIndex].invoke(info.module, initArgs); 210 for (mIndex = 0; mIndex < methods.length; mIndex++) { 211 if (methods[mIndex].getName().equals(methodName)) 219 boolean status = (Boolean)methods[mIndex].invoke(info.module, args);
|
| /forgerock/openam/openam-http/src/main/java/org/forgerock/openam/http/annotations/ |
| H A D | Endpoints.java | 37 * Convenience class for creating {@code Handler}s from classes that contain annotated methods 47 * Produce a {@code Handler} from the annotated methods on the provided object. 52 * @param obj The object containing annotated methods. 56 final Map<String, AnnotatedMethod> methods = new HashMap<>(); 57 methods.put("DELETE", AnnotatedMethod.findMethod(obj, Delete.class)); 58 methods.put("GET", AnnotatedMethod.findMethod(obj, Get.class)); 59 methods.put("POST", AnnotatedMethod.findMethod(obj, Post.class)); 60 methods.put("PUT", AnnotatedMethod.findMethod(obj, Put.class)); 64 AnnotatedMethod method = methods.get(getMethod(request));
|
| /forgerock/openam/openam-test-utils/src/main/java/org/forgerock/openam/test/apidescriptor/ |
| H A D | ApiAnnotationAssert.java | 96 Method[] methods = actual.getMethods(); 97 for (Method method : methods) {
|
| H A D | ApiSchemaAssert.java | 139 Method[] methods = resourceClass.getMethods(); 140 for (Method method : methods) {
|