View Javadoc

1   /**
2    * Copyright 2005-2012 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.opensource.org/licenses/ecl2.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.rice.krad.datadictionary.validation.constraint;
17  
18  import java.io.Serializable;
19  import java.util.List;
20  
21  
22  /**
23   * This class is a direct copy of one that was in Kuali Student. Look up constraints are currently not implemented. 
24   * 
25   * @author Kuali Rice Team (rice.collab@kuali.org)
26   * @since 1.1
27   */
28  public class CommonLookup implements Serializable {
29  
30  	private static final long serialVersionUID = 1L;
31  
32  	private String id; // unique ID of this lookup
33  	private String name; // name of this search
34  	private String desc;
35  	private String searchTypeId;
36  	private String resultReturnKey;
37      private String searchParamIdKey;
38  	private List<CommonLookupParam> params;
39  
40  	public String getSearchTypeId() {
41  		return searchTypeId;
42  	}
43  
44  	public void setSearchTypeId(String searchTypeId) {
45  		this.searchTypeId = searchTypeId;
46  	}
47  
48  	public String getResultReturnKey() {
49  		return resultReturnKey;
50  	}
51  
52  	public void setResultReturnKey(String resultReturnKey) {
53  		this.resultReturnKey = resultReturnKey;
54  	}
55  
56  	public List<CommonLookupParam> getParams() {
57  		return params;
58  	}
59  
60  	public void setParams(List<CommonLookupParam> params) {
61  		this.params = params;
62  	}
63  
64  	public String getId() {
65  		return id;
66  	}
67  
68  	public void setId(String id) {
69  		this.id = id;
70  	}
71  
72  	public String getName() {
73  		return name;
74  	}
75  
76  	public void setName(String name) {
77  		this.name = name;
78  	}
79  
80  	public String getDesc() {
81  		return desc;
82  	}
83  
84  	public void setDesc(String desc) {
85  		this.desc = desc;
86  	}
87  
88  	public String getSearchParamIdKey() {
89  		return searchParamIdKey;
90  	}
91  
92  	public void setSearchParamIdKey(String searchParamIdKey) {
93  		this.searchParamIdKey = searchParamIdKey;
94  	}
95  
96  }