Packageorg.springextensions.actionscript.cairngorm.business
SVN browsingModuleServiceLocator.as
FisheyeModuleServiceLocator.as
Classpublic dynamic class ModuleServiceLocator
InheritanceModuleServiceLocator Inheritance com.adobe.cairngorm.business.ServiceLocator

dynamic subclass of the ServiceLocator that does not have the getInstance() singleton method, use the scope="singleton" attribute in your Spring Actionscript configuration instead to make sure only one instance fo the ModuleServiceLocator will be instantiated.



Public Methods
 MethodDefined by
  
Creates a new ModuleServiceLocator instance.
ModuleServiceLocator
  
getHTTPService(name:String):HTTPService
Returns the HTTPService with the specified name or null if it wasn't found.
ModuleServiceLocator
  
getRemoteObject(name:String):RemoteObject
Returns the RemoteObject with the specified name or null if it wasn't found.
ModuleServiceLocator
  
getWebService(name:String):WebService
Returns the WebService with the specified name or null if it wasn't found.
ModuleServiceLocator
Constructor detail
ModuleServiceLocator()constructor
public function ModuleServiceLocator()

Creates a new ModuleServiceLocator instance.

Method detail
getHTTPService()method
public override function getHTTPService(name:String):HTTPService

Returns the HTTPService with the specified name or null if it wasn't found.

Parameters
name:String

Returns
HTTPService
getRemoteObject()method 
public override function getRemoteObject(name:String):RemoteObject

Returns the RemoteObject with the specified name or null if it wasn't found.

Parameters
name:String

Returns
RemoteObject
getWebService()method 
public override function getWebService(name:String):WebService

Returns the WebService with the specified name or null if it wasn't found.

Parameters
name:String

Returns
WebService