Class SecurityConstants
- java.lang.Object
-
- cz.zcu.students.cacha.bp_server.security.SecurityConstants
-
public class SecurityConstants extends Object
Class holding constants used in security
-
-
Field Summary
Fields Modifier and Type Field Description static long
EXPIRATION_TIME
jwt expiration lengthstatic String
HEADER_STRING
http authorizationstatic String
SECRET
jwt generation secretstatic String
TOKEN_PREFIX
http authorization token prefix
-
Constructor Summary
Constructors Constructor Description SecurityConstants()
-
-
-
Field Detail
-
SECRET
public static final String SECRET
jwt generation secret- See Also:
- Constant Field Values
-
TOKEN_PREFIX
public static final String TOKEN_PREFIX
http authorization token prefix- See Also:
- Constant Field Values
-
HEADER_STRING
public static final String HEADER_STRING
http authorization- See Also:
- Constant Field Values
-
EXPIRATION_TIME
public static final long EXPIRATION_TIME
jwt expiration length- See Also:
- Constant Field Values
-
-