Clover Coverage Report - Kuali Student 1.2-M6-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Sep 12 2011 05:03:53 EDT
../../../../../../img/srcFileCovDistChart0.png 42% of files have more coverage
12   88   12   1
0   63   1   12
12     1  
1    
 
  CluFeeRecord       Line # 15 12 0% 12 24 0% 0.0
 
No Tests
 
1    package org.kuali.student.lum.lu.bo;
2   
3    import java.util.List;
4   
5    import javax.persistence.CascadeType;
6    import javax.persistence.Column;
7    import javax.persistence.JoinColumn;
8    import javax.persistence.JoinTable;
9    import javax.persistence.ManyToMany;
10    import javax.persistence.OneToMany;
11    import javax.persistence.OneToOne;
12   
13    import org.kuali.student.core.bo.KsMetaBusinessObjectBase;
14   
 
15    public class CluFeeRecord extends KsMetaBusinessObjectBase {
16   
17    private static final long serialVersionUID = 2893683769874687020L;
18   
19    @Column(name = "FEE_TYPE")
20    private String feeType;
21   
22    @Column(name = "RATE_TYPE")
23    private String rateType;
24   
25    private String descriptionId;
26   
27    @OneToOne(cascade=CascadeType.ALL)
28    @JoinColumn(name = "RT_DESCR_ID")
29    private LuRichText description;
30   
31    @OneToMany(cascade = CascadeType.ALL)
32    @JoinColumn(name= "CLUE_FEE_REC_ID")
33    private List<CluFeeAmount> feeAmounts;
34   
35    @ManyToMany(cascade=CascadeType.ALL)
36    @JoinTable(name = "KSLU_CLU_FEEREC_JN_AFFIL_ORG", joinColumns = @JoinColumn(name = "CLU_FEE_REC_ID"), inverseJoinColumns = @JoinColumn(name = "AFFIL_ORG_ID"))
37    private List<AffiliatedOrg> affiliatedOrgs;
38   
39   
 
40  0 toggle public String getFeeType() {
41  0 return feeType;
42    }
43   
 
44  0 toggle public void setFeeType(String feeType) {
45  0 this.feeType = feeType;
46    }
47   
 
48  0 toggle public String getRateType() {
49  0 return rateType;
50    }
51   
 
52  0 toggle public void setRateType(String rateType) {
53  0 this.rateType = rateType;
54    }
55   
 
56  0 toggle public String getDescriptionId() {
57  0 return descriptionId;
58    }
59   
 
60  0 toggle public void setDescriptionId(String descriptionId) {
61  0 this.descriptionId = descriptionId;
62    }
63   
 
64  0 toggle public LuRichText getDescription() {
65  0 return description;
66    }
67   
 
68  0 toggle public void setDescription(LuRichText description) {
69  0 this.description = description;
70    }
71   
 
72  0 toggle public List<CluFeeAmount> getFeeAmounts() {
73  0 return feeAmounts;
74    }
75   
 
76  0 toggle public void setFeeAmounts(List<CluFeeAmount> feeAmounts) {
77  0 this.feeAmounts = feeAmounts;
78    }
79   
 
80  0 toggle public List<AffiliatedOrg> getAffiliatedOrgs() {
81  0 return affiliatedOrgs;
82    }
83   
 
84  0 toggle public void setAffiliatedOrgs(List<AffiliatedOrg> affiliatedOrgs) {
85  0 this.affiliatedOrgs = affiliatedOrgs;
86    }
87   
88    }