1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krms.api.engine;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.core.api.mo.ModelObjectComplete;
20
21 import java.io.Serializable;
22 import java.util.Collections;
23 import java.util.HashMap;
24 import java.util.Map;
25
26
27
28
29
30
31
32
33
34 public final class Facts implements ModelObjectComplete, Serializable {
35
36 private static final long serialVersionUID = -1448089944850300846L;
37
38
39
40
41 public static final Facts EMPTY_FACTS = new Facts(Builder.create());
42
43 private Map<Term, Object> factMap;
44
45 private Facts() {
46
47 }
48
49 private Facts(Builder b) {
50
51 this.factMap = new HashMap<Term, Object>(b.factMap);
52 }
53
54
55
56
57 public Map<Term, Object> getFactMap() {
58 return Collections.unmodifiableMap(factMap);
59 }
60
61 @Override
62 public boolean equals(Object o) {
63 if (this == o) {
64 return true;
65 }
66 if (o == null || getClass() != o.getClass()) {
67 return false;
68 }
69
70 final Facts facts = (Facts) o;
71
72 if (factMap != null ? !factMap.equals(facts.factMap) : facts.factMap != null) {
73 return false;
74 }
75
76 return true;
77 }
78
79 @Override
80 public int hashCode() {
81 return factMap != null ? factMap.hashCode() : 0;
82 }
83
84 @Override
85 public String toString() {
86 return "Facts{" + "factMap=" + factMap + '}';
87 }
88
89
90
91
92 public static class Builder {
93 private Map<Term, Object> factMap = new HashMap<Term, Object>();
94
95 private Builder() {
96
97 }
98
99
100
101
102
103 public static Builder create() {
104 return new Builder();
105 }
106
107
108
109
110
111
112
113 public Builder addFact(String termName, Map<String, String> termParameters, Object factValue) {
114 if (StringUtils.isEmpty(termName)) {
115 throw new IllegalArgumentException("termName must not be null or empty");
116 }
117 factMap.put(new Term(termName, termParameters), factValue);
118 return this;
119 }
120
121
122
123
124
125
126 public Builder addFact(String termName, Object factValue) {
127 addFact(termName, null, factValue);
128 return this;
129 }
130
131
132
133
134
135
136 public Builder addFact(Term term, Object factValue) {
137 if (term == null) {
138 throw new IllegalArgumentException("term must not be null");
139 }
140 factMap.put(term, factValue);
141 return this;
142 }
143
144
145
146
147
148 public Builder addFactsByTerm(Map<Term, Object> facts) {
149 if (facts != null) {
150 factMap.putAll(facts);
151 }
152 return this;
153 }
154
155
156
157
158
159 public Builder addFactsByName(Map<String, Object> facts) {
160 if (facts != null) {
161 for (Map.Entry<String, Object> entry : facts.entrySet()) {
162 factMap.put(new Term(entry.getKey()), entry.getValue());
163 }
164 }
165 return this;
166 }
167
168
169
170
171 public Facts build() {
172 if (factMap.isEmpty()) {
173 return EMPTY_FACTS;
174 } else {
175 return new Facts(this);
176 }
177 }
178
179 }
180
181
182 }