1
22
23 package com.liferay.portlet.calendar.service.persistence;
24
25 import com.liferay.portal.SystemException;
26 import com.liferay.portal.spring.hibernate.CustomSQLUtil;
27 import com.liferay.portal.spring.hibernate.HibernateUtil;
28 import com.liferay.portlet.calendar.model.CalEvent;
29 import com.liferay.portlet.calendar.model.impl.CalEventImpl;
30 import com.liferay.util.cal.CalendarUtil;
31 import com.liferay.util.dao.hibernate.QueryPos;
32
33 import java.sql.Timestamp;
34
35 import java.util.Date;
36 import java.util.List;
37
38 import org.hibernate.SQLQuery;
39 import org.hibernate.Session;
40
41
47 public class CalEventFinderImpl implements CalEventFinder {
48
49 public static String FIND_BY_G_SD =
50 CalEventFinder.class.getName() + ".findByG_SD";
51
52 public static String FIND_BY_REMINDBY =
53 CalEventFinder.class.getName() + ".findByRemindBy";
54
55 public List<CalEvent> findByG_SD(
56 long groupId, Date startDateGT, Date startDateLT,
57 boolean timeZoneSensitive)
58 throws SystemException {
59
60 Timestamp startDateGT_TS = CalendarUtil.getTimestamp(startDateGT);
61 Timestamp startDateLT_TS = CalendarUtil.getTimestamp(startDateLT);
62
63 Session session = null;
64
65 try {
66 session = HibernateUtil.openSession();
67
68 String sql = CustomSQLUtil.get(FIND_BY_G_SD);
69
70 SQLQuery q = session.createSQLQuery(sql);
71
72 q.addEntity("CalEvent", CalEventImpl.class);
73
74 QueryPos qPos = QueryPos.getInstance(q);
75
76 qPos.add(groupId);
77 qPos.add(startDateGT_TS);
78 qPos.add(startDateLT_TS);
79 qPos.add(timeZoneSensitive);
80 qPos.add(false);
81
82 return q.list();
83 }
84 catch (Exception e) {
85 throw new SystemException(e);
86 }
87 finally {
88 HibernateUtil.closeSession(session);
89 }
90 }
91
92 public List<CalEvent> findByRemindBy() throws SystemException {
93 Session session = null;
94
95 try {
96 session = HibernateUtil.openSession();
97
98 String sql = CustomSQLUtil.get(FIND_BY_REMINDBY);
99
100 SQLQuery q = session.createSQLQuery(sql);
101
102 q.addEntity("CalEvent", CalEventImpl.class);
103
104 QueryPos qPos = QueryPos.getInstance(q);
105
106 qPos.add(CalEventImpl.REMIND_BY_NONE);
107
108 return q.list();
109 }
110 catch (Exception e) {
111 throw new SystemException(e);
112 }
113 finally {
114 HibernateUtil.closeSession(session);
115 }
116 }
117
118 }