Clover Coverage Report - KS Admin 1.2-M3-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
3   35   3   1
0   23   1   3
3     1  
1    
 
  CluAccounting       Line # 13 3 0% 3 6 0% 0.0
 
No Tests
 
1    package org.kuali.student.lum.lu.bo;
2   
3    import java.util.ArrayList;
4    import java.util.List;
5   
6    import javax.persistence.CascadeType;
7    import javax.persistence.JoinColumn;
8    import javax.persistence.JoinTable;
9    import javax.persistence.ManyToMany;
10   
11    import org.kuali.student.core.bo.KsBusinessObjectBase;
12   
 
13    public class CluAccounting extends KsBusinessObjectBase {
14   
15    private static final long serialVersionUID = -4881851636576178331L;
16   
17    @ManyToMany(cascade=CascadeType.ALL)
18    @JoinTable(name = "KSLU_CLU_ACCT_JN_AFFIL_ORG", joinColumns = @JoinColumn(name = "CLU_ACCT_ID"), inverseJoinColumns = @JoinColumn(name = "AFFIL_ORG_ID"))
19    private List<AffiliatedOrg> affiliatedOrgs;
20   
21   
 
22  0 toggle public CluAccounting() {
23  0 affiliatedOrgs = new ArrayList<AffiliatedOrg>();
24    }
25   
26   
 
27  0 toggle public List<AffiliatedOrg> getAffiliatedOrgs() {
28  0 return affiliatedOrgs;
29    }
30   
 
31  0 toggle public void setAffiliatedOrgs(List<AffiliatedOrg> affiliatedOrgs) {
32  0 this.affiliatedOrgs = affiliatedOrgs;
33    }
34   
35    }