001 package org.kuali.student.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 import org.kuali.student.common.validation.dto.ValidationResultInfo.ErrorLevel;
008
009
010
011 @XmlAccessorType(XmlAccessType.FIELD)
012 public class LookupConstraint extends CommonLookup{
013
014 private static final long serialVersionUID = 1L;
015
016 @XmlElement
017 protected ErrorLevel errorLevel = ErrorLevel.ERROR;
018
019 public ErrorLevel getErrorLevel() {
020 return errorLevel;
021 }
022
023 public void setErrorLevel(ErrorLevel errorLevel) {
024 this.errorLevel = errorLevel;
025 }
026
027 }