private final Model _model;
public ConfiguredObjectFactoryImpl(Model model)
{
_model = model;
QpidServiceLoader serviceLoader =
new QpidServiceLoader();
Iterable<ConfiguredObjectTypeFactory> allFactories =
serviceLoader.instancesOf(ConfiguredObjectTypeFactory.class);
for (ConfiguredObjectTypeFactory factory : allFactories)
{
final Class<? extends ConfiguredObject> categoryClass = factory.getCategoryClass();
final String categoryName = categoryClass.getSimpleName();