1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.kns.dao.impl; |
17 |
|
|
18 |
|
import java.sql.Timestamp; |
19 |
|
|
20 |
|
import org.apache.ojb.broker.query.Criteria; |
21 |
|
import org.apache.ojb.broker.query.QueryFactory; |
22 |
|
import org.kuali.rice.kns.bo.LookupResults; |
23 |
|
import org.kuali.rice.kns.bo.SelectedObjectIds; |
24 |
|
import org.kuali.rice.kns.dao.PersistedLookupMetadataDao; |
25 |
|
import org.kuali.rice.kns.util.KNSPropertyConstants; |
26 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
27 |
|
public class PersistedLookupMetadataDaoOjb extends PlatformAwareDaoBaseOjb implements PersistedLookupMetadataDao { |
28 |
|
private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(PersistedLookupMetadataDaoOjb.class); |
29 |
|
|
30 |
|
|
31 |
|
@see |
32 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
33 |
0
|
public void deleteOldLookupResults(Timestamp expirationDate) {... |
34 |
0
|
Criteria criteria = new Criteria(); |
35 |
0
|
criteria.addLessThan(KNSPropertyConstants.LOOKUP_DATE, expirationDate); |
36 |
0
|
getPersistenceBrokerTemplate().deleteByQuery(QueryFactory.newQuery(LookupResults.class, criteria)); |
37 |
|
} |
38 |
|
|
39 |
|
|
40 |
|
@see |
41 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
42 |
0
|
public void deleteOldSelectedObjectIds(Timestamp expirationDate) {... |
43 |
0
|
Criteria criteria = new Criteria(); |
44 |
0
|
criteria.addLessThan(KNSPropertyConstants.LOOKUP_DATE, expirationDate); |
45 |
0
|
getPersistenceBrokerTemplate().deleteByQuery(QueryFactory.newQuery(SelectedObjectIds.class, criteria)); |
46 |
|
} |
47 |
|
} |