This class provides a singleton model for accessing the configured ApplicationServices object. Create your {@link ApplicationServices} and loadthem into the locator within your Spring context to make the services available throughout the application.
<bean id="serviceLocator" class="org.springframework.richclient.application.ApplicationServicesLocator"> <property name="applicationServices" ref="applicationServices"/> </bean>
or by using construtor arguments:
<bean id="serviceLocator" class="org.springframework.richclient.application.ApplicationServicesLocator"> <constructor-arg index="0" ref="applicationServices"/> </bean>
@author Larry Streepy