1 | |
package org.kuali.rice.kns.datadictionary.validation.constraint; |
2 | |
|
3 | |
import java.util.List; |
4 | |
|
5 | |
import javax.xml.bind.annotation.XmlAccessType; |
6 | |
import javax.xml.bind.annotation.XmlAccessorType; |
7 | |
import javax.xml.bind.annotation.XmlElement; |
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
@XmlAccessorType(XmlAccessType.FIELD) |
16 | 0 | public class LookupConstraintParamMapping { |
17 | |
@XmlElement |
18 | |
protected String fieldPath; |
19 | |
@XmlElement |
20 | |
protected String paramKey; |
21 | |
@XmlElement |
22 | |
protected List<String> defaultValueList; |
23 | |
@XmlElement |
24 | |
protected String defaultValueString; |
25 | |
|
26 | |
public String getFieldPath() { |
27 | 0 | return fieldPath; |
28 | |
} |
29 | |
|
30 | |
public void setFieldPath(String fieldPath) { |
31 | 0 | this.fieldPath = fieldPath; |
32 | 0 | } |
33 | |
|
34 | |
public String getParamKey() { |
35 | 0 | return paramKey; |
36 | |
} |
37 | |
|
38 | |
public void setParamKey(String paramKey) { |
39 | 0 | this.paramKey = paramKey; |
40 | 0 | } |
41 | |
|
42 | |
public List<String> getDefaultValueList() { |
43 | 0 | return defaultValueList; |
44 | |
} |
45 | |
|
46 | |
public void setDefaultValueList(List<String> defaultValueList) { |
47 | 0 | this.defaultValueList = defaultValueList; |
48 | 0 | } |
49 | |
|
50 | |
public String getDefaultValueString() { |
51 | 0 | return defaultValueString; |
52 | |
} |
53 | |
|
54 | |
public void setDefaultValueString(String defaultValueString) { |
55 | 0 | this.defaultValueString = defaultValueString; |
56 | 0 | } |
57 | |
} |