source: SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUDefaultHandler.java @ 5750

Last change on this file since 5750 was 5750, checked in by Oliver Schonefeld, 10 years ago
  • update copyright
  • clean-up whitespace
  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1/**
2 * This software is copyright (c) 2012-2014 by
3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
4 * This is free software. You can redistribute it
5 * and/or modify it under the terms described in
6 * the GNU General Public License v3 of which you
7 * should have received a copy. Otherwise you can download
8 * it from
9 *
10 *   http://www.gnu.org/licenses/gpl-3.0.txt
11 *
12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
13 *
14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
15 *  GNU General Public License v3
16 */
17package eu.clarin.sru.client;
18
19/**
20 * A handler implementing all interfaces for all three response handler types.
21 *
22 * <p>
23 * This class is available as a convenience base class for SRU applications: it
24 * implements the three response handler interfaces:
25 * </p>
26 * <ul>
27 * <li>{@link SRUExplainHandler}</li>
28 * <li>{@link SRUScanHandler}</li>
29 * <li>{@link SRUSearchRetrieveHandler}</li>
30 * </ul>
31 *
32 * @see SRUExplainHandler
33 * @see SRUScanHandler
34 * @see SRUSearchRetrieveHandler
35 */
36public interface SRUDefaultHandler extends SRUExplainHandler, SRUScanHandler,
37        SRUSearchRetrieveHandler {
38
39} // interface SRUDefaultHandler
40
Note: See TracBrowser for help on using the repository browser.