Class ModelFactoryRegistry

java.lang.Object
com.yahoo.vespa.config.server.modelfactory.ModelFactoryRegistry

public class ModelFactoryRegistry extends Object
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 Details

    • ModelFactoryRegistry

      @Inject public ModelFactoryRegistry(com.yahoo.component.provider.ComponentRegistry<com.yahoo.config.model.api.ModelFactory> factories)
    • ModelFactoryRegistry

      public ModelFactoryRegistry(List<com.yahoo.config.model.api.ModelFactory> modelFactories)
  • Method Details

    • allVersions

      public Set<com.yahoo.component.Version> 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

      public Collection<com.yahoo.config.model.api.ModelFactory> getFactories()
      Return all factories that can build a model.
      Returns:
      An immutable collection of ModelFactory instances.