Class ApplicationMapper
java.lang.Object
com.yahoo.vespa.config.server.application.ApplicationMapper
Used during config request handling to route to the right config model
based on application id and version.
- Author:
- Vegard Sjonfjell
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetForVersion
(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 idboolean
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 versionSet<com.yahoo.config.provision.ApplicationId>
listApplications
(com.yahoo.config.provision.ApplicationId applicationId) int
Get the number of applications registeredvoid
register
(com.yahoo.config.provision.ApplicationId applicationId, ApplicationVersions applicationVersions) Register an Application to an application id and specific vespa versionvoid
remove
(com.yahoo.config.provision.ApplicationId applicationId) Remove all applications associated with this application id
-
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
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
-
listApplications
-