Package org.jresearch.gossip.dao

Examples of org.jresearch.gossip.dao.ForumDAO.now()


            }

            Iterator it = updatedTopics.iterator();

            HashMap lastIntimeMap = (HashMap) session.getAttribute(IConst.SESSION.LAST_INTIME);
            Date now = dao.now();

            while (it.hasNext()) {
                updateLastVisitTime(lastIntimeMap, (String) it.next(), now);
            }
        } catch (SQLException sqle) {
View Full Code Here


      }
      request.setAttribute(IConst.REQUEST.CURR_FORUM, currForum);
      session.setAttribute(IConst.SESSION.CURR_FORUM, currForum);
      updateLastVisitTime((HashMap) session
          .getAttribute(IConst.SESSION.LAST_INTIME), ptForm.getTid(),
          dao.now());
      RecordsData recordsData = new RecordsData();
      Topic currThread = dao.getThreadInfo(tid);
      dao.fillMessagesList(user, recordsData, ptForm);
      Iterator it = recordsData.getRecords().iterator();
      boolean attachEnabled = Configurator.getInstance().getBoolean(
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.