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