databaseUserName = ServerSettings.getCredentialStoreDBUser();
databasePassword = ServerSettings.getCredentialStoreDBPassword();
} catch (ApplicationSettingsException e) {
log.error("Error reading default user store DB configurations.");
throw new UserStoreException(e);
}
StringBuilder stringBuilder = new StringBuilder("User store configurations - dbDriver - ");
stringBuilder.append(databaseDriver);
stringBuilder.append(" URL - ").append(databaseURL).append(" DB user - ").append(databaseUserName);