1 package org.kuali.student.core.dictionary.dto;
2
3 import javax.xml.bind.annotation.XmlAccessType;
4 import javax.xml.bind.annotation.XmlAccessorType;
5 import javax.xml.bind.annotation.XmlElement;
6
7 @XmlAccessorType(XmlAccessType.FIELD)
8 public class RequiredConstraint {
9 @XmlElement
10 protected String fieldPath;
11
12 public String getFieldPath() {
13 return fieldPath;
14 }
15
16 public void setFieldPath(String fieldPath) {
17 this.fieldPath = fieldPath;
18 }
19 }