Clover Coverage Report - Kuali Student 1.1.0-M10-SNAPSHOT (Aggregated)
Coverage timestamp: Fri Dec 17 2010 05:04:51 EST
../../../../../../img/srcFileCovDistChart5.png 46% of files have more coverage
14   166   14   1
0   80   1   14
14     1  
1    
 
  LoRepository       Line # 40 14 0% 14 14 50% 0.5
 
  (3)
 
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.lum.lo.entity;
17   
18    import java.util.Date;
19    import java.util.List;
20   
21    import javax.persistence.CascadeType;
22    import javax.persistence.Column;
23    import javax.persistence.Entity;
24    import javax.persistence.JoinColumn;
25    import javax.persistence.ManyToOne;
26    import javax.persistence.OneToMany;
27    import javax.persistence.OneToOne;
28    import javax.persistence.Table;
29    import javax.persistence.Temporal;
30    import javax.persistence.TemporalType;
31   
32    import org.kuali.student.core.entity.AttributeOwner;
33    import org.kuali.student.core.entity.MetaEntity;
34   
35    /**
36    * @author Kuali Student Team
37    */
38    @Entity
39    @Table(name = "KSLO_LO_REPOSITORY")
 
40    public class LoRepository extends MetaEntity implements AttributeOwner<LoRepositoryAttribute> {
41   
42    @Column(name = "NAME")
43    private String name;
44   
45    @ManyToOne(cascade = CascadeType.ALL)
46    @JoinColumn(name = "RT_DESCR_ID")
47    private LoRichText descr;
48   
49    @OneToOne
50    @JoinColumn(name = "LO_ROOT_ID")
51    private Lo rootLo;
52   
53    @Temporal(TemporalType.TIMESTAMP)
54    @Column(name = "EFF_DT")
55    private Date effectiveDate;
56   
57    @Temporal(TemporalType.TIMESTAMP)
58    @Column(name = "EXPIR_DT")
59    private Date expirationDate;
60   
61    @OneToMany(cascade = CascadeType.ALL, mappedBy = "loRepository")
62    private List<LoCategory> categories;
63   
64    @OneToMany(cascade = CascadeType.ALL, mappedBy = "owner")
65    private List<LoRepositoryAttribute> attributes;
66   
67    /**
68    * @param descr the descr to set
69    */
 
70  0 toggle public void setDescr(LoRichText descr) {
71  0 this.descr = descr;
72    }
73   
74    /**
75    * @return the descr
76    */
 
77  4 toggle public LoRichText getDescr() {
78  4 return descr;
79    }
80   
81    /**
82    * @param rootLo the rootLo to set
83    */
 
84  4 toggle public void setRootLo(Lo rootLo) {
85  4 this.rootLo = rootLo;
86    }
87   
88    /**
89    * @return the rootLo
90    */
 
91  4 toggle public Lo getRootLo() {
92  4 return rootLo;
93    }
94   
95    /**
96    * @param effectiveDate the effectiveDate to set
97    */
 
98  0 toggle public void setEffectiveDate(Date effectiveDate) {
99  0 this.effectiveDate = effectiveDate;
100    }
101   
102    /**
103    * @return the effectiveDate
104    */
 
105  4 toggle public Date getEffectiveDate() {
106  4 return effectiveDate;
107    }
108   
109    /**
110    * @param expirationDate the expirationDate to set
111    */
 
112  0 toggle public void setExpirationDate(Date expirationDate) {
113  0 this.expirationDate = expirationDate;
114    }
115   
116    /**
117    * @return the expirationDate
118    */
 
119  4 toggle public Date getExpirationDate() {
120  4 return expirationDate;
121    }
122   
123    /**
124    * @param categories the categories to set
125    */
 
126  0 toggle public void setCategories(List<LoCategory> categories) {
127  0 this.categories = categories;
128    }
129   
130    /**
131    * @return the categories
132    */
 
133  0 toggle public List<LoCategory> getCategories() {
134  0 return categories;
135    }
136   
137    /* (non-Javadoc)
138    * @see org.kuali.student.core.entity.AttributeOwner#getAttributes()
139    */
 
140  4 toggle @Override
141    public List<LoRepositoryAttribute> getAttributes() {
142  4 return attributes;
143    }
144   
145    /* (non-Javadoc)
146    * @see org.kuali.student.core.entity.AttributeOwner#setAttributes(java.util.List)
147    */
 
148  0 toggle @Override
149    public void setAttributes(List<LoRepositoryAttribute> attributes) {
150  0 this.attributes = attributes;
151    }
152   
153    /**
154    * @param name the name to set
155    */
 
156  0 toggle public void setName(String name) {
157  0 this.name = name;
158    }
159   
160    /**
161    * @return the name
162    */
 
163  5 toggle public String getName() {
164  5 return name;
165    }
166    }