source:
src/main/java/com/example/rezevirajmasa/demo/config/security/SecurityConstants.java
Last change on this file was b78c0c1, checked in by , 15 months ago | |
---|---|
|
|
File size: 340 bytes |
Line | |
---|---|
1 | package com.example.rezevirajmasa.demo.config.security; |
2 | |
3 | public class SecurityConstants { |
4 | public static final String SECRET = "s3cr3tt0k3n"; |
5 | public static final long EXPIRATION_TIME = 864_000_000; // 10 days |
6 | public static final String TOKEN_PREFIX = "Bearer "; |
7 | public static final String HEADER_STRING = "Authorization"; |
8 | |
9 | } |
Note:
See TracBrowser
for help on using the repository browser.