Clover Coverage Report - Kuali Student 1.2-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Mar 3 2011 04:02:59 EST
../../../../../../img/srcFileCovDistChart0.png 51% of files have more coverage
13   111   13   1
0   73   1   13
13     1  
1    
 
  Milestone       Line # 38 13 0% 13 26 0% 0.0
 
No Tests
 
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.core.atp.bo;
17   
18    import java.util.Date;
19   
20    import javax.persistence.Column;
21    import javax.persistence.Entity;
22    import javax.persistence.JoinColumn;
23    import javax.persistence.ManyToOne;
24    import javax.persistence.NamedQueries;
25    import javax.persistence.NamedQuery;
26    import javax.persistence.Table;
27    import javax.persistence.Temporal;
28    import javax.persistence.TemporalType;
29   
30    import org.kuali.student.core.bo.KsTypeStateBusinessObjectBase;
31   
32    @Entity
33    @Table(name = "KSAP_MLSTN")
34    @NamedQueries({
35    @NamedQuery(name = "Milestone.findMilestonesByAtp", query = "SELECT milestone FROM Milestone milestone WHERE milestone.atp.id = :atpId"),
36    @NamedQuery(name = "Milestone.findMilestonesByDates", query = "SELECT milestone FROM Milestone milestone WHERE milestone.milestoneDate >= :startDate AND milestone.milestoneDate <= :endDate"),
37    @NamedQuery(name = "Milestone.findMilestonesByDatesAndType", query = "SELECT milestone FROM Milestone milestone WHERE milestone.type.id = :milestoneTypeId AND milestone.milestoneDate >= :startDate AND milestone.milestoneDate <= :endDate") })
 
38    public class Milestone extends KsTypeStateBusinessObjectBase {
39    private static final long serialVersionUID = 423410094436352921L;
40   
41    @Column(name = "ATP_ID")
42    private String atpId;
43   
44    @ManyToOne
45    @JoinColumn(name = "ATP_ID")
46    private Atp atp;
47   
48    @ManyToOne
49    @JoinColumn(name = "TYPE")
50    private MilestoneType type;
51   
52    @Temporal(TemporalType.TIMESTAMP)
53    @Column(name = "MLSTN_DT")
54    private Date milestoneDate;
55   
56    private String descriptionId;
57   
58    private AtpRichText description;
59   
 
60  0 toggle public Milestone() {
61  0 super();
62    }
63   
 
64  0 toggle public Atp getAtp() {
65  0 return atp;
66    }
67   
 
68  0 toggle public void setAtp(Atp atp) {
69  0 this.atp = atp;
70    }
71   
 
72  0 toggle public Date getMilestoneDate() {
73  0 return milestoneDate;
74    }
75   
 
76  0 toggle public void setMilestoneDate(Date milestoneDate) {
77  0 this.milestoneDate = milestoneDate;
78    }
79   
 
80  0 toggle public String getAtpId() {
81  0 return atpId;
82    }
83   
 
84  0 toggle public void setAtpId(String atpId) {
85  0 this.atpId = atpId;
86    }
87   
 
88  0 toggle public MilestoneType getType() {
89  0 return type;
90    }
91   
 
92  0 toggle public void setType(MilestoneType type) {
93  0 this.type = type;
94    }
95   
 
96  0 toggle public String getDescriptionId() {
97  0 return descriptionId;
98    }
99   
 
100  0 toggle public void setDescriptionId(String descriptionId) {
101  0 this.descriptionId = descriptionId;
102    }
103   
 
104  0 toggle public AtpRichText getDescription() {
105  0 return description;
106    }
107   
 
108  0 toggle public void setDescription(AtpRichText description) {
109  0 this.description = description;
110    }
111    }