final MySecurityGenerator<ManageableSecurity> fourthGenerator = getVanillaSwapSecurityGenerator();
configure(firstGenerator);
configure(secondGenerator);
configure(thirdGenerator);
configure(fourthGenerator);
final TreePortfolioNodeGenerator rootNode = new TreePortfolioNodeGenerator(new StaticNameGenerator("EUR Fixed Income Portfolio"));
rootNode.addChildNode(firstGenerator);
rootNode.addChildNode(secondGenerator);
rootNode.addChildNode(thirdGenerator);
rootNode.addChildNode(fourthGenerator);
return rootNode;