| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.kns.util; |
| 17 | |
|
| 18 | |
|
| 19 | |
import org.apache.commons.lang.StringEscapeUtils; |
| 20 | |
import org.apache.commons.lang.StringUtils; |
| 21 | |
import org.apache.commons.lang.builder.EqualsBuilder; |
| 22 | |
import org.apache.commons.lang.builder.HashCodeBuilder; |
| 23 | |
import org.apache.commons.lang.builder.ToStringBuilder; |
| 24 | |
import org.springframework.util.AutoPopulatingList; |
| 25 | |
|
| 26 | |
import java.io.Serializable; |
| 27 | |
import java.util.*; |
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | |
public class MessageMap implements Serializable { |
| 37 | |
|
| 38 | |
private static final long serialVersionUID = -2328635367656516150L; |
| 39 | |
|
| 40 | 0 | private List<String> errorPath = new ArrayList<String>(); |
| 41 | 0 | private Map<String, AutoPopulatingList<ErrorMessage>> errorMessages = new LinkedHashMap<String, AutoPopulatingList<ErrorMessage>>(); |
| 42 | 0 | private Map<String, AutoPopulatingList<ErrorMessage>> warningMessages = new LinkedHashMap<String, AutoPopulatingList<ErrorMessage>>(); |
| 43 | 0 | private Map<String, AutoPopulatingList<ErrorMessage>> infoMessages = new LinkedHashMap<String, AutoPopulatingList<ErrorMessage>>(); |
| 44 | |
|
| 45 | 0 | public MessageMap() {} |
| 46 | |
|
| 47 | 0 | public MessageMap(MessageMap messageMap) { |
| 48 | 0 | this.errorPath = messageMap.errorPath; |
| 49 | 0 | this.errorMessages = messageMap.errorMessages; |
| 50 | 0 | this.warningMessages = messageMap.warningMessages; |
| 51 | 0 | this.infoMessages = messageMap.infoMessages; |
| 52 | 0 | } |
| 53 | |
|
| 54 | |
|
| 55 | |
public void merge(MessageMap messageMap){ |
| 56 | 0 | if(messageMap != null){ |
| 57 | 0 | if(messageMap.hasErrors()){ |
| 58 | 0 | merge(messageMap.getErrorMessages(), errorMessages); |
| 59 | |
} |
| 60 | 0 | if(messageMap.hasInfo()){ |
| 61 | 0 | merge(messageMap.getInfoMessages(), infoMessages); |
| 62 | |
} |
| 63 | 0 | if(messageMap.hasWarnings()){ |
| 64 | 0 | merge(messageMap.getWarningMessages(), warningMessages); |
| 65 | |
} |
| 66 | |
|
| 67 | |
} |
| 68 | |
|
| 69 | 0 | } |
| 70 | |
|
| 71 | |
|
| 72 | |
|
| 73 | |
|
| 74 | |
|
| 75 | |
|
| 76 | |
|
| 77 | |
|
| 78 | |
protected void merge(Map<String, AutoPopulatingList<ErrorMessage>> messagesFrom, Map<String, AutoPopulatingList<ErrorMessage>> messagesTo){ |
| 79 | 0 | for(String key : messagesFrom.keySet()){ |
| 80 | |
|
| 81 | 0 | if(messagesTo.containsKey(key)){ |
| 82 | |
|
| 83 | 0 | AutoPopulatingList<ErrorMessage> tal = messagesFrom.get(key); |
| 84 | 0 | AutoPopulatingList<ErrorMessage> parentList = messagesTo.get(key); |
| 85 | |
|
| 86 | 0 | for(Object o :tal){ |
| 87 | |
|
| 88 | 0 | if ( !parentList.contains( o ) ) { |
| 89 | 0 | parentList.add((ErrorMessage)o); |
| 90 | |
} |
| 91 | |
} |
| 92 | |
|
| 93 | 0 | }else{ |
| 94 | 0 | messagesTo.put(key, messagesFrom.get(key)); |
| 95 | |
} |
| 96 | |
|
| 97 | |
} |
| 98 | |
|
| 99 | 0 | } |
| 100 | |
|
| 101 | |
|
| 102 | |
|
| 103 | |
|
| 104 | |
|
| 105 | |
|
| 106 | |
|
| 107 | |
|
| 108 | |
|
| 109 | |
|
| 110 | |
public AutoPopulatingList<ErrorMessage> putError(String propertyName, String errorKey, String... errorParameters) { |
| 111 | 0 | return putMessageInMap(errorMessages, propertyName, errorKey, true, true, errorParameters); |
| 112 | |
} |
| 113 | |
|
| 114 | |
public AutoPopulatingList<ErrorMessage> putWarning(String propertyName, String messageKey, String... messageParameters) { |
| 115 | 0 | return putMessageInMap(warningMessages, propertyName, messageKey, true, true, messageParameters); |
| 116 | |
} |
| 117 | |
|
| 118 | |
public AutoPopulatingList<ErrorMessage> putInfo(String propertyName, String messageKey, String... messageParameters) { |
| 119 | 0 | return putMessageInMap(infoMessages, propertyName, messageKey, true, true, messageParameters); |
| 120 | |
} |
| 121 | |
|
| 122 | |
|
| 123 | |
|
| 124 | |
|
| 125 | |
|
| 126 | |
|
| 127 | |
|
| 128 | |
|
| 129 | |
|
| 130 | |
|
| 131 | |
public AutoPopulatingList<ErrorMessage> putErrorWithoutFullErrorPath(String propertyName, String errorKey, String... errorParameters) { |
| 132 | 0 | return putMessageInMap(errorMessages, propertyName, errorKey, false, true, errorParameters); |
| 133 | |
} |
| 134 | |
|
| 135 | |
public AutoPopulatingList<ErrorMessage> putWarningWithoutFullErrorPath(String propertyName, String messageKey, String... messageParameters) { |
| 136 | 0 | return putMessageInMap(warningMessages, propertyName, messageKey, false, true, messageParameters); |
| 137 | |
} |
| 138 | |
|
| 139 | |
public AutoPopulatingList<ErrorMessage> putInfoWithoutFullErrorPath(String propertyName, String messageKey, String... messageParameters) { |
| 140 | 0 | return putMessageInMap(infoMessages, propertyName, messageKey, false, true, messageParameters); |
| 141 | |
} |
| 142 | |
|
| 143 | |
|
| 144 | |
|
| 145 | |
|
| 146 | |
|
| 147 | |
|
| 148 | |
|
| 149 | |
|
| 150 | |
|
| 151 | |
|
| 152 | |
public AutoPopulatingList<ErrorMessage> putErrorForSectionId(String sectionId, String errorKey, String... errorParameters) { |
| 153 | 0 | return putErrorWithoutFullErrorPath(sectionId, errorKey, errorParameters); |
| 154 | |
} |
| 155 | |
|
| 156 | |
public AutoPopulatingList<ErrorMessage> putWarningForSectionId(String sectionId, String messageKey, String... messageParameters) { |
| 157 | 0 | return putWarningWithoutFullErrorPath(sectionId, messageKey, messageParameters); |
| 158 | |
} |
| 159 | |
|
| 160 | |
public AutoPopulatingList<ErrorMessage> putInfoForSectionId(String sectionId, String messageKey, String... messageParameters) { |
| 161 | 0 | return putInfoWithoutFullErrorPath(sectionId, messageKey, messageParameters); |
| 162 | |
} |
| 163 | |
|
| 164 | |
|
| 165 | |
|
| 166 | |
|
| 167 | |
|
| 168 | |
|
| 169 | |
|
| 170 | |
|
| 171 | |
|
| 172 | |
|
| 173 | |
|
| 174 | |
private AutoPopulatingList<ErrorMessage> putMessageInMap(Map<String, AutoPopulatingList<ErrorMessage>> messagesMap, String propertyName, String messageKey, boolean withFullErrorPath, boolean escapeHtmlMessageParameters, String... messageParameters) { |
| 175 | 0 | if (StringUtils.isBlank(propertyName)) { |
| 176 | 0 | throw new IllegalArgumentException("invalid (blank) propertyName"); |
| 177 | |
} |
| 178 | 0 | if (StringUtils.isBlank(messageKey)) { |
| 179 | 0 | throw new IllegalArgumentException("invalid (blank) errorKey"); |
| 180 | |
} |
| 181 | |
|
| 182 | |
|
| 183 | 0 | AutoPopulatingList<ErrorMessage> errorList = null; |
| 184 | 0 | String propertyKey = getKeyPath(propertyName, withFullErrorPath); |
| 185 | 0 | if (messagesMap.containsKey(propertyKey)) { |
| 186 | 0 | errorList = messagesMap.get(propertyKey); |
| 187 | |
} |
| 188 | |
else { |
| 189 | 0 | errorList = new AutoPopulatingList<ErrorMessage>(ErrorMessage.class); |
| 190 | |
} |
| 191 | |
|
| 192 | 0 | if (escapeHtmlMessageParameters && messageParameters != null) { |
| 193 | 0 | String[] filteredMessageParameters = new String[messageParameters.length]; |
| 194 | 0 | for (int i = 0; i < messageParameters.length; i++) { |
| 195 | 0 | filteredMessageParameters[i] = StringEscapeUtils.escapeHtml(messageParameters[i]); |
| 196 | |
} |
| 197 | 0 | messageParameters = filteredMessageParameters; |
| 198 | |
} |
| 199 | |
|
| 200 | |
|
| 201 | 0 | ErrorMessage errorMessage = new ErrorMessage(messageKey, messageParameters); |
| 202 | |
|
| 203 | 0 | if ( !errorList.contains( errorMessage ) ) { |
| 204 | 0 | errorList.add(errorMessage); |
| 205 | |
} |
| 206 | |
|
| 207 | 0 | return messagesMap.put(propertyKey, errorList); |
| 208 | |
} |
| 209 | |
|
| 210 | |
|
| 211 | |
|
| 212 | |
|
| 213 | |
|
| 214 | |
|
| 215 | |
|
| 216 | |
|
| 217 | |
|
| 218 | |
|
| 219 | |
|
| 220 | |
public boolean replaceError(String propertyName, String targetKey, String replaceKey, String... replaceParameters) { |
| 221 | 0 | return replaceError(propertyName, targetKey, true, replaceKey, replaceParameters); |
| 222 | |
} |
| 223 | |
|
| 224 | |
|
| 225 | |
|
| 226 | |
|
| 227 | |
|
| 228 | |
|
| 229 | |
|
| 230 | |
|
| 231 | |
|
| 232 | |
|
| 233 | |
|
| 234 | |
|
| 235 | |
|
| 236 | |
public boolean replaceErrorWithoutFullErrorPath(String propertyName, String targetKey, String replaceKey, String... replaceParameters) { |
| 237 | 0 | return replaceError(propertyName, targetKey, false, replaceKey, replaceParameters); |
| 238 | |
} |
| 239 | |
|
| 240 | |
|
| 241 | |
|
| 242 | |
|
| 243 | |
|
| 244 | |
|
| 245 | |
|
| 246 | |
|
| 247 | |
|
| 248 | |
|
| 249 | |
|
| 250 | |
|
| 251 | |
private boolean replaceError(String propertyName, String targetKey, boolean withFullErrorPath, String replaceKey, String... replaceParameters) { |
| 252 | 0 | boolean replaced = false; |
| 253 | |
|
| 254 | 0 | if (StringUtils.isBlank(propertyName)) { |
| 255 | 0 | throw new IllegalArgumentException("invalid (blank) propertyName"); |
| 256 | |
} |
| 257 | 0 | if (StringUtils.isBlank(targetKey)) { |
| 258 | 0 | throw new IllegalArgumentException("invalid (blank) targetKey"); |
| 259 | |
} |
| 260 | 0 | if (StringUtils.isBlank(replaceKey)) { |
| 261 | 0 | throw new IllegalArgumentException("invalid (blank) replaceKey"); |
| 262 | |
} |
| 263 | |
|
| 264 | |
|
| 265 | 0 | AutoPopulatingList<ErrorMessage> errorList = null; |
| 266 | 0 | String propertyKey = getKeyPath(propertyName, withFullErrorPath); |
| 267 | 0 | if (errorMessages.containsKey(propertyKey)) { |
| 268 | 0 | errorList = errorMessages.get(propertyKey); |
| 269 | |
|
| 270 | |
|
| 271 | 0 | for (int i = 0; i < errorList.size(); ++i) { |
| 272 | 0 | ErrorMessage em = errorList.get(i); |
| 273 | |
|
| 274 | |
|
| 275 | 0 | if (em.getErrorKey().equals(targetKey)) { |
| 276 | 0 | ErrorMessage rm = new ErrorMessage(replaceKey, replaceParameters); |
| 277 | 0 | errorList.set(i, rm); |
| 278 | 0 | replaced = true; |
| 279 | |
} |
| 280 | |
} |
| 281 | |
} |
| 282 | |
|
| 283 | 0 | return replaced; |
| 284 | |
} |
| 285 | |
|
| 286 | |
|
| 287 | |
|
| 288 | |
|
| 289 | |
|
| 290 | |
|
| 291 | |
|
| 292 | |
|
| 293 | |
|
| 294 | |
public boolean fieldHasMessage(String fieldName, String errorKey) { |
| 295 | 0 | boolean found = false; |
| 296 | |
|
| 297 | 0 | List<ErrorMessage> fieldMessages = errorMessages.get(fieldName); |
| 298 | 0 | if (fieldMessages != null) { |
| 299 | 0 | for (Iterator<ErrorMessage> i = fieldMessages.iterator(); !found && i.hasNext();) { |
| 300 | 0 | ErrorMessage errorMessage = i.next(); |
| 301 | 0 | found = errorMessage.getErrorKey().equals(errorKey); |
| 302 | 0 | } |
| 303 | |
} |
| 304 | |
|
| 305 | 0 | return found; |
| 306 | |
} |
| 307 | |
|
| 308 | |
|
| 309 | |
|
| 310 | |
|
| 311 | |
|
| 312 | |
|
| 313 | |
|
| 314 | |
public int countFieldMessages(String fieldName) { |
| 315 | 0 | int count = 0; |
| 316 | |
|
| 317 | 0 | List<ErrorMessage> fieldMessages = errorMessages.get(fieldName); |
| 318 | 0 | if (fieldMessages != null) { |
| 319 | 0 | count = fieldMessages.size(); |
| 320 | |
} |
| 321 | |
|
| 322 | 0 | return count; |
| 323 | |
} |
| 324 | |
|
| 325 | |
|
| 326 | |
|
| 327 | |
|
| 328 | |
|
| 329 | |
public boolean containsMessageKey(String messageKey) { |
| 330 | 0 | ErrorMessage foundMessage = null; |
| 331 | |
|
| 332 | 0 | if (!hasNoErrors()) { |
| 333 | 0 | for (Iterator<Map.Entry<String, AutoPopulatingList<ErrorMessage>>> i = getAllPropertiesAndErrors().iterator(); (foundMessage == null) && i.hasNext();) { |
| 334 | 0 | Map.Entry<String, AutoPopulatingList<ErrorMessage>> e = i.next(); |
| 335 | 0 | AutoPopulatingList<ErrorMessage> entryErrorList = e.getValue(); |
| 336 | 0 | for (Iterator<ErrorMessage> j = entryErrorList.iterator(); j.hasNext();) { |
| 337 | 0 | ErrorMessage em = j.next(); |
| 338 | 0 | if (messageKey.equals(em.getErrorKey())) { |
| 339 | 0 | foundMessage = em; |
| 340 | |
} |
| 341 | 0 | } |
| 342 | 0 | } |
| 343 | |
} |
| 344 | |
|
| 345 | 0 | return (foundMessage != null); |
| 346 | |
} |
| 347 | |
|
| 348 | |
|
| 349 | |
private int getMessageCount(Map<String, AutoPopulatingList<ErrorMessage>> messageMap) { |
| 350 | 0 | int messageCount = 0; |
| 351 | 0 | for (Iterator<String> iter = messageMap.keySet().iterator(); iter.hasNext();) { |
| 352 | 0 | String errorKey = iter.next(); |
| 353 | 0 | List<ErrorMessage> errors = messageMap.get(errorKey); |
| 354 | 0 | messageCount += errors.size(); |
| 355 | 0 | } |
| 356 | |
|
| 357 | 0 | return messageCount; |
| 358 | |
} |
| 359 | |
|
| 360 | |
|
| 361 | |
|
| 362 | |
|
| 363 | |
|
| 364 | |
|
| 365 | |
public int getErrorCount() { |
| 366 | 0 | return getMessageCount(errorMessages); |
| 367 | |
} |
| 368 | |
|
| 369 | |
|
| 370 | |
|
| 371 | |
|
| 372 | |
|
| 373 | |
|
| 374 | |
public int getWarningCount() { |
| 375 | 0 | return getMessageCount(warningMessages); |
| 376 | |
} |
| 377 | |
|
| 378 | |
|
| 379 | |
|
| 380 | |
|
| 381 | |
|
| 382 | |
|
| 383 | |
public int getInfoCount() { |
| 384 | 0 | return getMessageCount(infoMessages); |
| 385 | |
} |
| 386 | |
|
| 387 | |
|
| 388 | |
|
| 389 | |
|
| 390 | |
|
| 391 | |
public AutoPopulatingList<ErrorMessage> getMessages(String path) { |
| 392 | 0 | return errorMessages.get(path); |
| 393 | |
} |
| 394 | |
|
| 395 | |
|
| 396 | |
|
| 397 | |
|
| 398 | |
|
| 399 | |
|
| 400 | |
public void addToErrorPath(String parentName) { |
| 401 | 0 | errorPath.add(parentName); |
| 402 | 0 | } |
| 403 | |
|
| 404 | |
|
| 405 | |
|
| 406 | |
|
| 407 | |
|
| 408 | |
|
| 409 | |
public List<String> getErrorPath() { |
| 410 | 0 | return errorPath; |
| 411 | |
} |
| 412 | |
|
| 413 | |
|
| 414 | |
|
| 415 | |
|
| 416 | |
|
| 417 | |
|
| 418 | |
|
| 419 | |
public boolean removeFromErrorPath(String parentName) { |
| 420 | 0 | return errorPath.remove(parentName); |
| 421 | |
} |
| 422 | |
|
| 423 | |
|
| 424 | |
|
| 425 | |
|
| 426 | |
public void clearErrorPath() { |
| 427 | 0 | errorPath.clear(); |
| 428 | 0 | } |
| 429 | |
|
| 430 | |
|
| 431 | |
|
| 432 | |
|
| 433 | |
|
| 434 | |
|
| 435 | |
|
| 436 | |
|
| 437 | |
|
| 438 | |
public String getKeyPath(String propertyName, boolean prependFullErrorPath) { |
| 439 | 0 | String keyPath = ""; |
| 440 | |
|
| 441 | 0 | if (KNSConstants.GLOBAL_ERRORS.equals(propertyName)) { |
| 442 | 0 | return KNSConstants.GLOBAL_ERRORS; |
| 443 | |
} |
| 444 | |
|
| 445 | 0 | if (!errorPath.isEmpty() && prependFullErrorPath) { |
| 446 | 0 | keyPath = StringUtils.join(errorPath.iterator(), "."); |
| 447 | 0 | keyPath += (keyPath!=null && keyPath.endsWith("."))?propertyName:"." + propertyName; |
| 448 | |
} |
| 449 | |
else { |
| 450 | 0 | keyPath = propertyName; |
| 451 | |
} |
| 452 | |
|
| 453 | 0 | return keyPath; |
| 454 | |
} |
| 455 | |
|
| 456 | |
|
| 457 | |
|
| 458 | |
|
| 459 | |
public List<String> getPropertiesWithErrors() { |
| 460 | 0 | List<String> properties = new ArrayList<String>(); |
| 461 | |
|
| 462 | 0 | for (Iterator<String> iter = errorMessages.keySet().iterator(); iter.hasNext();) { |
| 463 | 0 | properties.add(iter.next()); |
| 464 | |
} |
| 465 | |
|
| 466 | 0 | return properties; |
| 467 | |
} |
| 468 | |
|
| 469 | |
|
| 470 | |
|
| 471 | |
|
| 472 | |
public List<String> getPropertiesWithWarnings() { |
| 473 | 0 | List<String> properties = new ArrayList<String>(warningMessages.keySet()); |
| 474 | 0 | return properties; |
| 475 | |
} |
| 476 | |
|
| 477 | |
|
| 478 | |
|
| 479 | |
|
| 480 | |
public List<String> getPropertiesWithInfo() { |
| 481 | 0 | List<String> properties = new ArrayList<String>(infoMessages.keySet()); |
| 482 | 0 | return properties; |
| 483 | |
} |
| 484 | |
|
| 485 | |
public void clearErrorMessages() { |
| 486 | 0 | errorMessages.clear(); |
| 487 | 0 | } |
| 488 | |
|
| 489 | |
public boolean doesPropertyHaveError(String key) { |
| 490 | 0 | return errorMessages.containsKey(key); |
| 491 | |
} |
| 492 | |
|
| 493 | |
|
| 494 | |
|
| 495 | |
|
| 496 | |
public boolean containsKeyMatchingPattern(String pattern) { |
| 497 | 0 | List<String> simplePatterns = new ArrayList<String>(); |
| 498 | 0 | List<String> wildcardPatterns = new ArrayList<String>(); |
| 499 | 0 | String[] patterns = pattern.split(","); |
| 500 | 0 | for (int i = 0; i < patterns.length; i++) { |
| 501 | 0 | String s = patterns[i]; |
| 502 | 0 | if (s.endsWith("*")) { |
| 503 | 0 | wildcardPatterns.add(s.substring(0, s.length() - 1)); |
| 504 | |
} |
| 505 | |
else { |
| 506 | 0 | simplePatterns.add(s); |
| 507 | |
} |
| 508 | |
} |
| 509 | 0 | for (Iterator<String> keys = errorMessages.keySet().iterator(); keys.hasNext();) { |
| 510 | 0 | String key = keys.next(); |
| 511 | 0 | if (simplePatterns.contains(key)) { |
| 512 | 0 | return true; |
| 513 | |
} |
| 514 | 0 | for (Iterator<String> wildcardIterator = wildcardPatterns.iterator(); wildcardIterator.hasNext();) { |
| 515 | 0 | String wildcard = wildcardIterator.next(); |
| 516 | 0 | if (key.startsWith(wildcard)) { |
| 517 | 0 | return true; |
| 518 | |
} |
| 519 | 0 | } |
| 520 | 0 | } |
| 521 | 0 | return false; |
| 522 | |
} |
| 523 | |
|
| 524 | |
public Set<Map.Entry<String, AutoPopulatingList<ErrorMessage>>> getAllPropertiesAndErrors() { |
| 525 | 0 | return errorMessages.entrySet(); |
| 526 | |
} |
| 527 | |
|
| 528 | |
public AutoPopulatingList<ErrorMessage> getErrorMessagesForProperty(String propertyName) { |
| 529 | 0 | return errorMessages.get(propertyName); |
| 530 | |
} |
| 531 | |
|
| 532 | |
public AutoPopulatingList<ErrorMessage> getWarningMessagesForProperty(String propertyName) { |
| 533 | 0 | return warningMessages.get(propertyName); |
| 534 | |
} |
| 535 | |
|
| 536 | |
public AutoPopulatingList<ErrorMessage> getInfoMessagesForProperty(String propertyName) { |
| 537 | 0 | return infoMessages.get(propertyName); |
| 538 | |
} |
| 539 | |
|
| 540 | |
public boolean hasErrors() { |
| 541 | 0 | return !errorMessages.isEmpty(); |
| 542 | |
} |
| 543 | |
|
| 544 | |
public boolean hasNoErrors() { |
| 545 | 0 | return errorMessages.isEmpty(); |
| 546 | |
} |
| 547 | |
|
| 548 | |
public boolean hasWarnings() { |
| 549 | 0 | return !warningMessages.isEmpty(); |
| 550 | |
} |
| 551 | |
|
| 552 | |
public boolean hasNoWarnings() { |
| 553 | 0 | return warningMessages.isEmpty(); |
| 554 | |
} |
| 555 | |
|
| 556 | |
public boolean hasInfo() { |
| 557 | 0 | return !infoMessages.isEmpty(); |
| 558 | |
} |
| 559 | |
|
| 560 | |
public boolean hasNoInfo() { |
| 561 | 0 | return infoMessages.isEmpty(); |
| 562 | |
} |
| 563 | |
|
| 564 | |
public boolean hasMessages() { |
| 565 | 0 | if (!errorMessages.isEmpty() |
| 566 | |
|| !warningMessages.isEmpty() |
| 567 | |
|| !infoMessages.isEmpty()) { |
| 568 | 0 | return true; |
| 569 | |
} |
| 570 | 0 | return false; |
| 571 | |
} |
| 572 | |
|
| 573 | |
public boolean hasNoMessages() { |
| 574 | 0 | if (errorMessages.isEmpty() |
| 575 | |
&& warningMessages.isEmpty() |
| 576 | |
&& infoMessages.isEmpty()) { |
| 577 | 0 | return true; |
| 578 | |
} |
| 579 | 0 | return false; |
| 580 | |
} |
| 581 | |
|
| 582 | |
public Set<String> getAllPropertiesWithErrors() { |
| 583 | 0 | return errorMessages.keySet(); |
| 584 | |
} |
| 585 | |
|
| 586 | |
public Set<String> getAllPropertiesWithWarnings() { |
| 587 | 0 | return warningMessages.keySet(); |
| 588 | |
} |
| 589 | |
|
| 590 | |
public Set<String> getAllPropertiesWithInfo() { |
| 591 | 0 | return infoMessages.keySet(); |
| 592 | |
} |
| 593 | |
|
| 594 | |
public AutoPopulatingList<ErrorMessage> removeAllErrorMessagesForProperty(String property) { |
| 595 | 0 | return errorMessages.remove(property); |
| 596 | |
} |
| 597 | |
|
| 598 | |
public AutoPopulatingList<ErrorMessage> removeAllWarningMessagesForProperty(String property) { |
| 599 | 0 | return warningMessages.remove(property); |
| 600 | |
} |
| 601 | |
|
| 602 | |
public AutoPopulatingList<ErrorMessage> removeAllInfoMessagesForProperty(String property) { |
| 603 | 0 | return infoMessages.remove(property); |
| 604 | |
} |
| 605 | |
|
| 606 | |
public int getNumberOfPropertiesWithErrors() { |
| 607 | 0 | return errorMessages.size(); |
| 608 | |
} |
| 609 | |
|
| 610 | |
public Map<String, AutoPopulatingList<ErrorMessage>> getErrorMessages() { |
| 611 | 0 | return this.errorMessages; |
| 612 | |
} |
| 613 | |
|
| 614 | |
public Map<String, AutoPopulatingList<ErrorMessage>> getWarningMessages() { |
| 615 | 0 | return this.warningMessages; |
| 616 | |
} |
| 617 | |
|
| 618 | |
public Map<String, AutoPopulatingList<ErrorMessage>> getInfoMessages() { |
| 619 | 0 | return this.infoMessages; |
| 620 | |
} |
| 621 | |
|
| 622 | |
@Override |
| 623 | |
public boolean equals(Object o) { |
| 624 | 0 | return EqualsBuilder.reflectionEquals(this, o); |
| 625 | |
} |
| 626 | |
|
| 627 | |
@Override |
| 628 | |
public int hashCode() { |
| 629 | 0 | return HashCodeBuilder.reflectionHashCode(this); |
| 630 | |
} |
| 631 | |
|
| 632 | |
@Override |
| 633 | |
public String toString() { |
| 634 | 0 | return ToStringBuilder.reflectionToString(this); |
| 635 | |
} |
| 636 | |
} |