ex.add(oe);
}
}
catch (final Throwable t)
{
OnlineUpdateException oupe = new OnlineUpdateException(
ERR_READING_CONFIG_LDAP.get(t.toString()), t);
ex.add(oupe);
}
for (OpenDsException oe : ex)
{
LOG.log(Level.WARNING, "Error reading configuration: "+oe, oe);
}
administrativeUsers = Collections.unmodifiableSet(as);
listeners = Collections.unmodifiableSet(ls);
backends = Collections.unmodifiableSet(bs);
try
{
updateMonitorInformation(ctx, ex);
}
catch (Throwable t)
{
LOG.log(Level.WARNING, "Error reading monitoring: "+t, t);
OnlineUpdateException oupe = new OnlineUpdateException(
ERR_READING_CONFIG_LDAP.get(t.toString()), t);
ex.add(oupe);
}
try
{
updateTaskInformation(ctx, ex, ts);
}
catch (Throwable t)
{
LOG.log(Level.WARNING, "Error reading task information: "+t, t);
OnlineUpdateException oupe = new OnlineUpdateException(
ERR_READING_CONFIG_LDAP.get(t.toString()), t);
ex.add(oupe);
}
taskEntries = Collections.unmodifiableSet(ts);
for (ConnectionHandlerDescriptor ch : getConnectionHandlers())