Skip to content

Instantly share code, notes, and snippets.

@codesnipers
Created December 11, 2019 05:57
Show Gist options
  • Save codesnipers/d5b08d92f372f0a8e62978a240d72d33 to your computer and use it in GitHub Desktop.
Save codesnipers/d5b08d92f372f0a8e62978a240d72d33 to your computer and use it in GitHub Desktop.
clean code Constants.java
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