source: MDService2/branches/MDService_simple3/src/eu/clarin/cmdi/mdservice/proxy/ProxyInterface.java @ 1907

Last change on this file since 1907 was 1907, checked in by gaba, 12 years ago

x-context replaced $repository, fcs/xsl's used

File size: 653 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.CQLParseException;
9import eu.clarin.cmdi.mdservice.internal.NoStylesheetException;
10
11public interface ProxyInterface {
12
13        public URL getTargetRequest() throws IOException, CQLParseException;
14        public InputStream getSourceStream() throws IOException, NoStylesheetException, CQLParseException;
15        public void setSourceAction(GenericAction action) ;
16        /**
17         * if problems set Diagnostics
18         */
19        public void checkParams() ;
20       
21}
Note: See TracBrowser for help on using the repository browser.