}
public static Map<Long, FaunusVertex> generateGraph(final ExampleGraph example, final Configuration configuration) throws Exception {
final List<FaunusVertex> vertices;
if (ExampleGraph.TINKERGRAPH.equals(example))
vertices = new FaunusGraphSONUtility().fromJSON(FaunusGraphSONUtility.class.getResourceAsStream("graph-example-1.json"));
else if (ExampleGraph.GRAPH_OF_THE_GODS.equals(example))
vertices = new FaunusGraphSONUtility().fromJSON(FaunusGraphSONUtility.class.getResourceAsStream("graph-of-the-gods.json"));
else {
vertices = new ArrayList<FaunusVertex>();
FaunusVertex saturn = new FaunusVertex(4l);
vertices.add(saturn);
saturn.setProperty("name", "saturn");