Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
LookupConstraint |
|
| 0.0;0 |
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 | ||
6 | ||
7 | /** | |
8 | * This class is a direct copy of one that was in Kuali Student. Look up constraints are currently not implemented. | |
9 | * | |
10 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
11 | * @since 1.1 | |
12 | */ | |
13 | @XmlAccessorType(XmlAccessType.FIELD) | |
14 | 0 | public class LookupConstraint extends CommonLookup implements Constraint { |
15 | ||
16 | ||
17 | private static final long serialVersionUID = 1L; | |
18 | // private String searchTypeId; // id of search type defined in search xml | |
19 | // private String resultReturnKey; // key of searchResultColumn to map back to | |
20 | // // this field | |
21 | // protected List<LookupConstraintParamMapping> lookupParams; // maps fields to | |
22 | // // search | |
23 | // // params? | |
24 | // | |
25 | // public List<LookupConstraintParamMapping> getLookupParams() { | |
26 | // return lookupParams; | |
27 | // } | |
28 | // | |
29 | // public void setLookupParams(List<LookupConstraintParamMapping> lookupParams) { | |
30 | // this.lookupParams = lookupParams; | |
31 | // } | |
32 | } |