001 package org.kuali.student.r1.common.dictionary.dto;
002
003 import javax.xml.bind.annotation.XmlAccessType;
004 import javax.xml.bind.annotation.XmlAccessorType;
005 import javax.xml.bind.annotation.XmlElement;
006
007
008 @Deprecated
009 @XmlAccessorType(XmlAccessType.FIELD)
010 public class BaseConstraint {
011 @XmlElement
012 protected String labelKey; // Label key will map to a message... for a field
013 // there can be multiple contexts for the
014 // label... a help context, a description
015 // context, and a field label context for
016 // example
017
018 public String getLabelKey() {
019 return labelKey;
020 }
021
022 public void setLabelKey(String labelKey) {
023 this.labelKey = labelKey;
024 }
025 }