blob: 6d6bfdeccd8ce392daebd00725132922b7df8fcd [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.implemetations;
import org.apache.myfaces.extensions.scripting.api.Decorated;
import org.apache.myfaces.extensions.scripting.api.ScriptingConst;
import org.apache.myfaces.extensions.scripting.core.util.WeavingContext;
import javax.el.ELContext;
import javax.el.ELException;
import javax.el.ELResolver;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.util.Iterator;
import java.util.logging.Logger;
/**
* EL Resolver which is scripting enabled
*
* @author Werner Punz
*/
public class ELResolverProxy extends ELResolver implements Decorated {
Logger log = Logger.getLogger(ELResolverProxy.class.getName());
ELResolver _delegate = null;
public ELResolverProxy(ELResolver delegate) {
_delegate = delegate;
}
public Object getValue(ELContext elContext, final Object base, final Object property) throws NullPointerException, ELException {
return _delegate.getValue(elContext, base, property);
}
public Class<?> getType(ELContext elContext, Object base, Object property) throws NullPointerException, ELException {
return _delegate.getType(elContext, base, property);
}
public void setValue(ELContext elContext, Object base, Object property, Object value) throws NullPointerException, ELException {
if (base != null) {
WeavingContext.getRefreshContext().getDependencyRegistry().addDependency(ScriptingConst.ENGINE_TYPE_JSF_ALL, base.getClass().getName(), base.getClass().getName(), value.getClass().getName());
}
_delegate.setValue(elContext, base, property, value);
}
public boolean isReadOnly(ELContext elContext, Object o, Object o1) throws NullPointerException, ELException {
return _delegate.isReadOnly(elContext, o, o1);
}
public Iterator getFeatureDescriptors(ELContext elContext, Object o) {
return _delegate.getFeatureDescriptors(elContext, o);
}
public Class<?> getCommonPropertyType(ELContext elContext, Object o) {
return _delegate.getCommonPropertyType(elContext, o);
}
public Object getDelegate() {
return _delegate;
}
}