1 package org.kuali.student.r1.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
8 @Deprecated
9 @XmlAccessorType(XmlAccessType.FIELD)
10 public class BaseConstraint {
11 @XmlElement
12 protected String labelKey;
13
14
15
16
17
18 public String getLabelKey() {
19 return labelKey;
20 }
21
22 public void setLabelKey(String labelKey) {
23 this.labelKey = labelKey;
24 }
25 }