Class ConfigSetAdminRequest<Q extends ConfigSetAdminRequest<Q,R>,R extends ConfigSetAdminResponse>
java.lang.Object
org.apache.solr.client.solrj.SolrRequest<R>
org.apache.solr.client.solrj.request.ConfigSetAdminRequest<Q,R>
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConfigSetAdminRequest.ConfigSetSpecificAdminRequest,ConfigSetAdminRequest.List
public abstract class ConfigSetAdminRequest<Q extends ConfigSetAdminRequest<Q,R>,R extends ConfigSetAdminResponse>
extends SolrRequest<R>
This class is experimental and subject to change.
- Since:
- solr 5.4
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static classConfigSetAdminRequest.ConfigSetSpecificAdminRequest<T extends ConfigSetAdminRequest<T,ConfigSetAdminResponse>> static classCreates a new config set by cloning an existing "base" configset.static classstatic classstatic classUploads files to create a new configset, or modify an existing config set.Nested classes/interfaces inherited from class org.apache.solr.client.solrj.SolrRequest
SolrRequest.ApiVersion, SolrRequest.METHOD, SolrRequest.SolrClientContext, SolrRequest.SolrRequestType -
Field Summary
FieldsFields inherited from class org.apache.solr.client.solrj.SolrRequest
SUPPORTED_METHODS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract RcreateResponse(NamedList<Object> namedList) Create a new SolrResponse to hold the response from the server.The parameters for this request; never null.protected abstract QgetThis()protected ConfigSetAdminRequest<Q, R> Methods inherited from class org.apache.solr.client.solrj.SolrRequest
addHeader, addHeaders, getApiVersion, getBasicAuthPassword, getBasicAuthUser, getCollection, getContentStreams, getContentWriter, getHeaders, getMethod, getPath, getPreferredNodes, getQueryParams, getRequestType, getResponseParser, getStreamingResponseCallback, getUserPrincipal, process, process, processWithBaseUrl, requiresCollection, setBasicAuthCredentials, setMethod, setPath, setPreferredNodes, setQueryParams, setRequestType, setResponseParser, setStreamingResponseCallback, setUserPrincipal
-
Field Details
-
action
-
-
Constructor Details
-
ConfigSetAdminRequest
public ConfigSetAdminRequest() -
ConfigSetAdminRequest
-
-
Method Details
-
setAction
-
getThis
-
getParams
Description copied from class:SolrRequestThe parameters for this request; never null. The runtime type may be mutable but modifications may not affect thisSolrRequestinstance, as it may return a new instance here every time. If the subclass specifies the response type asModifiableSolrParams, then one can expect it to change this request. If the subclass has a setter then one can expect this method to return the value set.- Specified by:
getParamsin classSolrRequest<R extends ConfigSetAdminResponse>
-
createResponse
Description copied from class:SolrRequestCreate a new SolrResponse to hold the response from the server. If the response extendsSolrResponse, then there's no need to use the arguments, asSolrResponse.setResponse(NamedList)will be called right after this method.- Specified by:
createResponsein classSolrRequest<R extends ConfigSetAdminResponse>- Parameters:
namedList- fromSolrClient.request(SolrRequest, String).
-