blob: 6cc84b6b070dbb92fc8eb2810cf2e609c355c9ed [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.scripting.jsf.dynamicDecorators.factories;
import org.apache.myfaces.extensions.scripting.core.api.Decorated;
import org.apache.myfaces.extensions.scripting.core.api.WeavingContext;
import org.apache.myfaces.extensions.scripting.jsf.dynamicDecorators.implementations.FacesContextProxy;
import javax.faces.FacesException;
import javax.faces.context.FacesContext;
import javax.faces.context.FacesContextFactory;
import javax.faces.lifecycle.Lifecycle;
/**
* Faces context weaver which builds
* our reloading proxy around the current faces context
*
* @author Werner Punz
*/
public class ScriptingFacesContextFactory extends FacesContextFactory implements Decorated
{
public FacesContextFactory _delegate;
public ScriptingFacesContextFactory(FacesContextFactory delegate) {
_delegate = delegate;
}
public void setDelegate(FacesContextFactory delegate) {
_delegate = delegate;
}
public FacesContext getFacesContext(Object o, Object o1, Object o2, Lifecycle lifecycle) throws FacesException {
FacesContext retVal = _delegate.getFacesContext(o, o1, o2, lifecycle);
if (WeavingContext.getInstance().isScriptingEnabled() && !(retVal instanceof FacesContextProxy))
return new FacesContextProxy(retVal);
return retVal;
}
@Override
public FacesContextFactory getWrapped() {
return _delegate.getWrapped();
}
public Object getDelegate() {
return _delegate;
}
}