Searched refs:accessControlRequestMethod (Results 1 – 1 of 1) sorted by relevance
366 String accessControlRequestMethod = request.getHeader(ACCESS_CONTROL_REQUEST_METHOD_HEADER); in isMethodAllowed() local367 LOG.debug("{} is {}", ACCESS_CONTROL_REQUEST_METHOD_HEADER, accessControlRequestMethod); in isMethodAllowed()369 if (accessControlRequestMethod != null) in isMethodAllowed()370 result = allowedMethods.contains(accessControlRequestMethod); in isMethodAllowed()371 …{} is" + (result ? "" : " not") + " among allowed methods {}", accessControlRequestMethod, allowed… in isMethodAllowed()