blob: 72d1fe46c768f97d2f987d67748aa437054b4d66 [file] [log] [blame]
package org.apache.karaf.jaas.command;
import org.apache.felix.gogo.commands.Command;
import org.apache.karaf.jaas.boot.ProxyLoginModule;
import org.apache.karaf.jaas.config.JaasRealm;
import org.apache.karaf.jaas.modules.BackingEngine;
import javax.security.auth.login.AppConfigurationEntry;
import java.util.List;
/**
* @author iocanel
*/
@Command(scope = "jaas", name = "list", description = "Lists the modification on the active realm/module.")
public class ListRealmsCommand extends JaasCommandSupport {
private static final String REALM_LIST_FORMAT = "%-20s %-80s";
@Override
protected Object doExecute(BackingEngine engine) throws Exception {
return null;
}
protected Object doExecute() throws Exception {
List<JaasRealm> realms = getRealms();
if (realms != null && realms.size() > 0) {
System.out.println(String.format(REALM_LIST_FORMAT, "Realm", "Module Class"));
for (JaasRealm realm : realms) {
String realmName = realm.getName();
AppConfigurationEntry[] entries = realm.getEntries();
if (entries != null && entries.length > 0) {
for (int i = 0; i < entries.length; i++) {
String moduleClass = (String) entries[i].getOptions().get(ProxyLoginModule.PROPERTY_MODULE);
System.out.println(String.format(REALM_LIST_FORMAT, realmName, moduleClass));
}
} else {
System.out.println(String.format(REALM_LIST_FORMAT, realmName, "No module found for realm."));
}
}
} else {
System.err.println("No realm found");
}
return null;
}
}