Clover Coverage Report - Kuali Student 1.2-M1-SNAPSHOT (Aggregated)
Coverage timestamp: Fri Mar 4 2011 04:03:38 EST
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
21   180   20   1.11
2   95   0.95   19
19     1.05  
1    
 
  CluResultInfo       Line # 43 21 0% 20 2 95.2% 0.95238096
 
  (29)
 
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.lu.dto;
17   
18    import java.io.Serializable;
19    import java.util.ArrayList;
20    import java.util.Date;
21    import java.util.List;
22   
23    import javax.xml.bind.annotation.XmlAccessType;
24    import javax.xml.bind.annotation.XmlAccessorType;
25    import javax.xml.bind.annotation.XmlAttribute;
26    import javax.xml.bind.annotation.XmlElement;
27   
28    import org.kuali.student.common.dto.HasTypeState;
29    import org.kuali.student.common.dto.Idable;
30    import org.kuali.student.common.dto.MetaInfo;
31    import org.kuali.student.common.dto.RichTextInfo;
32   
33    /**
34    * Information about a CLU result.
35    *
36    * @Author KSContractMojo
37    * @Author Kamal
38    * @Since Mon Jan 11 15:21:27 PST 2010
39    * @See <a href="https://test.kuali.org/confluence/display/KULSTU/cluResultInfo+Structure+v1.0-rc4">CluResultInfo v1.0-rc4</>
40    *
41    */
42    @XmlAccessorType(XmlAccessType.FIELD)
 
43    public class CluResultInfo implements Serializable, Idable, HasTypeState {
44   
45    private static final long serialVersionUID = 1L;
46   
47    @XmlElement
48    private RichTextInfo desc;
49   
50    @XmlElement
51    private String cluId;
52   
53    @XmlElement
54    private List<ResultOptionInfo> resultOptions;
55   
56    @XmlElement
57    private Date effectiveDate;
58   
59    @XmlElement
60    private Date expirationDate;
61   
62    @XmlElement
63    private MetaInfo metaInfo;
64   
65    @XmlAttribute
66    private String type;
67   
68    @XmlAttribute
69    private String state;
70   
71    @XmlAttribute
72    private String id;
73   
74    /**
75    * Narrative description of the CLU result.
76    */
 
77  120 toggle public RichTextInfo getDesc() {
78  120 return desc;
79    }
80   
 
81  285 toggle public void setDesc(RichTextInfo desc) {
82  285 this.desc = desc;
83    }
84   
85    /**
86    * The cluId to which the CLU Result is linked. Unique identifier for a Canonical Learning Unit (CLU).
87    */
 
88  94 toggle public String getCluId() {
89  94 return cluId;
90    }
91   
 
92  420 toggle public void setCluId(String cluId) {
93  420 this.cluId = cluId;
94    }
95   
96    /**
97    * List of learning result option information.
98    */
 
99  421 toggle public List<ResultOptionInfo> getResultOptions() {
100  421 if (resultOptions == null) {
101  49 resultOptions = new ArrayList<ResultOptionInfo>(0);
102    }
103  421 return resultOptions;
104    }
105   
 
106  303 toggle public void setResultOptions(List<ResultOptionInfo> resultOptions) {
107  303 this.resultOptions = resultOptions;
108    }
109   
110    /**
111    * Date and time that this CLU result became effective. This is a similar concept to the effective date on enumerated values. When an expiration date has been specified, this field must be less than or equal to the expiration date.
112    */
 
113  119 toggle public Date getEffectiveDate() {
114  119 return effectiveDate;
115    }
116   
 
117  285 toggle public void setEffectiveDate(Date effectiveDate) {
118  285 this.effectiveDate = effectiveDate;
119    }
120   
121    /**
122    * Date and time that this CLU result expires. This is a similar concept to the expiration date on enumerated values. If specified, this must be greater than or equal to the effective date. If this field is not specified, then no expiration date has been currently defined and should automatically be considered greater than the effective date.
123    */
 
124  119 toggle public Date getExpirationDate() {
125  119 return expirationDate;
126    }
127   
 
128  245 toggle public void setExpirationDate(Date expirationDate) {
129  245 this.expirationDate = expirationDate;
130    }
131   
132    /**
133    * Create and last update info for the structure. This is optional and treated as read only since the data is set by the internals of the service during maintenance operations.
134    */
 
135  26 toggle public MetaInfo getMetaInfo() {
136  26 return metaInfo;
137    }
138   
 
139  241 toggle public void setMetaInfo(MetaInfo metaInfo) {
140  241 this.metaInfo = metaInfo;
141    }
142   
143    /**
144    * Unique identifier for a clu learning result object type.
145    */
 
146  294 toggle public String getType() {
147  294 return type;
148    }
149   
 
150  420 toggle public void setType(String type) {
151  420 this.type = type;
152    }
153   
154    /**
155    * The current status of the CLU Result. The values for this field are constrained to those in the cluResultState enumeration. A separate setup operation does not exist for retrieval of the meta data around this value.
156    */
 
157  117 toggle public String getState() {
158  117 return state;
159    }
160   
 
161  331 toggle public void setState(String state) {
162  331 this.state = state;
163    }
164   
165    /**
166    * Unique identifier for a CLU result. This is optional, due to the identifier being set at the time of creation. Once the result set has been created, this should be seen as required.
167    */
 
168  39 toggle public String getId() {
169  39 return id;
170    }
171   
 
172  241 toggle public void setId(String id) {
173  241 this.id = id;
174    }
175   
 
176  0 toggle @Override
177    public String toString() {
178  0 return "CluResultInfo[id=" + id + ", cluId=" + cluId + ", type=" + type + "]";
179    }
180    }