View Javadoc

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; // Label key will map to a message... for a field
13  								// there can be multiple contexts for the
14  								// label... a help context, a description
15  								// context, and a field label context for
16  								// example
17  
18  	public String getLabelKey() {
19  		return labelKey;
20  	}
21  
22  	public void setLabelKey(String labelKey) {
23  		this.labelKey = labelKey;
24  	}
25  }