Java org.springframework.web.cors.reactive CorsUtils fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.cors.reactive CorsUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.cors.reactive CorsUtils.

The text is from its open source code.

Method

booleanisCorsRequest(ServerHttpRequest request)
Returns true if the request is a valid CORS one by checking Origin header presence and ensuring that origins are different via #isSameOrigin .
booleanisPreFlightRequest(ServerHttpRequest request)
Returns true if the request is a valid CORS pre-flight one.
booleanisSameOrigin(ServerHttpRequest request)
Check if the request is a same-origin one, based on Origin , and Host headers.