Section usersSection = ini.getSection(PolicyFileConstants.USERS);
if (usersSection == null) {
LOGGER.warn("No section " + PolicyFileConstants.USERS + " in the " + resourcePath);
return;
}
for (Entry<String, String> userEntry : usersSection.entrySet()) {
String userName = Strings.nullToEmpty(userEntry.getKey()).trim();
String groupNames = Strings.nullToEmpty(userEntry.getValue()).trim();
if (userName.isEmpty()) {
LOGGER.error("Invalid user name in the " + resourcePath);
continue;