Field dataSourceImportList = getClass().getDeclaredField("dataSourceImportList");
dataSourceImportList.setAccessible(true);
dataSourceImportList.set(this, new HashMap<String, CachedListImpl<DataSourceImport>>());
} catch (NoSuchFieldException e) {
throw new InternalConfigurationException("Failed to set service fields", e);
} catch (IllegalAccessException e) {
throw new InternalConfigurationException("Failed to set service fields", e);
} catch (SecurityException e) {
throw new InternalConfigurationException("Failed to set service fields", e);
} catch (IllegalArgumentException e) {
throw new InternalConfigurationException("Failed to set service fields", e);
}
}