Class ApplicationMapper

java.lang.Object
com.yahoo.vespa.config.server.application.ApplicationMapper

public final class ApplicationMapper extends Object
Used during config request handling to route to the right config model based on application id and version.
Author:
Vegard Sjonfjell
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    getForVersion(com.yahoo.config.provision.ApplicationId applicationId, Optional<com.yahoo.component.Version> vespaVersion, Instant now)
    Retrieve the Application corresponding to this application id and specified vespa version.
    boolean
    hasApplication(com.yahoo.config.provision.ApplicationId applicationId, Instant now)
    Returns whether this registry has an application for the given application id
    boolean
    hasApplicationForVersion(com.yahoo.config.provision.ApplicationId applicationId, Optional<com.yahoo.component.Version> vespaVersion, Instant now)
    Returns whether this registry has an application for the given application id and vespa version
    Set<com.yahoo.config.provision.ApplicationId>
     
    listApplications(com.yahoo.config.provision.ApplicationId applicationId)
     
    int
    Get the number of applications registered
    void
    register(com.yahoo.config.provision.ApplicationId applicationId, ApplicationVersions applicationVersions)
    Register an Application to an application id and specific vespa version
    void
    remove(com.yahoo.config.provision.ApplicationId applicationId)
    Remove all applications associated with this application id

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ApplicationMapper

      public ApplicationMapper()
  • Method Details

    • register

      public void register(com.yahoo.config.provision.ApplicationId applicationId, ApplicationVersions applicationVersions)
      Register an Application to an application id and specific vespa version
    • remove

      public void remove(com.yahoo.config.provision.ApplicationId applicationId)
      Remove all applications associated with this application id
    • getForVersion

      public Application getForVersion(com.yahoo.config.provision.ApplicationId applicationId, Optional<com.yahoo.component.Version> vespaVersion, Instant now) throws VersionDoesNotExistException
      Retrieve the Application corresponding to this application id and specified vespa version.
      Returns:
      the matching application, or null if none matches
      Throws:
      VersionDoesNotExistException
    • hasApplication

      public boolean hasApplication(com.yahoo.config.provision.ApplicationId applicationId, Instant now)
      Returns whether this registry has an application for the given application id
    • hasApplicationForVersion

      public boolean hasApplicationForVersion(com.yahoo.config.provision.ApplicationId applicationId, Optional<com.yahoo.component.Version> vespaVersion, Instant now)
      Returns whether this registry has an application for the given application id and vespa version
    • numApplications

      public int numApplications()
      Get the number of applications registered
    • listApplicationIds

      public Set<com.yahoo.config.provision.ApplicationId> listApplicationIds()
    • listApplications

      public List<Application> listApplications(com.yahoo.config.provision.ApplicationId applicationId)