2017-11-13 16:34:13 +01:00
|
|
|
package zall;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Zallery globally defined constants
|
|
|
|
|
*/
|
|
|
|
|
public interface ZalleryConstant {
|
|
|
|
|
|
|
|
|
|
/** Session Constants **/
|
|
|
|
|
|
|
|
|
|
String SESSION_KEY_USER = "zal_user";
|
|
|
|
|
String SESSION_KEY_AUTH_HASH = "zal_session_hash";
|
2017-11-14 17:52:55 +01:00
|
|
|
|
|
|
|
|
/** Language Key Constants **/
|
|
|
|
|
|
|
|
|
|
String LANG_BASENAME = "zallery_lang";
|
|
|
|
|
|
2017-11-13 16:34:13 +01:00
|
|
|
}
|