package cn.itcast.estore.util;
public final class Constant {
private Constant() {
super
();
}
public static final class Common {
private static final int INT_ZERO = 0;
private static final int INT_ONE = 1;
private static final String IDENTIFYING_CODE =
"identifying_code"
;
private static final String ENCODING_TYPE_UTF8 =
"UTF-8"
;
private static final String ENCODING_TYPE_ISO8895_1 =
"ISO-8859-1"
;
private static final String ENCODING_TYPE_GBK =
"GBK"
;
private static final String CONTENT_TYPE_TextHtml =
"text/html"
;
private static final String GET =
"GET"
;
private static final String POST =
"POST"
;
private static final String ENCRYPT_TYPE_MD5 =
"md5"
;
private static final String ENCRYPT_TYPE_SHA1 =
"sha1"
;
private Common() {
super
();
}
public static int INT_ZERO() {
return
INT_ZERO;
}
public static int INT_ONE() {
return
INT_ONE;
}
public static String IDENTIFYING_CODE() {
return
IDENTIFYING_CODE;
}
public static String ENCODING_TYPE_UTF8() {
return
ENCODING_TYPE_UTF8;
}
public static String ENCODING_TYPE_ISO8895_1() {
return
ENCODING_TYPE_ISO8895_1;
}
public static String ENCODING_TYPE_GBK() {
return
ENCODING_TYPE_GBK;
}
public static String CONTENT_TYPE_TextHtml() {
return
CONTENT_TYPE_TextHtml;
}
public static String GET() {
return
GET;
}
public static String POST() {
return
POST;
}
public static String ENCRYPT_TYPE_MD5() {
return
ENCRYPT_TYPE_MD5;
}
public static String ENCRYPT_TYPE_SHA1() {
return
ENCRYPT_TYPE_SHA1;
}
}
public static final class User {
private static final String USER_IN_SESSION =
"user_in_session"
;
private static final String USER_NAME =
"username"
;
private User() {
super
();
}
public static String USER_IN_SESSION() {
return
USER_IN_SESSION;
}
public static String USER_NAME() {
return
USER_NAME;
}
}
}