| 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 | 0 | public class CaseConstraint { |
| 11 | |
@XmlElement |
| 12 | |
protected List<WhenConstraint> whenConstraint; |
| 13 | |
@XmlElement |
| 14 | |
protected String fieldPath; |
| 15 | |
@XmlElement |
| 16 | |
protected String fieldPathMessageId; |
| 17 | |
@XmlElement |
| 18 | |
protected String operator; |
| 19 | |
@XmlElement |
| 20 | |
protected boolean caseSensitive; |
| 21 | |
|
| 22 | |
public List<WhenConstraint> getWhenConstraint() { |
| 23 | 0 | return whenConstraint; |
| 24 | |
} |
| 25 | |
|
| 26 | |
public void setWhenConstraint(List<WhenConstraint> whenConstraint) { |
| 27 | 0 | this.whenConstraint = whenConstraint; |
| 28 | 0 | } |
| 29 | |
|
| 30 | |
public String getFieldPath() { |
| 31 | 0 | return fieldPath; |
| 32 | |
} |
| 33 | |
|
| 34 | |
public void setFieldPath(String fieldPath) { |
| 35 | 0 | this.fieldPath = fieldPath; |
| 36 | 0 | } |
| 37 | |
|
| 38 | |
public String getOperator() { |
| 39 | 0 | return operator; |
| 40 | |
} |
| 41 | |
|
| 42 | |
public void setOperator(String operator) { |
| 43 | 0 | this.operator = operator; |
| 44 | 0 | } |
| 45 | |
|
| 46 | |
public boolean isCaseSensitive() { |
| 47 | 0 | return caseSensitive; |
| 48 | |
} |
| 49 | |
|
| 50 | |
public void setCaseSensitive(boolean caseSensitive) { |
| 51 | 0 | this.caseSensitive = caseSensitive; |
| 52 | 0 | } |
| 53 | |
|
| 54 | |
public String getFieldPathMessageId() { |
| 55 | 0 | return fieldPathMessageId; |
| 56 | |
} |
| 57 | |
|
| 58 | |
public void setFieldPathMessageId(String fieldPathMessageId) { |
| 59 | 0 | this.fieldPathMessageId = fieldPathMessageId; |
| 60 | 0 | } |
| 61 | |
|
| 62 | |
|
| 63 | |
} |