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