* config object
* @throws ConfigurationException
*/
public void load(Object object) throws ConfigurationException {
Class<?> config = object.getClass();
CoreBootstrap bootstrap = Beans.getReference(CoreBootstrap.class);
if (!bootstrap.isAnnotatedType(config)) {
config = config.getSuperclass();
getLogger().debug(getBundle().getString("proxy-detected", config, config.getClass().getSuperclass()));
}
getLogger().debug(getBundle().getString("loading-configuration-class", config.getName()));