1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.ken.dao.impl; |
18 | |
|
19 | |
import org.apache.log4j.Logger; |
20 | |
import org.kuali.rice.core.framework.persistence.dao.GenericDao; |
21 | |
import org.kuali.rice.core.framework.persistence.jpa.criteria.Criteria; |
22 | |
import org.kuali.rice.core.util.RiceConstants; |
23 | |
import org.kuali.rice.ken.bo.NotificationMessageDelivery; |
24 | |
import org.kuali.rice.ken.dao.NotificationMessegeDeliveryDao; |
25 | |
import org.kuali.rice.ken.util.NotificationConstants; |
26 | |
|
27 | |
import java.sql.Timestamp; |
28 | |
import java.util.Collection; |
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | 0 | public class NotificationMessegeDeliveryDaoJpa implements NotificationMessegeDeliveryDao{ |
37 | |
|
38 | 0 | private static final Logger LOG = Logger.getLogger(NotificationDaoJpa.class); |
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
@Override |
46 | |
public Collection getUndeliveredMessageDelivers(GenericDao businessObjectDao) { |
47 | |
|
48 | |
|
49 | |
|
50 | 0 | Criteria criteria = new Criteria(NotificationMessageDelivery.class.getName()); |
51 | 0 | criteria.eq(NotificationConstants.BO_PROPERTY_NAMES.MESSAGE_DELIVERY_STATUS, NotificationConstants.MESSAGE_DELIVERY_STATUS.UNDELIVERED); |
52 | 0 | criteria.isNull(NotificationConstants.BO_PROPERTY_NAMES.LOCKED_DATE); |
53 | 0 | Collection<NotificationMessageDelivery> messageDeliveries = businessObjectDao.findMatching(NotificationMessageDelivery.class, criteria, true, RiceConstants.NO_WAIT); |
54 | |
|
55 | 0 | return messageDeliveries; |
56 | |
} |
57 | |
|
58 | |
|
59 | |
|
60 | |
|
61 | |
|
62 | |
|
63 | |
@Override |
64 | |
public Collection<NotificationMessageDelivery> getMessageDeliveriesForAutoRemoval(Timestamp tm, GenericDao businessObjectDao) { |
65 | |
|
66 | |
|
67 | |
|
68 | |
|
69 | |
|
70 | 0 | Criteria criteria_STATUS = new Criteria(NotificationMessageDelivery.class.getName()); |
71 | 0 | criteria_STATUS.eq(NotificationConstants.BO_PROPERTY_NAMES.MESSAGE_DELIVERY_STATUS, NotificationConstants.MESSAGE_DELIVERY_STATUS.DELIVERED); |
72 | |
|
73 | 0 | Criteria criteria_UNDELIVERED = new Criteria(NotificationMessageDelivery.class.getName()); |
74 | 0 | criteria_UNDELIVERED.eq(NotificationConstants.BO_PROPERTY_NAMES.MESSAGE_DELIVERY_STATUS, NotificationConstants.MESSAGE_DELIVERY_STATUS.UNDELIVERED); |
75 | |
|
76 | |
|
77 | 0 | criteria_STATUS.or(criteria_UNDELIVERED); |
78 | |
|
79 | 0 | Criteria fullQueryCriteria = new Criteria(NotificationMessageDelivery.class.getName()); |
80 | 0 | fullQueryCriteria.isNull(NotificationConstants.BO_PROPERTY_NAMES.LOCKED_DATE); |
81 | |
|
82 | 0 | fullQueryCriteria.lte(NotificationConstants.BO_PROPERTY_NAMES.NOTIFICATION_AUTO_REMOVE_DATE_TIME, new Timestamp(System.currentTimeMillis())); |
83 | |
|
84 | 0 | fullQueryCriteria.and(criteria_STATUS); |
85 | |
|
86 | 0 | Collection<NotificationMessageDelivery> messageDeliveries = businessObjectDao.findMatching(NotificationMessageDelivery.class, fullQueryCriteria, true, RiceConstants.NO_WAIT); |
87 | |
|
88 | 0 | return messageDeliveries; |
89 | |
} |
90 | |
|
91 | |
|
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
@Override |
97 | |
public Collection<NotificationMessageDelivery> getLockedDeliveries( |
98 | |
Class clazz, GenericDao dao) { |
99 | 0 | Criteria criteria = new Criteria(clazz.getName()); |
100 | 0 | criteria.notNull(NotificationConstants.BO_PROPERTY_NAMES.LOCKED_DATE); |
101 | 0 | Collection<NotificationMessageDelivery> lockedDeliveries = dao.findMatching(clazz, criteria); |
102 | 0 | return null; |
103 | |
} |
104 | |
|
105 | |
|
106 | |
} |