use of com.iplanet.services.ldap.DSConfigMgrBase in project OpenAM by OpenRock.
the class BootstrapCreator method updateBootstrap.
public static void updateBootstrap() throws ConfigurationException {
try {
DSConfigMgrBase dsCfg = new DSConfigMgrBase();
dsCfg.parseServiceConfigXML();
instance.update(dsCfg);
} catch (XMLException e) {
throw new ConfigurationException(e.getMessage());
} catch (SMSException e) {
throw new ConfigurationException(e.getMessage());
} catch (SSOException e) {
throw new ConfigurationException(e.getMessage());
}
}
Aggregations