Searched refs:allowedMethods (Results 1 – 2 of 2) sorted by relevance
122 private List<String> allowedMethods = new ArrayList<String>(); field in CrossOriginFilter156 allowedMethods.addAll(Arrays.asList(allowedMethodsConfig.split(","))); in init()360 response.setHeader(ACCESS_CONTROL_ALLOW_METHODS_HEADER, commify(allowedMethods)); in handlePreflightResponse()370 result = allowedMethods.contains(accessControlRequestMethod); in isMethodAllowed()371 … (result ? "" : " not") + " among allowed methods {}", accessControlRequestMethod, allowedMethods); in isMethodAllowed()421 allowedMethods.clear(); in destroy()
552 Method[] allowedMethods = new Method[] {BigInteger.class.getMethod("toString", Integer.TYPE)}; in testIsForbiddenMethod() local556 for (Method method : allowedMethods) { in testIsForbiddenMethod()