Mercurial > dive4elements > http-client
comparison src/main/java/de/intevation/artifacts/httpclient/http/HttpClient.java @ 12:5b62267a1c3c
The HttpClient got a new method that returns the InputStream of a Collection's OUT operation.
http-client/trunk@1857 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 09 May 2011 09:28:11 +0000 |
parents | 072e8d488f83 |
children | c4431f39926a |
comparison
equal
deleted
inserted
replaced
11:ea8b7e244e61 | 12:5b62267a1c3c |
---|---|
5 * Read the file LGPL.txt coming with the software for details | 5 * Read the file LGPL.txt coming with the software for details |
6 * or visit http://www.gnu.org/licenses/ if it does not exist. | 6 * or visit http://www.gnu.org/licenses/ if it does not exist. |
7 */ | 7 */ |
8 package de.intevation.artifacts.httpclient.http; | 8 package de.intevation.artifacts.httpclient.http; |
9 | 9 |
10 import java.io.InputStream; | |
10 import java.io.OutputStream; | 11 import java.io.OutputStream; |
11 | 12 |
12 import org.w3c.dom.Document; | 13 import org.w3c.dom.Document; |
13 | 14 |
14 import de.intevation.artifacts.httpclient.exceptions.ConnectionException; | 15 import de.intevation.artifacts.httpclient.exceptions.ConnectionException; |
80 String uuid, | 81 String uuid, |
81 String type, | 82 String type, |
82 OutputStream out) | 83 OutputStream out) |
83 throws ConnectionException; | 84 throws ConnectionException; |
84 | 85 |
86 InputStream collectionOut( | |
87 Document doc, | |
88 String uuid, | |
89 String type) | |
90 throws ConnectionException; | |
91 | |
85 | 92 |
86 /******************************* | 93 /******************************* |
87 * Users API | 94 * Users API |
88 *******************************/ | 95 *******************************/ |
89 | 96 |