* @throws Exception if there is any failure during notification
*/
void notifyReady() throws Exception {
for (Object service : serviceComponents) {
Service s = (Service) service;
s.ready();
if (logger.isLoggable(Level.CONFIG)) {
logger.log(Level.CONFIG, "The {0} is ready", s.getName());
}
}