throws ConfigException, InitializationException
{
// Get the root configuration object.
ServerManagementContext managementContext =
ServerManagementContext.getInstance();
RootCfg rootConfiguration =
managementContext.getRootConfiguration();
// Register as an add and delete listener with the root configuration so we
// can be notified if any certificate mapper entries are added or removed.
rootConfiguration.addCertificateMapperAddListener(this);
rootConfiguration.addCertificateMapperDeleteListener(this);
//Initialize the existing certificate mappers.
for (String mapperName : rootConfiguration.listCertificateMappers())
{
CertificateMapperCfg mapperConfiguration =
rootConfiguration.getCertificateMapper(mapperName);
mapperConfiguration.addChangeListener(this);
if (mapperConfiguration.isEnabled())
{
String className = mapperConfiguration.getJavaClass();