Example usage for io.netty.handler.codec.http HttpHeaderNames VARY

List of usage examples for io.netty.handler.codec.http HttpHeaderNames VARY

Introduction

In this page you can find the example usage for io.netty.handler.codec.http HttpHeaderNames VARY.

Prototype

AsciiString VARY

To view the source code for io.netty.handler.codec.http HttpHeaderNames VARY.

Click Source Link

Document

"vary"

Usage

From source file:org.elasticsearch.hadoop.http.netty4.cors.Netty4CorsHandler.java

License:Apache License

private static void setVaryHeader(final HttpResponse response) {
    response.headers().set(HttpHeaderNames.VARY, HttpHeaderNames.ORIGIN);
}