1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.kuali.student.enrollment.class2.courseoffering.dao;
19
20 import org.kuali.student.r2.common.dao.GenericEntityDao;
21 import org.kuali.student.enrollment.class2.courseoffering.model.ActivityOfferingClusterEntity;
22
23 import java.util.List;
24
25
26
27
28
29
30 public class ActivityOfferingClusterDao
31 extends GenericEntityDao<ActivityOfferingClusterEntity>
32 implements ActivityOfferingClusterDaoApi {
33
34 @Override
35 public List<ActivityOfferingClusterEntity> getByFormatOffering(String formatOfferingId) {
36 return em.createQuery("from ActivityOfferingClusterEntity a where a.formatOfferingId=:formatOfferingId").setParameter("formatOfferingId", formatOfferingId)
37 .getResultList();
38 }
39
40 @Override
41 public List<String> getActivityOfferingIdsByClusterId(String activityOfferingClusterId) {
42 return em.createQuery("SELECT ids from ActivityOfferingClusterEntity a, IN(a.aoSets) aosets, IN(aosets.aoIds) ids where a.id=:activityOfferingClusterId").setParameter("activityOfferingClusterId", activityOfferingClusterId)
43 .getResultList();
44 }
45 }