1 package org.kuali.student.common.dictionary.dto; 2 3 import java.util.List; 4 5 import javax.xml.bind.annotation.XmlAccessType; 6 import javax.xml.bind.annotation.XmlAccessorType; 7 import javax.xml.bind.annotation.XmlElement; 8 9 @XmlAccessorType(XmlAccessType.FIELD) 10 public class CaseConstraint { 11 @XmlElement 12 protected List<WhenConstraint> whenConstraint; 13 @XmlElement 14 protected String fieldPath; 15 @XmlElement 16 protected String operator; 17 @XmlElement 18 protected boolean caseSensitive; 19 20 public List<WhenConstraint> getWhenConstraint() { 21 return whenConstraint; 22 } 23 24 public void setWhenConstraint(List<WhenConstraint> whenConstraint) { 25 this.whenConstraint = whenConstraint; 26 } 27 28 public String getFieldPath() { 29 return fieldPath; 30 } 31 32 public void setFieldPath(String fieldPath) { 33 this.fieldPath = fieldPath; 34 } 35 36 public String getOperator() { 37 return operator; 38 } 39 40 public void setOperator(String operator) { 41 this.operator = operator; 42 } 43 44 public boolean isCaseSensitive() { 45 return caseSensitive; 46 } 47 48 public void setCaseSensitive(boolean caseSensitive) { 49 this.caseSensitive = caseSensitive; 50 } 51 }