source: SRUClient/tags/SRUClient-1.8.0/src/main/java/eu/clarin/sru/client/SRUExtraResponseData.java @ 6953

Last change on this file since 6953 was 6953, checked in by Oliver Schonefeld, 8 years ago
  • tag version 1.8.0
  • Property svn:eol-style set to native
File size: 905 bytes
Line 
1/**
2 * This software is copyright (c) 2012-2016 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
19import javax.xml.namespace.QName;
20
21/**
22 * Interface for parsed extra response data objects.
23 *
24 */
25public interface SRUExtraResponseData {
26
27    /**
28     * The QName of a chuck of extra response data.
29     *
30     * @return the record schema
31     */
32    public QName getRootElement();
33
34} // interface SRUExtraResponseData
Note: See TracBrowser for help on using the repository browser.