All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.webbeans.el22.WrappedExpressionFactory Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
/*
 * 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.webbeans.el22;

import javax.el.ELContext;
import javax.el.ELException;
import javax.el.ExpressionFactory;
import javax.el.MethodExpression;
import javax.el.ValueExpression;

public class WrappedExpressionFactory extends ExpressionFactory
{
    private ExpressionFactory expressionFactory;

    public WrappedExpressionFactory(ExpressionFactory expressionFactory)
    {
        this.expressionFactory = expressionFactory;
    }
    
    @Override
    public Object coerceToType(Object arg0, Class arg1) throws ELException
    {
        return expressionFactory.coerceToType(arg0, arg1);
    }

    @Override
    public MethodExpression createMethodExpression(ELContext arg0, String arg1, Class arg2, Class[] arg3) throws ELException, NullPointerException
    {
        return new WrappedMethodExpression(expressionFactory.createMethodExpression(arg0, arg1, arg2, arg3));
    }

    @Override
    public ValueExpression createValueExpression(Object arg0, Class arg1)
    {
        ValueExpression wrapped = expressionFactory.createValueExpression(arg0, arg1);
        
        return new WrappedValueExpression(wrapped);
    }

    @Override
    public ValueExpression createValueExpression(ELContext arg0, String arg1, Class arg2) throws NullPointerException, ELException
    {   
        ValueExpression wrapped = expressionFactory.createValueExpression(arg0, arg1, arg2);
                
        return new WrappedValueExpression(wrapped);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy