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
7
8
9
10
11
12
13
14
15 @XmlAccessorType(XmlAccessType.FIELD)
16 public class PrerequisiteConstraint extends BaseConstraint {
17 @XmlElement
18 protected String attributePath;
19
20 public String getAttributePath() {
21 return attributePath;
22 }
23
24 public void setAttributePath(String attributePath) {
25 this.attributePath = attributePath;
26 }
27 }