|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IServiceLocator | |
---|---|
org.sr.server | This package contains core server side classes. |
org.sr.server.ejb | This package contains EJB specific implementations. |
org.sr.server.spring | This package contains Spring frmework specific implementations. |
Uses of IServiceLocator in org.sr.server |
---|
Classes in org.sr.server that implement IServiceLocator | |
---|---|
class |
AbstractServiceLocator
Abstract service locator class for service locator implementations |
class |
POJOServiceLocator
Service Locator implementation for Plain Java Objects.This implementation is used as default service locator of system. |
Methods in org.sr.server that return IServiceLocator | |
---|---|
static IServiceLocator |
ServicesRegistry.getDefaultServiceLocator()
Registery keeps one locator ( POJOServiceLocator ) as default one to access service instances
which are not specified their locator in their definitions. |
static IServiceLocator |
ServicesRegistry.getServiceLocator(java.lang.String locatorName)
Gives a defined locator instance by it's name |
Methods in org.sr.server that return types with arguments of type IServiceLocator | |
---|---|
static java.util.Map<java.lang.String,IServiceLocator> |
ServicesRegistry.getServiceLocators()
Gives the map of the registered locator instances. |
Methods in org.sr.server with parameters of type IServiceLocator | |
---|---|
static void |
ServicesRegistry.registerLocator(IServiceLocator locator)
Registers a Service Locator |
Uses of IServiceLocator in org.sr.server.ejb |
---|
Classes in org.sr.server.ejb that implement IServiceLocator | |
---|---|
class |
EJB2ServiceLocator
This is service locator implementation class for Enterprise Java Beans that implemented using EJB 2.1 and former specs. |
class |
EJB3ServiceLocator
This class is a Service Locator implementation for EJB3 objects.This locator access EJB instances by using JNDI, so the target attribute of services need to show the JNDI name of the target EJB. |
Uses of IServiceLocator in org.sr.server.spring |
---|
Classes in org.sr.server.spring that implement IServiceLocator | |
---|---|
class |
SpringServiceLocator
This class is a Service Locator implementation for Spring beans.This locator access spring beans instances by using spring application context, so the target attribute of services need to show the spring bean names of the target objects.In order to use this locator you should also define this locator as spring bean in spring configuration. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |