blob: e317d26418a5439c8ce310392b5404265dda01e3 [file] [log] [blame]
/*
* 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.myfaces.extensions.validator.core.validation.strategy;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.myfaces.extensions.validator.core.annotation.AnnotationEntry;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.convert.ConverterException;
import javax.faces.validator.ValidatorException;
/**
* @author Gerhard Petracek
*/
public abstract class AbstractValidatorAdapter implements ValidationStrategy
{
protected final Log logger = LogFactory.getLog(getClass());
public void validate(FacesContext facesContext, UIComponent uiComponent,
AnnotationEntry annotationEntry, Object convertedObject)
{
initValidation(facesContext, uiComponent, annotationEntry,
convertedObject);
try
{
processValidation(facesContext, uiComponent, annotationEntry,
convertedObject);
}
catch (ValidatorException e)
{
if (processAfterValidatorException(facesContext, uiComponent,
annotationEntry, convertedObject, e))
{
throw new ConverterException(e.getFacesMessage(), e);
}
}
}
protected void initValidation(FacesContext facesContext,
UIComponent uiComponent, AnnotationEntry annotationEntry,
Object convertedObject)
{
//override if needed
}
//override if needed
protected boolean processAfterValidatorException(FacesContext facesContext,
UIComponent uiComponent, AnnotationEntry annotationEntry,
Object convertedObject, ValidatorException e)
{
return true;
}
protected abstract void processValidation(FacesContext facesContext,
UIComponent uiComponent, AnnotationEntry annotationEntry,
Object convertedObject) throws ValidatorException;
}