/connect-web/src/main/java/org/osforce/connect/web/listener/TrackerListener.java

http://focus-sns.googlecode.com/ · Java · 47 lines · 29 code · 9 blank · 9 comment · 2 complexity · 614e168ca026c2852cfb158123ed7aef MD5 · raw file

  1. package org.osforce.connect.web.listener;
  2. import javax.servlet.http.HttpSessionAttributeListener;
  3. import javax.servlet.http.HttpSessionBindingEvent;
  4. import org.osforce.connect.service.tracker.UserTracker;
  5. import org.osforce.connect.web.AttributeKeys;
  6. import org.springframework.web.context.WebApplicationContext;
  7. import org.springframework.web.context.support.WebApplicationContextUtils;
  8. /**
  9. *
  10. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  11. * @since 1.1.0
  12. * @create May 27, 2011 - 2:09:00 PM
  13. * <a href="http://www.opensourceforce.org">????</a>
  14. */
  15. public class TrackerListener implements HttpSessionAttributeListener {
  16. public TrackerListener() {
  17. }
  18. public void attributeAdded(HttpSessionBindingEvent se) {
  19. // user tracker
  20. UserTracker userTracker = getWebApplicationContext(se).getBean(UserTracker.class);
  21. if(AttributeKeys.USER_ID_KEY.equals(se.getName())) {
  22. userTracker.track(se.getName(), se.getValue());
  23. }
  24. }
  25. public void attributeRemoved(HttpSessionBindingEvent se) {
  26. // user tracker
  27. UserTracker userTracker = getWebApplicationContext(se).getBean(UserTracker.class);
  28. if(AttributeKeys.USER_ID_KEY.equals(se.getName())) {
  29. userTracker.untrack(se.getName(), se.getValue());
  30. }
  31. }
  32. public void attributeReplaced(HttpSessionBindingEvent se) {
  33. }
  34. protected WebApplicationContext getWebApplicationContext(HttpSessionBindingEvent se) {
  35. return WebApplicationContextUtils.getRequiredWebApplicationContext(
  36. se.getSession().getServletContext());
  37. }
  38. }