source: SRUServer/tags/SRUServer-1.2.0/src/main/java/eu/clarin/sru/server/SRUOperation.java @ 2624

Last change on this file since 2624 was 2624, checked in by oschonef, 11 years ago
  • tag version 1.2.0
  • Property svn:eol-style set to native
File size: 866 bytes
Line 
1/**
2 * This software is copyright (c) 2011-2013 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.server;
18
19/**
20 * SRU operation.
21 */
22public enum SRUOperation {
23    /**
24     * A <em>explain</em> operation
25     */
26    EXPLAIN,
27
28    /**
29     * A <em>searchRetrieve</em> operation
30     */
31    SEARCH_RETRIEVE,
32
33    /**
34     * A <em>scan</em> operation
35     */
36    SCAN
37} // enum SRUOperation
Note: See TracBrowser for help on using the repository browser.