/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.syncope.core.persistence.api.attrvalue.validation; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import javax.validation.ConstraintViolation; import javax.validation.ValidationException; import org.apache.commons.collections4.IterableUtils; import org.apache.commons.collections4.Predicate; import org.apache.syncope.common.lib.types.EntityViolationType; /** * Exception thrown when any JPA entity fails bean validation. */ public class InvalidEntityException extends ValidationException { private static final long serialVersionUID = 3249297275444409691L; private final String entityClassSimpleName; private final Map<Class<?>, Set<EntityViolationType>> violations = new HashMap<>(); /** * Constructs a singleton map of violations from given parameters. * * @param entityClass class of invalid entity * @param entityViolationType type of violation found * @param message message to be associated to the violation */ public InvalidEntityException(final Class<?> entityClass, final EntityViolationType entityViolationType, final String message) { super(); this.entityClassSimpleName = entityClass.getSimpleName(); entityViolationType.setMessage(message.trim()); this.violations.put(entityClass, EnumSet.noneOf(EntityViolationType.class)); this.violations.get(entityClass).add(entityViolationType); } /** * Constructs a map of violations out of given <tt>ConstraintViolation</tt> set. * * @param entityClassSimpleName simple class name of invalid entity * @param violations as returned by bean validation */ public InvalidEntityException(final String entityClassSimpleName, final Set<ConstraintViolation<Object>> violations) { super(); this.entityClassSimpleName = entityClassSimpleName; for (ConstraintViolation<Object> violation : violations) { int firstComma = violation.getMessageTemplate().indexOf(';'); final String key = violation.getMessageTemplate().substring( 0, firstComma > 0 ? firstComma : violation.getMessageTemplate().length()); final String message = violation.getMessageTemplate().substring(firstComma > 0 ? firstComma + 1 : 0); EntityViolationType entityViolationType; try { entityViolationType = EntityViolationType.valueOf(key.trim()); } catch (IllegalArgumentException e) { entityViolationType = EntityViolationType.Standard; } entityViolationType.setMessage(message.trim()); if (!this.violations.containsKey(violation.getLeafBean().getClass())) { this.violations.put(violation.getLeafBean().getClass(), EnumSet.noneOf(EntityViolationType.class)); } this.violations.get(violation.getLeafBean().getClass()).add(entityViolationType); } } public final boolean hasViolation(final EntityViolationType type) { return IterableUtils.matchesAny(violations.keySet(), new Predicate<Class<?>>() { @Override public boolean evaluate(final Class<?> entity) { return violations.get(entity).contains(type); } }); } public String getEntityClassSimpleName() { return entityClassSimpleName; } public final Map<Class<?>, Set<EntityViolationType>> getViolations() { return violations; } @Override public String getMessage() { StringBuilder sb = new StringBuilder(); for (Entry<Class<?>, Set<EntityViolationType>> entry : violations.entrySet()) { sb.append(entry.getKey().getSimpleName()).append(' ').append(entry.getValue().toString()).append(", "); } sb.delete(sb.lastIndexOf(", "), sb.length()); return sb.toString(); } }