Package com.javaeye.jert.service

Examples of com.javaeye.jert.service.UserPrefsService


    protected void before(ActionInvocation invocation) {
        Action action = invocation.getAction();
        if (action instanceof UserPrefsAware) {
            UserPrefs userPrefs = (UserPrefs) invocation.getInvocationContext().getSession().get(USER_PREFS_SESSION_KEY);
            if (userPrefs == null) {
                UserPrefsService service = (UserPrefsService) Application.getInstance().getContainer().getComponent(UserPrefsService.class);
                userPrefs = service.loadUserPrefs(RemoteUser.get().getName());
                invocation.getInvocationContext().getSession().put(USER_PREFS_SESSION_KEY, userPrefs);
            }
            ((UserPrefsAware) action).setUserPrefs(userPrefs);
        }
    }
View Full Code Here

TOP

Related Classes of com.javaeye.jert.service.UserPrefsService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.