1 package gboat2.base.bridge;
2
3
4
5
6
7
8
9 public interface GboatAppConstants {
10
11 String WEBAPP_ROOT_KEY = "webapp.gboat2.root";
12
13
14 String ENCODING_ISO88591 = "ISO-8859-1";
15
16
17 String ENCODING_UTF8 = "UTF-8";
18
19
20 String ENCODING_GBK = "GBK";
21
22
23 String CT_HTML_UTF8 = "text/html;charset=utf-8";
24
25 String CT_JOSN_UTF8 = "text/json;charset=utf-8";
26
27 String CT_PLAIN_UTF8 = "text/plain;charset=utf-8";
28
29
30 String INCLUDE_SERVLET_PATH_KEY = "javax.servlet.include.servlet_path";
31 }