2017-11-13 16:34:13 +01:00
|
|
|
package zall;
|
|
|
|
|
|
2018-07-26 16:23:01 +02:00
|
|
|
import java.util.Locale;
|
|
|
|
|
|
2017-11-13 16:34:13 +01:00
|
|
|
/**
|
|
|
|
|
* Zallery globally defined constants
|
|
|
|
|
*/
|
2018-08-06 18:53:40 +02:00
|
|
|
public interface ZalleryConstants {
|
2017-11-13 16:34:13 +01:00
|
|
|
|
|
|
|
|
/** Session Constants **/
|
|
|
|
|
|
2018-08-08 11:34:44 +02:00
|
|
|
public static final String KEY_USER_MSG = "zall_user_message";
|
2017-11-14 17:52:55 +01:00
|
|
|
|
|
|
|
|
/** Language Key Constants **/
|
|
|
|
|
|
2018-07-26 16:23:01 +02:00
|
|
|
String LANG_BASENAME = "zall.lang.zallery_lang";
|
|
|
|
|
Locale LANG_DEFAULT = Locale.ENGLISH;
|
2017-11-14 17:52:55 +01:00
|
|
|
|
2017-11-13 16:34:13 +01:00
|
|
|
}
|