View Javadoc

1   /**
2    * Copyright 2005-2013 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.util.List;
19  
20  /**
21   * This class is a direct copy of one that was in Kuali Student. Look up constraints are currently not implemented.
22   *
23   * @author Kuali Rice Team (rice.collab@kuali.org)
24   * @since 1.1
25   */
26  public class LookupConstraintParamMapping {
27      protected String fieldPath;
28      protected String paramKey;
29      protected List<String> defaultValueList;
30      protected String defaultValueString;
31  
32      public String getFieldPath() {
33          return fieldPath;
34      }
35  
36      public void setFieldPath(String fieldPath) {
37          this.fieldPath = fieldPath;
38      }
39  
40      public String getParamKey() {
41          return paramKey;
42      }
43  
44      public void setParamKey(String paramKey) {
45          this.paramKey = paramKey;
46      }
47  
48      public List<String> getDefaultValueList() {
49          return defaultValueList;
50      }
51  
52      public void setDefaultValueList(List<String> defaultValueList) {
53          this.defaultValueList = defaultValueList;
54      }
55  
56      public String getDefaultValueString() {
57          return defaultValueString;
58      }
59  
60      public void setDefaultValueString(String defaultValueString) {
61          this.defaultValueString = defaultValueString;
62      }
63  }