com.netflix.zuul.constants.ZuulHeaders Maven / Gradle / Ivy
/*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.netflix.zuul.constants;
/**
* HTTP Headers that are accessed or added by Zuul
* User: mcohen
* Date: 5/15/13
* Time: 4:38 PM
*/
public class ZuulHeaders {
public static final String TRANSFER_ENCODING = "transfer-encoding";
public static final String CHUNKED = "chunked";
public static final String ORIGIN = "Origin";
public static final String CONTENT_ENCODING = "Content-Encoding";
public static final String ACCEPT_ENCODING = "accept-encoding";
public static final String X_ZUUL = "X-Zuul";
public static final String X_ZUUL_INSTANCE = "X-Zuul-instance";
public static final String CONNECTION = "Connection";
public static final String KEEP_ALIVE = "keep-alive";
public static final String X_ORIGINATING_URL = "X-Originating-URL";
public static final String X_NETFLIX_ERROR_CAUSE = "X-Netflix-Error-Cause";
public static final String X_FORWARDED_PROTO = "X-Forwarded-Proto";
public static final String X_FORWARDED_FOR = "X-Forwarded-For";
public static final String X_NETFLIX_CLIENT_HOST = "X-Netflix.client-host";
public static final String HOST = "Host";
public static final String X_NETFLIX_CLIENT_PROTO = "X-Netflix.client-proto";
public static final String X_ZUUL_SURGICAL_FILTER = "X-Zuul-Surgical-Filter";
public static final String X_ZUUL_FILTER_EXECUTION_STATUS = "X-Zuul-Filter-Executions";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy