source: SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUVersion.java @ 6903

Last change on this file since 6903 was 6903, checked in by Oliver Schonefeld, 8 years ago
  • some steps towards SRU 2.0
  • Property svn:eol-style set to native
File size: 837 bytes
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 * SRU version
21 */
22public enum SRUVersion {
23    /**
24     * SRU/CQL version 1.1
25     */
26    VERSION_1_1,
27
28    /**
29     * SRU/CQL version 1.2
30     */
31    VERSION_1_2,
32
33    /**
34     * SRU/CQL version 2.0
35     */
36    VERSION_2_0;
37
38} // enum SRUVersion
Note: See TracBrowser for help on using the repository browser.