class CorsHandler extends Handler[RoutingContext]
A handler which implements server side http://www.w3.org/TR/cors/[CORS] support for Vert.x-Web.
- Alphabetic
- By Inheritance
- CorsHandler
- Handler
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new CorsHandler(_asJava: AnyRef)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
allowCredentials(allow: Boolean): CorsHandler
Set whether credentials are allowed.
Set whether credentials are allowed. Note that user agents will block requests that use a wildcard as origin and include credentials.
From the MDN documentation you can read:
Important note: when responding to a credentialed request, server must specify a domain, and cannot use wild carding.
* @param allow true if allowed- returns
a reference to this, so the API can be used fluently
-
def
allowedHeader(headerName: String): CorsHandler
Add an allowed header * @param headerName the allowed header name
Add an allowed header * @param headerName the allowed header name
- returns
a reference to this, so the API can be used fluently
-
def
allowedHeaders(headerNames: Set[String]): CorsHandler
Add a set of allowed headers * @param headerNames the allowed header names
Add a set of allowed headers * @param headerNames the allowed header names
- returns
a reference to this, so the API can be used fluently
-
def
allowedMethod(method: HttpMethod): CorsHandler
Add an allowed method * @param method the method to add
Add an allowed method * @param method the method to add
- returns
a reference to this, so the API can be used fluently
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asJava: AnyRef
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
exposedHeader(headerName: String): CorsHandler
Add an exposed header * @param headerName the exposed header name
Add an exposed header * @param headerName the exposed header name
- returns
a reference to this, so the API can be used fluently
-
def
exposedHeaders(headerNames: Set[String]): CorsHandler
Add a set of exposed headers * @param headerNames the exposed header names
Add a set of exposed headers * @param headerNames the exposed header names
- returns
a reference to this, so the API can be used fluently
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
handle(arg0: RoutingContext): Unit
- Definition Classes
- CorsHandler → Handler
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
maxAgeSeconds(maxAgeSeconds: Int): CorsHandler
Set how long the browser should cache the information * @param maxAgeSeconds max age in seconds
Set how long the browser should cache the information * @param maxAgeSeconds max age in seconds
- returns
a reference to this, so the API can be used fluently
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )