Merged revision(s) 1683050 from lucene/dev/branches/branch_5x:

SOLR-7623: make private variables protected so you can actually override
........


git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1683051 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2015-06-02 06:27:01 +00:00
parent b7101bee60
commit 4d39b4f69d
1 changed files with 17 additions and 17 deletions

View File

@ -114,35 +114,35 @@ import org.slf4j.LoggerFactory;
* This class represents a call made to Solr
**/
public class HttpSolrCall {
private static Logger log = LoggerFactory.getLogger(HttpSolrCall.class);
protected static Logger log = LoggerFactory.getLogger(HttpSolrCall.class);
private final SolrDispatchFilter solrDispatchFilter;
private final CoreContainer cores;
private final HttpServletRequest req;
private final HttpServletResponse response;
private final boolean retry;
private SolrCore core = null;
private SolrQueryRequest solrReq = null;
private SolrRequestHandler handler = null;
private final SolrParams queryParams;
private String path;
private Action action;
private String coreUrl;
private SolrConfig config;
private Map<String, Integer> invalidStates;
protected final SolrDispatchFilter solrDispatchFilter;
protected final CoreContainer cores;
protected final HttpServletRequest req;
protected final HttpServletResponse response;
protected final boolean retry;
protected SolrCore core = null;
protected SolrQueryRequest solrReq = null;
protected SolrRequestHandler handler = null;
protected final SolrParams queryParams;
protected String path;
protected Action action;
protected String coreUrl;
protected SolrConfig config;
protected Map<String, Integer> invalidStates;
public RequestType getRequestType() {
return requestType;
}
private RequestType requestType;
protected RequestType requestType;
public List<String> getCollectionsList() {
return collectionsList;
}
private List<String> collectionsList;
protected List<String> collectionsList;
public HttpSolrCall(SolrDispatchFilter solrDispatchFilter, CoreContainer cores,
HttpServletRequest request, HttpServletResponse response, boolean retry) {