Last active
December 6, 2017 15:22
-
-
Save ugurcemozturk/082bd0d4a2212e04d8080723a23bac9a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SecurityConstants { | |
public static final String SECRET = "Emakina"; | |
public static final long EXPIRATION_TIME = 423_000_000; // 5 gün | |
public static final String TOKEN_PREFIX = "Bearer "; | |
public static final String HEADER_STRING = "Authorization"; | |
public static final String SIGN_UP_URL = "/developers/sign-up"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment