The registry implements a three stage lookup for registered factories that have to deal with requests:
{method > { mimetype -> [{'priority' : some_int, 'factory' : factory, 'name' : some_name }, ... ] }, }
The priority is used to define a lookup-order when multiple factories are registered for the same method and mime-type.
There are no attributes in this class.
getFactoriesFor(method, mimetype)
lookup(method, mimetype, environment)
Lookup a factory for a given method+mimetype and a environment.
register(method, mimetype, name, priority, factory)
Register a factory for method+mimetype
There are no known subclasses.