com.yahoo.vespa.model.container.search.searchchain.GenericProvider Maven / Gradle / Ivy
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.container.search.searchchain;
import com.yahoo.component.chain.model.ChainSpecification;
import com.yahoo.search.federation.ProviderConfig;
import com.yahoo.search.searchchain.model.federation.FederationOptions;
/**
* A generic provider, used when no type is given.
*
* @author Tony Vaagenes
*/
public class GenericProvider extends Provider implements ProviderConfig.Producer {
/** Config producer for the contained http searcher. */
public GenericProvider(ChainSpecification specWithoutInnerSearchers, FederationOptions federationOptions) {
super(specWithoutInnerSearchers, federationOptions);
}
@Override
public void getConfig(ProviderConfig.Builder builder) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy