Looking for API that helps me with processing of taxonomies. It should be possible to work with taxonomy in object model (loading from xml file), list categories, traverse tree of categories (if it's tree taxonomy), getting name and value for category, etc. Read only mode is sufficient. Google hasn't helped a lot :(
Usage can be as follows:
Taxonomy taxonomy = Taxonomy.loadFromStream(XMLInputStream);
List categories = taxonomy.listAllCategories();
Category rootCategory = taxonomy.getRootCategory();
What's important about it is that I don't want to handle XML directly. It's useless. If there will be some YAML adapter, taxonomy can be in YAML format and my code stays unaffected...
