source: ComponentRegistry/trunk/ComponentBrowserGui/src/main/flex/clarin/cmdi/componentregistry/services/remote/ClientServiceFactoryImpl.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: 319 bytes
Line 
1package clarin.cmdi.componentregistry.services.remote
2{
3        public class ClientServiceFactoryImpl extends HttpServiceFactory
4        {
5               
6                public function ClientServiceFactoryImpl()
7                {
8                        HttpServiceFactory.impl = this;
9                }
10               
11                override public function createNew():RemoteService{
12                        return new RemoteServiceWrapper();
13                }
14        }
15}
Note: See TracBrowser for help on using the repository browser.