///////////////////////////////
// Makumba, Makumba tag library
// Copyright (C) 2000-2003 http://www.makumba.org
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// -------------
// $Id: CompositeValidationException.java 1666 2007-09-20 16:21:49Z rosso_nero $
// $Name$
/////////////////////////////////////
package org.makumba;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.Vector;
import org.apache.commons.collections.map.MultiValueMap;
/**
* This class holds several {@link InvalidValueException} of the same form together.
*
* @author Rudolf Mayer
* @version $Id: CompositeValidationException.java 1666 2007-09-20 16:21:49Z rosso_nero $
*/
public class CompositeValidationException extends RuntimeException {
private static final long serialVersionUID = 1L;
private MultiValueMap exceptionsHash = new MultiValueMap();
/** Creates an empty instance */
public CompositeValidationException() {
}
/** Creates an instance and adds all exceptions from the given {@link Vector} */
public CompositeValidationException(Vector exceptions) {
for (int i = 0; i < exceptions.size(); i++) {
InvalidValueException e = (InvalidValueException) exceptions.get(i);
exceptionsHash.put(e.getFieldName(), e);
}
}
public ArrayList getExceptions() {
return new ArrayList(exceptionsHash.values());
}
/** Adds a new exception */
public void addException(InvalidValueException e) {
if (e.getFieldName() != null) {
exceptionsHash.put(e.getFieldName(), e);
} else {
exceptionsHash.put("__makumba__unassigned__", e);
}
}
/** Checks whether there are any exceptions gathered, and if so throws this {@link CompositeValidationException} */
public boolean throwCheck() throws CompositeValidationException {
if (exceptionsHash.size() > 0) {
throw this;
} else {
return false;
}
}
/** Prints the messages of all exceptions gathered */
public String toString() {
String message = "";
for (Iterator iter = exceptionsHash.values().iterator(); iter.hasNext();) {
InvalidValueException e = (InvalidValueException) iter.next();
message += e.getMessage();
if (iter.hasNext()) {
message += "\n";
}
}
return message;
}
/** returns the value of {@link #toString()} */
public String getMessage() {
return toString();
}
/** Gets the exceptions gathered for a specific field name */
public Collection getExceptions(String fieldName) {
return (Collection) exceptionsHash.get(fieldName);
}
}
|