Uses of Class
com.attivio.sdk.search.QueryRequest
-
Packages that use QueryRequest Package Description com.attivio.client Contains the Client Attivio API for adding content, submitting queries, and sending general purpose messages to an Attivio server.com.attivio.client.streaming Contains client code for streaming search results.com.attivio.sdk.autocomplete com.attivio.sdk.client Interfaces for client side AIE development.com.attivio.sdk.esb com.attivio.sdk.search com.attivio.sdk.server.component.query Interfaces for all query and response related transformers and associated dependencies of those transformers.com.attivio.util.query Contains classes related to Attivio queries and query handlers. -
-
Uses of QueryRequest in com.attivio.client
Methods in com.attivio.client with parameters of type QueryRequest Modifier and Type Method Description QueryResponse
AbstractSearchClient. search(QueryRequest query)
Sends the query to the Attivio search and returns the result.QueryResponse
MockSearchClient. search(QueryRequest query)
-
Uses of QueryRequest in com.attivio.client.streaming
Methods in com.attivio.client.streaming with parameters of type QueryRequest Modifier and Type Method Description static StreamedResponseClient
StreamedResponseClient. createStreamedResponseClient(java.lang.String clientWorkflow, java.lang.String queryEndpoint, QueryRequest request, StreamRequestInfo streamConfig)
Create a new streamed response client. -
Uses of QueryRequest in com.attivio.sdk.autocomplete
Methods in com.attivio.sdk.autocomplete with parameters of type QueryRequest Modifier and Type Method Description java.util.List<AutoCompleteSuggestion>
AutoCompleteProvider. getSuggestions(QueryRequest req)
Get a list of query auto complete suggestions for the specified term. -
Uses of QueryRequest in com.attivio.sdk.client
Methods in com.attivio.sdk.client with parameters of type QueryRequest Modifier and Type Method Description java.util.List<AutoCompleteSuggestion>
AutoCompleteApi. getSuggestions(java.lang.String providerName, QueryRequest req)
Get all suggestions from a certainautocomplete provider
given its name and a query requestjava.util.List<AutoCompleteSuggestion>
MockAutoCompleteApi. getSuggestions(java.lang.String providerName, QueryRequest req)
QueryResponse
SearchClient. search(QueryRequest query)
Sends the query to the Attivio search and returns the result. -
Uses of QueryRequest in com.attivio.sdk.esb
Methods in com.attivio.sdk.esb with parameters of type QueryRequest Modifier and Type Method Description static CgiRequest
CgiRequest. create(QueryRequest qreq)
Creates a CgiRequest from a QueryRequest. -
Uses of QueryRequest in com.attivio.sdk.search
Methods in com.attivio.sdk.search that return QueryRequest Modifier and Type Method Description QueryRequest
QueryRequest. addField(FieldExpression field)
Add a FieldExpression to return for this QueryRequest.QueryRequest
QueryRequest. addField(FieldExpression field, java.lang.String name)
Add a field to return in the response documents.QueryRequest
QueryRequest. addField(FieldRequest field)
Add aFieldRequest
to return for this QueryRequest.QueryRequest
QueryRequest. addField(java.lang.String field)
Add a field to return in the response documents.QueryRequest
QueryRequest. clone()
Clones the object and resets message ID to -1.static QueryRequest
QueryRequest. create(CgiRequest cgi)
Converts CGI HTTP POST/GET request to aQueryRequest
.QueryRequest
QueryResponse. getQueryRequest()
Get theQueryRequest
for this response.QueryRequest
StreamingQueryRequest. getQueryRequest()
Methods in com.attivio.sdk.search with parameters of type QueryRequest Modifier and Type Method Description QueryFrameResult
SearchProfileApi. process(QueryRequest request, java.lang.String query, java.lang.String workflow)
Get the matching query frame for a request.void
QueryResponse. setQueryRequest(QueryRequest value)
Set theQueryRequest
for this response.void
StreamingQueryRequest. setQueryRequest(QueryRequest queryRequest)
Constructors in com.attivio.sdk.search with parameters of type QueryRequest Constructor Description QueryResponse(QueryRequest request)
Creates a new QueryResponse from a QueryRequest object.StreamingQueryRequest(QueryRequest queryRequest)
StreamingQueryRequest(QueryRequest queryRequest, boolean streamFacets)
StreamingQueryRequest(QueryRequest queryRequest, StreamingQueryRequest.DocumentStreamingMode documentStreamingMode)
StreamingQueryRequest(QueryRequest queryRequest, StreamingQueryRequest.DocumentStreamingMode documentStreamingMode, boolean streamFacets)
-
Uses of QueryRequest in com.attivio.sdk.server.component.query
Methods in com.attivio.sdk.server.component.query with parameters of type QueryRequest Modifier and Type Method Description java.util.List<QueryFeedback>
QueryTransformer. processQuery(QueryRequest query)
Processes a query by modifying it in-place. -
Uses of QueryRequest in com.attivio.util.query
Methods in com.attivio.util.query with parameters of type QueryRequest Modifier and Type Method Description static Query
QueryUtils. resolveQuery(QueryRequest request)
Resolve the query fromrequest
.void
QueryTraverser. rewriteAll(QueryRequest request)
Recursively rewrite all queries inrequest
using this traverser.static void
QueryUtils. rewriteAll(QueryRequest request, QueryHandler handler)
Rewrite all queries inrequest
usinghandler
void
QueryTraverser. rewriteFilters(QueryRequest request)
Recursively rewrite all filter queries inrequest
using this traverser.
-