source: ComponentRegistry/trunk/ComponentBrowserGui/src/main/flex/clarin/cmdi/componentregistry/services/remote/RemoteService.as @ 3368

Last change on this file since 3368 was 3368, checked in by g.georgovassilis@mpi.nl, 11 years ago

#269 BaseRemoteService? abstracts HTTP communication away for XML services, added facility for mocking services in unit tests, moved tests into src/test

  • Property svn:mime-type set to text/plain
File size: 305 bytes
Line 
1package clarin.cmdi.componentregistry.services.remote
2{
3        import com.adobe.net.URI;
4       
5        import mx.rpc.AsyncToken;
6
7        public interface RemoteService
8        {
9                function setMethod(method:String):void;
10                function setResultFormat(format:String):void;
11                function setUrl(url:URI):void;
12                function send():AsyncToken;
13        }
14}
Note: See TracBrowser for help on using the repository browser.