Re: Accessing State Objects from a Service

2006-02-15 Thread Raul Raja Martinez
Actually forget about the hivemodule.xml markup, just include in your EngineService: private ApplicationStateManager appStateManager; public void setAppStateManager(ApplicationStateManager manager) { appStateManager = manager; } the ApplicationStateManager will get autowired thanks to hivem

Re: Accessing State Objects from a Service

2006-02-14 Thread Raul Raja Martinez
Hi Jean-Eric, You may inject the ApplicationStateManager: public class YourService { private ApplicationStateManager appStateManager; public void setAppStateManager(ApplicationStateManager manager) { appStateManager = manager; } ApplicationObject getSessionData() { return a

Accessing State Objects from a Service

2006-02-14 Thread Jean-Eric Cuendet
Hi, I have a service implementing a IEngineService declared in hivemind. I would like to access my SessionData object from this Service. Is it possible? ow? Thanks -jec - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional