// Initialize existing password storage schemes.
for (String schemeName: rootConfiguration.listPasswordStorageSchemes())
{
// Get the password storage scheme's configuration.
PasswordStorageSchemeCfg config =
rootConfiguration.getPasswordStorageScheme (schemeName);
// Register as a change listener for this password storage scheme
// entry so that we will be notified of any changes that may be
// made to it.
config.addChangeListener (this);
// Ignore this password storage scheme if it is disabled.
if (config.isEnabled())
{
// Load the password storage scheme implementation class.
String className = config.getJavaClass();
loadAndInstallPasswordStorageScheme (className, config);
}
}
}