1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.core.api.criteria; |
17 | |
|
18 | |
import org.apache.commons.lang.StringUtils; |
19 | |
import org.kuali.rice.core.api.CoreConstants; |
20 | |
import org.w3c.dom.Element; |
21 | |
|
22 | |
import javax.xml.bind.annotation.XmlAccessType; |
23 | |
import javax.xml.bind.annotation.XmlAccessorType; |
24 | |
import javax.xml.bind.annotation.XmlAnyElement; |
25 | |
import javax.xml.bind.annotation.XmlAttribute; |
26 | |
import javax.xml.bind.annotation.XmlElement; |
27 | |
import javax.xml.bind.annotation.XmlElements; |
28 | |
import javax.xml.bind.annotation.XmlRootElement; |
29 | |
import javax.xml.bind.annotation.XmlType; |
30 | |
import java.util.Collection; |
31 | |
import java.util.Collections; |
32 | |
import java.util.HashSet; |
33 | |
import java.util.Set; |
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | 28 | @XmlRootElement(name = InPredicate.Constants.ROOT_ELEMENT_NAME) |
44 | |
@XmlAccessorType(XmlAccessType.NONE) |
45 | |
@XmlType(name = InPredicate.Constants.TYPE_NAME, propOrder = { |
46 | |
CriteriaSupportUtils.PropertyConstants.VALUES, |
47 | |
CoreConstants.CommonElements.FUTURE_ELEMENTS |
48 | |
}) |
49 | |
public final class InPredicate extends AbstractPredicate implements MultiValuedPredicate { |
50 | |
|
51 | |
private static final long serialVersionUID = -1888858317314153374L; |
52 | |
|
53 | |
@XmlAttribute(name = CriteriaSupportUtils.PropertyConstants.PROPERTY_PATH) |
54 | |
private final String propertyPath; |
55 | |
|
56 | |
@XmlElements(value = { |
57 | |
@XmlElement(name = CriteriaStringValue.Constants.ROOT_ELEMENT_NAME, type = CriteriaStringValue.class, required = true), |
58 | |
@XmlElement(name = CriteriaDateTimeValue.Constants.ROOT_ELEMENT_NAME, type = CriteriaDateTimeValue.class, required = true), |
59 | |
@XmlElement(name = CriteriaIntegerValue.Constants.ROOT_ELEMENT_NAME, type = CriteriaIntegerValue.class, required = true), |
60 | |
@XmlElement(name = CriteriaDecimalValue.Constants.ROOT_ELEMENT_NAME, type = CriteriaDecimalValue.class, required = true) |
61 | |
}) |
62 | |
private final Set<? extends CriteriaValue<?>> values; |
63 | |
|
64 | 40 | @SuppressWarnings("unused") |
65 | |
@XmlAnyElement |
66 | |
private final Collection<Element> _futureElements = null; |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
@SuppressWarnings("unused") |
72 | 10 | private InPredicate() { |
73 | 10 | this.propertyPath = null; |
74 | 10 | this.values = null; |
75 | 10 | } |
76 | |
|
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | |
|
84 | |
|
85 | |
|
86 | |
|
87 | 30 | InPredicate(String propertyPath, Set<? extends CriteriaValue<?>> values) { |
88 | 30 | if (StringUtils.isBlank(propertyPath)) { |
89 | 2 | throw new IllegalArgumentException("Property path cannot be null or blank."); |
90 | |
} |
91 | 28 | CriteriaSupportUtils.validateValuesForMultiValuedPredicate(values); |
92 | 23 | this.propertyPath = propertyPath; |
93 | |
|
94 | 23 | if (values == null) { |
95 | 0 | this.values = Collections.emptySet(); |
96 | |
} else { |
97 | 23 | final Set<CriteriaValue<?>> temp = new HashSet<CriteriaValue<?>>(); |
98 | 23 | for (CriteriaValue<?> value: values) { |
99 | 64 | if (value != null) { |
100 | 64 | temp.add(value); |
101 | |
} |
102 | |
} |
103 | 23 | this.values = Collections.unmodifiableSet(temp); |
104 | |
} |
105 | 23 | } |
106 | |
|
107 | |
@Override |
108 | |
public String getPropertyPath() { |
109 | 4 | return propertyPath; |
110 | |
} |
111 | |
|
112 | |
@Override |
113 | |
public Set<CriteriaValue<?>> getValues() { |
114 | 8 | return Collections.unmodifiableSet(values); |
115 | |
} |
116 | |
|
117 | |
|
118 | |
|
119 | |
|
120 | 0 | static class Constants { |
121 | |
final static String ROOT_ELEMENT_NAME = "in"; |
122 | |
final static String TYPE_NAME = "InType"; |
123 | |
} |
124 | |
|
125 | |
@Override |
126 | |
public String toString() { |
127 | 0 | return CriteriaSupportUtils.toString(this); |
128 | |
} |
129 | |
|
130 | |
} |