package org.glassfish.grizzly.servlet;
public class DispatcherConstants {
static final String FORWARD_REQUEST_URI = "javax.servlet.forward.request_uri";
static final String FORWARD_CONTEXT_PATH = "javax.servlet.forward.context_path";
static final String FORWARD_PATH_INFO = "javax.servlet.forward.path_info";
static final String FORWARD_SERVLET_PATH = "javax.servlet.forward.servlet_path";
static final String FORWARD_QUERY_STRING = "javax.servlet.forward.query_string";
static final String INCLUDE_REQUEST_URI = "javax.servlet.include.request_uri";
static final String INCLUDE_CONTEXT_PATH = "javax.servlet.include.context_path";
static final String INCLUDE_PATH_INFO = "javax.servlet.include.path_info";
static final String INCLUDE_SERVLET_PATH = "javax.servlet.include.servlet_path";
static final String INCLUDE_QUERY_STRING = "javax.servlet.include.query_string";
static final String ERROR_EXCEPTION = "javax.servlet.error.exception";
static final String ERROR_EXCEPTION_TYPE = "javax.servlet.error.exception_type";
static final String ERROR_MESSAGE = "javax.servlet.error.message";
static final String ERROR_REQUEST_URI = "javax.servlet.error.request_uri";
static final String ERROR_SERVLET_NAME = "javax.servlet.error.servlet_name";
static final String ERROR_STATUS_CODE = "javax.servlet.error.status_code";
static final String ASYNC_REQUEST_URI = "javax.servlet.async.request_uri";
static final String ASYNC_CONTEXT_PATH = "javax.servlet.async.context_path";
static final String ASYNC_PATH_INFO = "javax.servlet.async.path_info";
static final String ASYNC_SERVLET_PATH = "javax.servlet.async.servlet_path";
static final String ASYNC_QUERY_STRING = "javax.servlet.async.query_string";
}