.getClassLoader().getResources("META-INF/web/application/");
List<PathNode> nodeList = new ArrayList<PathNode>();
while (basePathURLEnum.hasMoreElements()) {
nodeList.add(PathNodeFactory.getPathNode(basePathURLEnum.nextElement()));
}
PathNode rootNode = new MultiPathNode(nodeList.toArray(new PathNode[nodeList.size()]));
prefixHandlerMap.put("/application/", new ApplicationServerHandler(
rootNode, "/application"));
prefixHandlerMap.put("/put-infobit", new PutInfoBitHandler(store, identity));
prefixHandlerMap.put("/meta/sources", new GraphHandlerAdaptor(
new SourceGraphHandler(store)));