Examples of FlowBean


Examples of com.jeecms.cms.statistic.FlowBean

public class CmsSiteFlowCacheImpl implements CmsSiteFlowCache, DisposableBean {
  private Logger log = LoggerFactory.getLogger(CmsSiteFlowCacheImpl.class);

  public void flow(CmsSite site, String ip, String sessionId, String page, String referer) {
    CmsSiteFlow cmsSiteFlow = create(site, ip, sessionId, page, referer);
    FlowBean flowBean = new FlowBean(cmsSiteFlow.getAccessDate(), sessionId, page);
    if(cache.get(flowBean) == null){
      CmsSiteFlow bean = null;
      try {
        bean = manager.findUniqueByProperties(site.getId(), cmsSiteFlow.getAccessDate(),
            sessionId, page);
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.