~slub.team/goobi-indexserver/3.x

« back to all changes in this revision

Viewing changes to solr/core/src/test/org/apache/solr/core/MockQuerySenderListenerReqHandler.java

  • Committer: Sebastian Meyer
  • Date: 2012-08-03 09:12:40 UTC
  • Revision ID: sebastian.meyer@slub-dresden.de-20120803091240-x6861b0vabq1xror
Remove Lucene and Solr source code and add patches instead
Fix Bug #985487: Auto-suggestion for the search interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 
 * contributor license agreements.  See the NOTICE file distributed with
4
 
 * this work for additional information regarding copyright ownership.
5
 
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 
 * (the "License"); you may not use this file except in compliance with
7
 
 * the License.  You may obtain a copy of the License at
8
 
 *
9
 
 *     http://www.apache.org/licenses/LICENSE-2.0
10
 
 *
11
 
 * Unless required by applicable law or agreed to in writing, software
12
 
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
 * See the License for the specific language governing permissions and
15
 
 * limitations under the License.
16
 
 */
17
 
package org.apache.solr.core;
18
 
 
19
 
import org.apache.solr.handler.RequestHandlerBase;
20
 
import org.apache.solr.request.SolrQueryRequest;
21
 
import org.apache.solr.response.SolrQueryResponse;
22
 
import org.apache.solr.common.util.NamedList;
23
 
 
24
 
import java.util.concurrent.atomic.AtomicInteger;
25
 
 
26
 
 
27
 
/**
28
 
 *
29
 
 *
30
 
 **/
31
 
public class MockQuerySenderListenerReqHandler extends RequestHandlerBase {
32
 
  public SolrQueryRequest req;
33
 
  public SolrQueryResponse rsp;
34
 
 
35
 
  AtomicInteger initCounter = new AtomicInteger(0);
36
 
 
37
 
  @Override
38
 
  public void init(NamedList args) {
39
 
    initCounter.incrementAndGet();
40
 
    super.init(args);
41
 
  }
42
 
 
43
 
  @Override
44
 
  public void handleRequestBody(SolrQueryRequest req, SolrQueryResponse rsp) throws Exception {
45
 
    this.req = req;
46
 
    this.rsp = rsp;
47
 
  }
48
 
 
49
 
  @Override
50
 
  public String getDescription() {
51
 
    String result = null;
52
 
    return result;
53
 
  }
54
 
 
55
 
  @Override
56
 
  public String getSourceId() {
57
 
    String result = null;
58
 
    return result;
59
 
  }
60
 
 
61
 
  @Override
62
 
  public String getSource() {
63
 
    String result = null;
64
 
    return result;
65
 
  }
66
 
 
67
 
  @Override
68
 
  public String getVersion() {
69
 
    String result = null;
70
 
    return result;
71
 
  }
72
 
 
73
 
  @Override
74
 
  public NamedList<Object> getStatistics() {
75
 
    NamedList<Object> lst = super.getStatistics();
76
 
    lst.add("initCount", initCounter.intValue());
77
 
    return lst;
78
 
  }
79
 
 
80
 
}