Coverage Report - org.kuali.student.r2.core.class1.organization.dao.OrgPersonRelationDao
 
Classes in this File Line Coverage Branch Coverage Complexity
OrgPersonRelationDao
0%
0/6
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.r2.core.class1.organization.dao;
 17  
 
 18  
 import java.util.List;
 19  
 
 20  
 import org.kuali.student.core.organization.entity.OrgPersonRelation;
 21  
 import org.kuali.student.enrollment.dao.GenericEntityDao;
 22  
 
 23  
 /**
 24  
  * Enumeration Dao class.
 25  
  *
 26  
  * @Version 2.0
 27  
  */
 28  0
 public class OrgPersonRelationDao extends GenericEntityDao<OrgPersonRelation> {
 29  
 
 30  
     @SuppressWarnings("unchecked")
 31  
     public List<OrgPersonRelation> getOrgPersonRelationsByTypeAndOrg(String orgPersonRelationTypeKey, String orgId) {
 32  0
         return em.createQuery("from OrgPersonRelation r where r.orgPersonRelationType.id = :orgPersonRelationTypeKey and" +
 33  
                         " r.org.id = :orgId")
 34  
                 .setParameter("orgPersonRelationTypeKey", orgPersonRelationTypeKey).setParameter("orgId", orgId).getResultList();
 35  
     }
 36  
     
 37  
     @SuppressWarnings("unchecked")
 38  
     public List<OrgPersonRelation> getOrgPersonRelationsByPerson(String personId) {
 39  0
         return em.createQuery("from OrgPersonRelation r where r.personId = :personId")
 40  
                 .setParameter("personId", personId).getResultList();
 41  
     }
 42  
     
 43  
     @SuppressWarnings("unchecked")
 44  
     public List<OrgPersonRelation> getOrgPersonRelationsByTypeAndPerson(String orgPersonRelationTypeKey, String personId) {
 45  0
         return em.createQuery("from OrgPersonRelation r where r.orgPersonRelationType.id = :orgPersonRelationTypeKey and" +
 46  
                 " r.personId = :personId")
 47  
                 .setParameter("orgPersonRelationTypeKey", orgPersonRelationTypeKey).setParameter("personId", personId).getResultList();
 48  
     }
 49  
     
 50  
     @SuppressWarnings("unchecked")
 51  
     public List<OrgPersonRelation> getOrgPersonRelationsByOrgAndPerson(String orgId, String personId) {
 52  0
         return em.createQuery("from OrgPersonRelation r where r.org.id = :orgId and r.personId = :personId")
 53  
                 .setParameter("orgId", orgId).setParameter("personId", personId).getResultList();
 54  
     }
 55  
     
 56  
     @SuppressWarnings("unchecked")
 57  
     public List<OrgPersonRelation> getOrgPersonRelationsByTypeAndOrgAndPerson(String orgPersonRelationTypeKey, String orgId, String personId) {
 58  0
         return em.createQuery("from OrgPersonRelation r where r.orgPersonRelationType.id = :orgPersonRelationTypeKey and" +
 59  
                 " r.org.id = :orgId and r.personId = :personId")
 60  
                 .setParameter("orgPersonRelationTypeKey", orgPersonRelationTypeKey).setParameter("orgId", orgId)
 61  
                 .setParameter("personId", personId).getResultList();
 62  
     }
 63  
     
 64  
     
 65  
 }