Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Type |
|
| 1.04;1.04 |
1 | /* | |
2 | * Copyright 2009 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 2.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.osedu.org/licenses/ECL-2.0 | |
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.contract.model; | |
17 | ||
18 | import java.io.Serializable; | |
19 | import java.util.Date; | |
20 | import java.util.LinkedHashMap; | |
21 | import java.util.Map; | |
22 | ||
23 | /** | |
24 | * Models the type object in the spreadsheets | |
25 | * @author nwright | |
26 | */ | |
27 | public class Type implements Serializable { | |
28 | ||
29 | public static final String GROUPING = "Grouping"; | |
30 | public static final String DEFAULT = "(default)"; | |
31 | ||
32 | 0 | public Type() { |
33 | 0 | } |
34 | private String name; | |
35 | ||
36 | /** | |
37 | * Get the value of name | |
38 | * | |
39 | * @return the value of name | |
40 | */ | |
41 | public String getName() { | |
42 | 0 | return name; |
43 | } | |
44 | ||
45 | /** | |
46 | * Set the value of name | |
47 | * | |
48 | * @param name new value of name | |
49 | */ | |
50 | public void setName(String name) { | |
51 | 0 | this.name = name; |
52 | 0 | } |
53 | private String desc; | |
54 | ||
55 | /** | |
56 | * Get the value of desc | |
57 | * | |
58 | * @return the value of desc | |
59 | */ | |
60 | public String getDesc() { | |
61 | 0 | return desc; |
62 | } | |
63 | ||
64 | /** | |
65 | * Set the value of desc | |
66 | * | |
67 | * @param desc new value of desc | |
68 | */ | |
69 | public void setDesc(String desc) { | |
70 | 0 | this.desc = desc; |
71 | 0 | } |
72 | private String xmlObject; | |
73 | ||
74 | /** | |
75 | * Get the value of xmlObject | |
76 | * | |
77 | * @return the value of xmlObject | |
78 | */ | |
79 | public String getXmlObject() { | |
80 | 0 | return xmlObject; |
81 | } | |
82 | ||
83 | /** | |
84 | * Set the value of xmlObject | |
85 | * | |
86 | * @param xmlObject new value of xmlObject | |
87 | */ | |
88 | public void setXmlObject(String xmlObject) { | |
89 | 0 | this.xmlObject = xmlObject; |
90 | 0 | } |
91 | private String primitive; | |
92 | ||
93 | /** | |
94 | * Get the value of primitive | |
95 | * | |
96 | * @return the value of primitive | |
97 | */ | |
98 | public String getPrimitive() { | |
99 | 0 | return primitive; |
100 | } | |
101 | ||
102 | /** | |
103 | * Set the value of primitive | |
104 | * | |
105 | * @param xmlTypeDesc new value of primitive | |
106 | */ | |
107 | public void setPrimitive(String primitive) { | |
108 | 0 | this.primitive = primitive; |
109 | 0 | } |
110 | private boolean include; | |
111 | ||
112 | /** | |
113 | * Get the value of include | |
114 | * | |
115 | * @return the value of include | |
116 | */ | |
117 | public boolean getInclude() { | |
118 | 0 | return include; |
119 | } | |
120 | ||
121 | /** | |
122 | * Set the value of include | |
123 | * | |
124 | * @param include new value of include | |
125 | */ | |
126 | public void setInclude(boolean include) { | |
127 | 0 | this.include = include; |
128 | 0 | } |
129 | private String typeKey; | |
130 | ||
131 | /** | |
132 | * Get the value of typeKey | |
133 | * | |
134 | * @return the value of typeKey | |
135 | */ | |
136 | public String getTypeKey() { | |
137 | 0 | return typeKey; |
138 | } | |
139 | ||
140 | /** | |
141 | * Set the value of typeKey | |
142 | * | |
143 | * @param typeKey new value of typeKey | |
144 | */ | |
145 | public void setTypeKey(String typeKey) { | |
146 | 0 | this.typeKey = typeKey; |
147 | 0 | } |
148 | private String aliases; | |
149 | ||
150 | /** | |
151 | * Get the value of aliases | |
152 | * | |
153 | * @return the value of aliases | |
154 | */ | |
155 | public String getAliases() { | |
156 | 0 | return aliases; |
157 | } | |
158 | ||
159 | /** | |
160 | * Set the value of aliases | |
161 | * | |
162 | * @param aliases new value of aliases | |
163 | */ | |
164 | public void setAliases(String aliases) { | |
165 | 0 | this.aliases = aliases; |
166 | 0 | } |
167 | private String status; | |
168 | ||
169 | /** | |
170 | * Get the value of status | |
171 | * | |
172 | * @return the value of status | |
173 | */ | |
174 | public String getStatus() { | |
175 | 0 | return status; |
176 | } | |
177 | ||
178 | /** | |
179 | * Set the value of status | |
180 | * | |
181 | * @param status new value of status | |
182 | */ | |
183 | public void setStatus(String status) { | |
184 | 0 | this.status = status; |
185 | 0 | } |
186 | private String comments; | |
187 | ||
188 | /** | |
189 | * Get the value of comments | |
190 | * | |
191 | * @return the value of comments | |
192 | */ | |
193 | public String getComments() { | |
194 | 0 | return comments; |
195 | } | |
196 | ||
197 | /** | |
198 | * Set the value of comments | |
199 | * | |
200 | * @param comments new value of comments | |
201 | */ | |
202 | public void setComments(String comments) { | |
203 | 0 | this.comments = comments; |
204 | 0 | } |
205 | private Map<String, String> attributes; | |
206 | ||
207 | public Map<String, String> getAttributes() { | |
208 | 0 | if (attributes == null) { |
209 | 0 | attributes = new LinkedHashMap(); |
210 | } | |
211 | 0 | return attributes; |
212 | } | |
213 | ||
214 | public void setAttributes(Map<String, String> attributes) { | |
215 | 0 | this.attributes = attributes; |
216 | 0 | } |
217 | private Date effectiveDate; | |
218 | ||
219 | public Date getEffectiveDate() { | |
220 | 0 | return effectiveDate; |
221 | } | |
222 | ||
223 | public void setEffectiveDate(Date effectiveDate) { | |
224 | 0 | this.effectiveDate = effectiveDate; |
225 | 0 | } |
226 | private Date expirationDate; | |
227 | ||
228 | public Date getExpirationDate() { | |
229 | 0 | return expirationDate; |
230 | } | |
231 | ||
232 | public void setExpirationDate(Date expirationDate) { | |
233 | 0 | this.expirationDate = expirationDate; |
234 | 0 | } |
235 | } |