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