org.springframework.faces.webflow.FlowRenderKit Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2004-2023 the original author or authors.
*
* Licensed 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
*
* https://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.springframework.faces.webflow;
import jakarta.faces.render.RenderKit;
import jakarta.faces.render.RenderKitWrapper;
import jakarta.faces.render.ResponseStateManager;
/**
* A render kit implementation that ensures use of Web Flow's FlowViewResponseStateManager, which takes over reading and
* writing JSF state and manages that in Web Flow's view scope.
*
* @author Rossen Stoyanchev
* @author Phillip Webb
* @since 2.2.0
*/
public class FlowRenderKit extends RenderKitWrapper {
private final RenderKit wrapped;
private final ResponseStateManager flowViewResponseStateManager;
public FlowRenderKit(RenderKit wrapped) {
this.wrapped = wrapped;
this.flowViewResponseStateManager = new FlowResponseStateManager(wrapped.getResponseStateManager());
}
public RenderKit getWrapped() {
return this.wrapped;
}
/**
* Returns an instance of {@link FlowResponseStateManager} in a JSF 2 environment or returns the delegates's
* ResponseStateManager instance otherwise.
*/
public ResponseStateManager getResponseStateManager() {
if (JsfUtils.isFlowRequest()) {
return this.flowViewResponseStateManager;
}
return this.wrapped.getResponseStateManager();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy