Some progress on auth logic and cleanup of User class

This commit is contained in:
Ziver Koc 2017-11-13 16:34:13 +01:00
parent 58d4ab2f75
commit 26ab7c9dd9
12 changed files with 370 additions and 110 deletions

12
src/zall/ZalleryConstant.java Executable file
View file

@ -0,0 +1,12 @@
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";
}