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   import org.kuali.student.r2.common.infc.ValidationResult.ErrorLevel;
8   
9   @Deprecated
10  @XmlAccessorType(XmlAccessType.FIELD)
11  public class LookupConstraint extends CommonLookup{
12  
13  	private static final long serialVersionUID = 1L;
14  
15  	@XmlElement
16  	protected ErrorLevel errorLevel = ErrorLevel.ERROR;
17  
18  	public ErrorLevel getErrorLevel() {
19  		return errorLevel;
20  	}
21  
22  	public void setErrorLevel(ErrorLevel errorLevel) {
23  		this.errorLevel = errorLevel;
24  	}
25  		
26  }