| 1 | |
package org.kuali.student.common.dictionary.dto; |
| 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 | |
@XmlAccessorType(XmlAccessType.FIELD) |
| 10 | 0 | public class LookupConstraintParamMapping { |
| 11 | |
@XmlElement |
| 12 | |
protected String fieldPath; |
| 13 | |
@XmlElement |
| 14 | |
protected String paramKey; |
| 15 | |
@XmlElement |
| 16 | |
protected List<String> defaultValueList; |
| 17 | |
@XmlElement |
| 18 | |
protected String defaultValueString; |
| 19 | |
|
| 20 | |
public String getFieldPath() { |
| 21 | 0 | return fieldPath; |
| 22 | |
} |
| 23 | |
|
| 24 | |
public void setFieldPath(String fieldPath) { |
| 25 | 0 | this.fieldPath = fieldPath; |
| 26 | 0 | } |
| 27 | |
|
| 28 | |
public String getParamKey() { |
| 29 | 0 | return paramKey; |
| 30 | |
} |
| 31 | |
|
| 32 | |
public void setParamKey(String paramKey) { |
| 33 | 0 | this.paramKey = paramKey; |
| 34 | 0 | } |
| 35 | |
|
| 36 | |
public List<String> getDefaultValueList() { |
| 37 | 0 | return defaultValueList; |
| 38 | |
} |
| 39 | |
|
| 40 | |
public void setDefaultValueList(List<String> defaultValueList) { |
| 41 | 0 | this.defaultValueList = defaultValueList; |
| 42 | 0 | } |
| 43 | |
|
| 44 | |
public String getDefaultValueString() { |
| 45 | 0 | return defaultValueString; |
| 46 | |
} |
| 47 | |
|
| 48 | |
public void setDefaultValueString(String defaultValueString) { |
| 49 | 0 | this.defaultValueString = defaultValueString; |
| 50 | 0 | } |
| 51 | |
} |