Revision 1785
Added by Jing Tao over 21 years ago
src/edu/ucsb/nceas/metacat/client/Metacat.java | ||
---|---|---|
25 | 25 |
package edu.ucsb.nceas.metacat.client; |
26 | 26 |
|
27 | 27 |
import java.io.Reader; |
28 |
import java.io.IOException; |
|
28 | 29 |
|
29 | 30 |
/** |
30 | 31 |
* This interface provides methods for initializing and logging in to a |
... | ... | |
69 | 70 |
* @param xmlQuery a Reader for accessing the XML version of the query |
70 | 71 |
* @return a Reader for accessing the result set |
71 | 72 |
*/ |
72 |
public Reader query(Reader xmlQuery); |
|
73 |
public Reader query(Reader xmlQuery) throws MetacatInaccessibleException, |
|
74 |
IOException; |
|
73 | 75 |
|
74 | 76 |
/** |
75 | 77 |
* Insert an XML document into the repository. |
Also available in: Unified diff
Add metacatinaccessible exception for query.