Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
SourceTypeInfo |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2009 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 1.0 (the "License"); | |
5 | * you may not use this file except in compliance with the License. | |
6 | * You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.opensource.org/licenses/ecl1.php | |
9 | * | |
10 | * Unless required by applicable law or agreed to in writing, software | |
11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | package org.kuali.student.enrollment.lrr.dto; | |
17 | ||
18 | import java.io.Serializable; | |
19 | import java.util.Date; | |
20 | ||
21 | import javax.xml.bind.annotation.XmlAccessType; | |
22 | import javax.xml.bind.annotation.XmlAccessorType; | |
23 | import javax.xml.bind.annotation.XmlAttribute; | |
24 | import javax.xml.bind.annotation.XmlElement; | |
25 | ; | |
26 | ||
27 | ||
28 | /** | |
29 | * Information about a single source type. | |
30 | * | |
31 | * @Author KSContractMojo | |
32 | * @Author sambit | |
33 | * @Since Wed May 04 15:34:11 PDT 2011 | |
34 | * @See <a href="https://wiki.kuali.org/display/KULSTU/sourceTypeInfo+Structure">SourceTypeInfo</a> | |
35 | * | |
36 | */ | |
37 | @XmlAccessorType(XmlAccessType.FIELD) | |
38 | 0 | public class SourceTypeInfo implements Serializable { |
39 | ||
40 | private static final long serialVersionUID = 1L; | |
41 | ||
42 | @XmlElement | |
43 | private String name; | |
44 | ||
45 | @XmlElement | |
46 | private String desc; | |
47 | ||
48 | @XmlElement | |
49 | private Date effectiveDate; | |
50 | ||
51 | @XmlElement | |
52 | private Date expirationDate; | |
53 | ||
54 | ||
55 | @XmlAttribute(name="key") | |
56 | private String id; | |
57 | ||
58 | /** | |
59 | * Friendly name of the source type | |
60 | */ | |
61 | public String getName() { | |
62 | 0 | return name; |
63 | } | |
64 | ||
65 | public void setName(String name) { | |
66 | 0 | this.name = name; |
67 | 0 | } |
68 | ||
69 | /** | |
70 | * Narrative description of the source type | |
71 | */ | |
72 | public String getDesc() { | |
73 | 0 | return desc; |
74 | } | |
75 | ||
76 | public void setDesc(String desc) { | |
77 | 0 | this.desc = desc; |
78 | 0 | } |
79 | ||
80 | /** | |
81 | * Date and time that this source type 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. | |
82 | */ | |
83 | public Date getEffectiveDate() { | |
84 | 0 | return effectiveDate; |
85 | } | |
86 | ||
87 | public void setEffectiveDate(Date effectiveDate) { | |
88 | 0 | this.effectiveDate = effectiveDate; |
89 | 0 | } |
90 | ||
91 | /** | |
92 | * Date and time that this source type expires. This is a similar concept to the expiration date on enumerated values. If specified, this should 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. | |
93 | */ | |
94 | public Date getExpirationDate() { | |
95 | 0 | return expirationDate; |
96 | } | |
97 | ||
98 | public void setExpirationDate(Date expirationDate) { | |
99 | 0 | this.expirationDate = expirationDate; |
100 | 0 | } |
101 | ||
102 | ||
103 | /** | |
104 | * Unique identifier for the type of source for an academic record style record. | |
105 | */ | |
106 | public String getId() { | |
107 | 0 | return id; |
108 | } | |
109 | ||
110 | public void setId(String id) { | |
111 | 0 | this.id = id; |
112 | 0 | } |
113 | } |