source: MDService2/branches/MDService_simple2/src/eu/clarin/cmdi/mdservice/proxy/GenericProxy.java @ 1511

Last change on this file since 1511 was 1511, checked in by vronk, 13 years ago

brutal refactoring,
added new packages: proxies, internal,
very much restructured Action hierarchy.
Introduced division Action/Proxy?.
This is a first compiling version.
it's total mess.

File size: 476 bytes
Line 
1package eu.clarin.cmdi.mdservice.proxy;
2
3import java.io.IOException;
4import java.io.InputStream;
5import java.net.URL;
6
7import eu.clarin.cmdi.mdservice.action.GenericAction;
8import eu.clarin.cmdi.mdservice.internal.NoStylesheetException;
9
10public interface GenericProxy {
11
12        public URL getTargetRequest() throws IOException;
13        public InputStream getSourceStream() throws IOException, NoStylesheetException;
14        public void setSourceAction(GenericAction action) ;
15       
16}
Note: See TracBrowser for help on using the repository browser.