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 operator; |
17 | |
@XmlElement |
18 | |
protected boolean caseSensitive; |
19 | |
|
20 | |
public List<WhenConstraint> getWhenConstraint() { |
21 | 0 | return whenConstraint; |
22 | |
} |
23 | |
|
24 | |
public void setWhenConstraint(List<WhenConstraint> whenConstraint) { |
25 | 0 | this.whenConstraint = whenConstraint; |
26 | 0 | } |
27 | |
|
28 | |
public String getFieldPath() { |
29 | 0 | return fieldPath; |
30 | |
} |
31 | |
|
32 | |
public void setFieldPath(String fieldPath) { |
33 | 0 | this.fieldPath = fieldPath; |
34 | 0 | } |
35 | |
|
36 | |
public String getOperator() { |
37 | 0 | return operator; |
38 | |
} |
39 | |
|
40 | |
public void setOperator(String operator) { |
41 | 0 | this.operator = operator; |
42 | 0 | } |
43 | |
|
44 | |
public boolean isCaseSensitive() { |
45 | 0 | return caseSensitive; |
46 | |
} |
47 | |
|
48 | |
public void setCaseSensitive(boolean caseSensitive) { |
49 | 0 | this.caseSensitive = caseSensitive; |
50 | 0 | } |
51 | |
} |