Hi, In my App Module, I have these two methods:-
public void contributeApplicationStateManager( MappedConfiguration<Class, ApplicationStateContribution> configuration) { ....................... configuration.add(XZY.class, new ApplicationStateContribution("session", creator)); } The abpve method creates the SSO object. public void contributeRequestHandler(OrderedConfiguration<RequestFilter> configuration) { configuration.addInstance("RequestFilter", RequestFilter.class, "before:*"); } I want to use my SSO in RequestFilter class. As we know that the contributeRequestHandler(...) is called before the contributeApplicationStateManager(...) method. Do we have a way through which I can access SSO in the request filter class or the request Filter call can take place after the contributeApplicationStateManager() method. Regards!! Akshay