/**
* Creates a configuration beans from the fake hardcoded XML files.
*/
public FakeLocalConfGenerator() {
final FeedServerEntry configEntry = new FeedServerEntry(CONFIG_XML);
fakeLocalConf = new LocalConf();
final ContentUtil contentUtil = new ContentUtil();
try {
contentUtil.fillBean((OtherContent) configEntry.getContent(), fakeLocalConf);
} catch (IllegalArgumentException e) {
throw new RuntimeException(e);
} catch (SAXException e) {
throw new RuntimeException(e);
} catch (IOException e) {