1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.r2.lum.lo.dao;
17
18 import java.util.List;
19
20 import org.kuali.student.r1.common.dao.CrudDao;
21 import org.kuali.student.r1.common.dao.SearchableDao;
22 import org.kuali.student.r2.common.exceptions.DependentObjectsExistException;
23 import org.kuali.student.r2.common.exceptions.DoesNotExistException;
24 import org.kuali.student.r2.common.exceptions.UnsupportedActionException;
25 import org.kuali.student.r2.lum.lo.entity.Lo;
26 import org.kuali.student.r2.lum.lo.entity.LoCategory;
27 import org.kuali.student.r2.lum.lo.entity.LoLoRelation;
28 import org.kuali.student.r2.lum.lo.entity.LoCategory;
29 import org.kuali.student.r2.lum.lo.entity.LoLoRelation;
30
31 public interface LoDao extends CrudDao, SearchableDao {
32 public List<Lo> getLoByIdList(List<String> loIds);
33 public List<Lo> getLosByLoCategory(String loCategoryId);
34 public List<LoCategory> getLoCategories(String loHierarchyKey);
35 public boolean addLoCategoryToLo(String loCategoryId, String loId) throws UnsupportedActionException, DoesNotExistException,UnsupportedActionException;
36 public boolean removeLoCategoryFromLo(String loCategoryId, String loId) throws DoesNotExistException;
37 public boolean deleteLoCategory(String loCategoryId) throws DoesNotExistException, DependentObjectsExistException;
38 public boolean deleteLo(String loId) throws DoesNotExistException, DependentObjectsExistException;
39 public List<Lo> getRelatedLosByLoId(String loId, String loLoRelationTypeId) throws DoesNotExistException;
40 public List<Lo> getLosByRelatedLoId(String relatedLoId, String loLoRelationTypeId) throws DoesNotExistException;
41 public void deleteLoLoRelation(String loLoRelationId) throws DoesNotExistException;
42 public List<LoCategory> getLoCategoriesForLo(String loId);
43 public List<String> getAllowedLoLoRelationTypesForLoType(String loTypeKey, String relatedLoTypeKey);
44 public List<Lo> getLosByRepository(String loRepositoryId);
45 public List<LoLoRelation> getLoLoRelationsByLoId(String loId);
46 }