Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
LookupResultMetadata |
|
| 1.0;1 |
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.common.assembly.data; | |
17 | ||
18 | import java.io.Serializable; | |
19 | ||
20 | 0 | public class LookupResultMetadata implements Serializable { |
21 | ||
22 | private static final long serialVersionUID = 1L; | |
23 | ||
24 | private String key; | |
25 | private String name; | |
26 | private String desc; | |
27 | private Data.DataType dataType; | |
28 | private boolean hidden; | |
29 | ||
30 | public String getName() { | |
31 | 0 | return name; |
32 | } | |
33 | ||
34 | public void setName(String name) { | |
35 | 0 | this.name = name; |
36 | 0 | } |
37 | ||
38 | public String getDesc() { | |
39 | 0 | return desc; |
40 | } | |
41 | ||
42 | public void setDesc(String desc) { | |
43 | 0 | this.desc = desc; |
44 | 0 | } |
45 | ||
46 | public Data.DataType getDataType() { | |
47 | 0 | return dataType; |
48 | } | |
49 | ||
50 | public void setDataType(Data.DataType dataType) { | |
51 | 0 | this.dataType = dataType; |
52 | 0 | } |
53 | ||
54 | public String getKey() { | |
55 | 0 | return key; |
56 | } | |
57 | ||
58 | public void setKey(String key) { | |
59 | 0 | this.key = key; |
60 | 0 | } |
61 | ||
62 | public boolean isHidden() { | |
63 | 0 | return hidden; |
64 | } | |
65 | ||
66 | public void setHidden(boolean hidden) { | |
67 | 0 | this.hidden = hidden; |
68 | 0 | } |
69 | ||
70 | } |