Class GenericSolrRequest
- java.lang.Object
-
- org.apache.solr.client.solrj.SolrRequest<SimpleSolrResponse>
-
- org.apache.solr.client.solrj.request.GenericSolrRequest
-
- All Implemented Interfaces:
Serializable
public class GenericSolrRequest extends SolrRequest<SimpleSolrResponse>
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.solr.client.solrj.SolrRequest
SolrRequest.METHOD, SolrRequest.SolrClientContext, SolrRequest.SolrRequestType
-
-
Field Summary
Fields Modifier and Type Field Description RequestWriter.ContentWriter
contentWriter
SolrParams
params
boolean
requiresCollection
SimpleSolrResponse
response
-
Fields inherited from class org.apache.solr.client.solrj.SolrRequest
SUPPORTED_METHODS, useBinaryV2, usev2
-
-
Constructor Summary
Constructors Constructor Description GenericSolrRequest(SolrRequest.METHOD m, String path)
GenericSolrRequest(SolrRequest.METHOD m, String path, SolrParams params)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected SimpleSolrResponse
createResponse(SolrClient client)
Create a new SolrResponse to hold the response from the serverRequestWriter.ContentWriter
getContentWriter(String expectedType)
If a request object wants to do a push write, implement this method.SolrParams
getParams()
String
getRequestType()
This method defines the type of this Solr request.boolean
requiresCollection()
Determines whether this request should use or ignore any specified collections (esp.GenericSolrRequest
setContentWriter(RequestWriter.ContentWriter contentWriter)
GenericSolrRequest
setRequiresCollection(boolean requiresCollection)
Determines whether the SolrRequest should use a default collection or core from the clientGenericSolrRequest
withContent(byte[] buf, String type)
-
Methods inherited from class org.apache.solr.client.solrj.SolrRequest
addHeader, addHeaders, getBasePath, getBasicAuthPassword, getBasicAuthUser, getCollection, getContentStreams, getHeaders, getMethod, getPath, getPreferredNodes, getQueryParams, getResponseParser, getStreamingResponseCallback, getUserPrincipal, process, process, setBasePath, setBasicAuthCredentials, setMethod, setPath, setPreferredNodes, setQueryParams, setResponseParser, setStreamingResponseCallback, setUseBinaryV2, setUserPrincipal, setUseV2
-
-
-
-
Field Detail
-
params
public SolrParams params
-
response
public SimpleSolrResponse response
-
contentWriter
public RequestWriter.ContentWriter contentWriter
-
requiresCollection
public boolean requiresCollection
-
-
Constructor Detail
-
GenericSolrRequest
public GenericSolrRequest(SolrRequest.METHOD m, String path)
- Parameters:
m
- the HTTP method to use for this requestpath
- the HTTP path to use for this request. If users are making a collection-aware request (i.e.setRequiresCollection(boolean)
is called with 'true'), only the section of the API path following the collection or core should be provided here.
-
GenericSolrRequest
public GenericSolrRequest(SolrRequest.METHOD m, String path, SolrParams params)
- Parameters:
m
- the HTTP method to use for this requestpath
- the HTTP path to use for this request. If users are making a collection-aware request (i.e.setRequiresCollection(boolean)
is called with 'true'), only the section of the API path following the collection or core should be provided here.params
- query parameter names and values for making this request.
-
-
Method Detail
-
setRequiresCollection
public GenericSolrRequest setRequiresCollection(boolean requiresCollection)
Determines whether the SolrRequest should use a default collection or core from the clientShould generally be 'true' whenever making a request to a particular collection or core, and 'false' otherwise.
- Parameters:
requiresCollection
- true if a default collection should be used, false otherwise.
-
requiresCollection
public boolean requiresCollection()
Description copied from class:SolrRequest
Determines whether this request should use or ignore any specified collections (esp.SolrClient.defaultCollection
)Many Solr requests target a particular core or collection. But not all of them - many Solr APIs (e.g. security or other admin APIs) are agnostic of collections entirely. This method gives these requests a way to opt out of using
SolrClient.defaultCollection
or other specified collections.- Overrides:
requiresCollection
in classSolrRequest<SimpleSolrResponse>
-
setContentWriter
public GenericSolrRequest setContentWriter(RequestWriter.ContentWriter contentWriter)
-
withContent
public GenericSolrRequest withContent(byte[] buf, String type)
-
getContentWriter
public RequestWriter.ContentWriter getContentWriter(String expectedType)
Description copied from class:SolrRequest
If a request object wants to do a push write, implement this method.- Overrides:
getContentWriter
in classSolrRequest<SimpleSolrResponse>
- Parameters:
expectedType
- This is the type that the RequestWriter would like to get. But, it is OK to send any format
-
getParams
public SolrParams getParams()
- Specified by:
getParams
in classSolrRequest<SimpleSolrResponse>
-
createResponse
protected SimpleSolrResponse createResponse(SolrClient client)
Description copied from class:SolrRequest
Create a new SolrResponse to hold the response from the server- Specified by:
createResponse
in classSolrRequest<SimpleSolrResponse>
- Parameters:
client
- theSolrClient
the request will be sent to
-
getRequestType
public String getRequestType()
Description copied from class:SolrRequest
This method defines the type of this Solr request.- Specified by:
getRequestType
in classSolrRequest<SimpleSolrResponse>
-
-