Created
December 11, 2019 05:57
-
-
Save codesnipers/d5b08d92f372f0a8e62978a240d72d33 to your computer and use it in GitHub Desktop.
clean code Constants.java
This file contains hidden or 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 Constants { | |
// 전역 변수 전용 클래스 임으로 생성자를 사용하지 못하게 함 | |
private Constants() { | |
} | |
public abstract class SECURE { | |
public static final String ANDROID_KEY_STORE = "AndroidKeyStore"; | |
public static final String TRANSFORMATION = "AES/GCM/NoPadding"; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment