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
@Value("${memory.auth.active}") | |
private boolean inMemoryActive; | |
@Value("${memory.auth.username}") | |
private String inMemoryUsername; | |
@Value("${memory.auth.password}") | |
private String inMemoryPassword; | |
// Dirty solution to provide in memory authentication | |