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