Package org.osforce.connect.service.tracker

Examples of org.osforce.connect.service.tracker.UserTracker.track()


 
  public void attributeAdded(HttpSessionBindingEvent se) {
    // user tracker
    UserTracker userTracker = getWebApplicationContext(se).getBean(UserTracker.class);
    if(AttributeKeys.USER_ID_KEY.equals(se.getName())) {
      userTracker.track(se.getName(), se.getValue());
    }
  }

  public void attributeRemoved(HttpSessionBindingEvent se) {
    // user tracker
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.