View Javadoc

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  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  		return name;
32  	}
33  
34  	public void setName(String name) {
35  		this.name = name;
36  	}
37  
38  	public String getDesc() {
39  		return desc;
40  	}
41  
42  	public void setDesc(String desc) {
43  		this.desc = desc;
44  	}
45  
46  	public Data.DataType getDataType() {
47  		return dataType;
48  	}
49  
50  	public void setDataType(Data.DataType dataType) {
51  		this.dataType = dataType;
52  	}
53  
54  	public String getKey() {
55  		return key;
56  	}
57  
58  	public void setKey(String key) {
59  		this.key = key;
60  	}
61  
62  	public boolean isHidden() {
63  		return hidden;
64  	}
65  
66  	public void setHidden(boolean hidden) {
67  		this.hidden = hidden;
68  	}
69  
70  }