
com.hp.autonomy.searchcomponents.idol.search.QueryResponseParser Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2015 Open Text.
*
* Licensed under the MIT License (the "License"); you may not use this file
* except in compliance with the License.
*
* The only warranties for products and services of Open Text and its affiliates
* and licensors ("Open Text") are as may be set forth in the express warranty
* statements accompanying such products and services. Nothing herein should be
* construed as constituting an additional warranty. Open Text shall not be
* liable for technical or editorial errors or omissions contained herein. The
* information contained herein is subject to change without notice.
*/
package com.hp.autonomy.searchcomponents.idol.search;
import com.autonomy.aci.client.util.ActionParameters;
import com.hp.autonomy.types.requests.Documents;
import com.opentext.idol.types.responses.Hit;
import com.opentext.idol.types.responses.QueryResponseData;
import org.springframework.beans.factory.annotation.Qualifier;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
/**
* Parsing of response data returned by IDOL in response to search/suggest queries
*/
public interface QueryResponseParser {
/**
* The bean name of the default implementation.
* Use this in an {@link Qualifier} tag to access this implementation via autowiring.
*/
String QUERY_RESPONSE_PARSER_BEAN_NAME = "queryResponseParser";
/**
* Parse Idol query response
*
* @param searchRequest The query request options
* @param aciParameters The parameters sent in the Idol request
* @param responseData The Idol response
* @param queryExecutor The function used for executing the query (in case it needs to be rerun)
* @return The parsed query results
*/
Documents parseQueryResults(IdolSearchRequest searchRequest, ActionParameters aciParameters, QueryResponseData responseData, Function queryExecutor);
/**
* Parses the "hits" section of the Idol query response
*
* @param hits The "hits" section of the Idol query response
* @param referenceField The field used to store document references (must be a reference type
* field)
* @return The parsed query results
*/
List parseQueryHits(Collection hits, String referenceField);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy