Last change
on this file was bdd6491, checked in by Ema <ema_spirova@…>, 3 years ago |
pre final presentation
|
-
Property mode
set to
100644
|
File size:
482 bytes
|
Line | |
---|
1 | package finki.diplomska.tripplanner.security;
|
---|
2 |
|
---|
3 | public class SecurityConstants {
|
---|
4 | public static final String SIGN_UP_URLS = "/api/users/**";
|
---|
5 | public static final String MARIADB_URL = "jdbc:mariadb://127.0.0.1:3306/tripplanner";
|
---|
6 | public static final String SECRET ="SecretKeyToGenJWTs";
|
---|
7 | public static final String TOKEN_PREFIX= "Bearer ";
|
---|
8 | public static final String HEADER_STRING = "Authorization";
|
---|
9 | public static final long EXPIRATION_TIME = 3000_000; //30 min
|
---|
10 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.