blob: 3d99b986847bf7d90e5184e760ae07a68f8ddd41 [file] [log] [blame]
/*
* $Id$
*
* 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.struts2.jsf;
import javax.faces.FacesException;
import javax.faces.context.FacesContext;
import javax.faces.event.PhaseId;
/**
* Processes validations on the component tree
*/
public class ProcessValidationsInterceptor extends FacesInterceptor {
private static final long serialVersionUID = 8785236570688278147L;
/**
* Process Validations (JSF.2.2.3)
*
* @param viewId
* The view id
* @param facesContext
* The faces context
* @return true, if response is complete
*/
protected boolean executePhase(String viewId, FacesContext facesContext)
throws FacesException {
boolean skipFurtherProcessing = false;
if (log.isTraceEnabled())
log.trace("entering processValidations");
informPhaseListenersBefore(facesContext, PhaseId.PROCESS_VALIDATIONS);
try {
if (isResponseComplete(facesContext, "processValidations", true)) {
// have to return right away
return true;
}
if (shouldRenderResponse(facesContext, "processValidations", true)) {
skipFurtherProcessing = true;
}
facesContext.getViewRoot().processValidators(facesContext);
} finally {
informPhaseListenersAfter(facesContext, PhaseId.PROCESS_VALIDATIONS);
}
if (isResponseComplete(facesContext, "processValidations", false)
|| shouldRenderResponse(facesContext, "processValidations",
false)) {
// since this phase is completed we don't need to return right away
// even if the response is completed
skipFurtherProcessing = true;
}
if (!skipFurtherProcessing && log.isTraceEnabled())
log.trace("exiting processValidations");
return skipFurtherProcessing;
}
}