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