Class ModelFactoryRegistry
java.lang.Object
com.yahoo.vespa.config.server.modelfactory.ModelFactoryRegistry
A registry of model factories. Allows querying for a specific version of a
ModelFactory
or
simply returning all of them. Keeps track of the latest Version
supported.- Author:
- Ulf Lilleengen
-
Constructor Summary
ConstructorsConstructorDescriptionModelFactoryRegistry
(com.yahoo.component.provider.ComponentRegistry<com.yahoo.config.model.api.ModelFactory> factories) ModelFactoryRegistry
(List<com.yahoo.config.model.api.ModelFactory> modelFactories) -
Method Summary
Modifier and TypeMethodDescriptionSet<com.yahoo.component.Version>
Collection<com.yahoo.config.model.api.ModelFactory>
Return all factories that can build a model.com.yahoo.config.model.api.ModelFactory
getFactory
(com.yahoo.component.Version version) Returns the factory for the given version
-
Constructor Details
-
ModelFactoryRegistry
@Inject public ModelFactoryRegistry(com.yahoo.component.provider.ComponentRegistry<com.yahoo.config.model.api.ModelFactory> factories) -
ModelFactoryRegistry
-
-
Method Details
-
allVersions
-
getFactory
public com.yahoo.config.model.api.ModelFactory getFactory(com.yahoo.component.Version version) Returns the factory for the given version- Throws:
UnknownVespaVersionException
- if there is no factory for this version
-
getFactories
Return all factories that can build a model.- Returns:
- An immutable collection of
ModelFactory
instances.
-