com.github.jerryxia.devhelper.web.WebConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devhelper Show documentation
Show all versions of devhelper Show documentation
This is a helper tool library in developing or testing java web application.
/**
*
*/
package com.github.jerryxia.devhelper.web;
/**
* @author guqk
*
*/
public class WebConstants {
public static final String REQUEST_ID_RESPONSE_HEADER_NAME = "X-Call-RequestId";
public static final ThreadLocal X_CALL_REQUEST_ID = new ThreadLocal();
public static volatile boolean REQUEST_ID_INIT_FILTER_ENABLED = false;
public static volatile boolean REQUEST_CAPTURE_FILTER_ENABLED = false;
public static volatile boolean REQUEST_ID_INIT_INTERCEPTOR_ENABLED = false;
public static volatile boolean REQUEST_RESPONSE_LOG_INTERCEPTOR_ENABLED = false;
public static final String REPLAY_HTTP_REQUEST_HEADER_NAME = "X-Replay-RequestId";
}