| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RequiredConstraint |
|
| 1.0;1 |
| 1 | package org.kuali.student.common.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 | 0 | public class RequiredConstraint { |
| 9 | @XmlElement | |
| 10 | protected String fieldPath; | |
| 11 | ||
| 12 | public String getFieldPath() { | |
| 13 | 0 | return fieldPath; |
| 14 | } | |
| 15 | ||
| 16 | public void setFieldPath(String fieldPath) { | |
| 17 | 0 | this.fieldPath = fieldPath; |
| 18 | 0 | } |
| 19 | } |