use of com.sun.enterprise.config.serverbeans.AuthRealm in project Payara by payara.
the class RealmsImpl method getConfiguredRealmNames.
/**
* realm names as found in configuration; some might be defective and unable to be loaded
*/
private Set<String> getConfiguredRealmNames() {
Set<String> names = new HashSet<String>();
List<AuthRealm> realms = getAuthRealms();
for (AuthRealm realm : realms) {
names.add(realm.getName());
}
return names;
}
Aggregations