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

org.icefaces.impl.application.WindowELResolver Maven / Gradle / Ivy

There is a newer version: 4.3.0
Show newest version
/*
 * Copyright 2004-2013 ICEsoft Technologies Canada Corp.
 *
 * 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
 *
 * 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.icefaces.impl.application;

import javax.el.ELContext;
import javax.el.ELResolver;
import javax.faces.context.FacesContext;
import java.beans.FeatureDescriptor;
import java.util.Collections;
import java.util.Iterator;

public class WindowELResolver extends ELResolver {

    public Object getValue(ELContext elContext, Object base, Object property) {
        if (base == null && WindowScopeManager.ScopeName.equals(property)) {
            WindowScopeManager.ScopeMap customScope = getScope(elContext);
            elContext.setPropertyResolved(true);
            return customScope;
        } else if (base != null && base instanceof WindowScopeManager.ScopeMap) {
            return lookup(elContext, (WindowScopeManager.ScopeMap) base, property);
        } else if (base == null) {
            return lookup(elContext, getScope(elContext), property);
        }
        return null;
    }

    public Class getType(ELContext elContext, Object base, Object property) {
        return Object.class;
    }

    public void setValue(ELContext elContext, Object base, Object property, Object value) {
        //do nothing!
    }

    public boolean isReadOnly(ELContext elContext, Object base, Object property) {
        return true;
    }

    public Iterator getFeatureDescriptors(ELContext elContext, Object base) {
        return Collections.emptyList().iterator();
    }

    public Class getCommonPropertyType(ELContext elContext, Object base) {
        if (base != null) {
            return null;
        }
        return String.class;
    }

    private WindowScopeManager.ScopeMap getScope(ELContext elContext) {
        FacesContext ctx = (FacesContext) elContext.getContext(FacesContext.class);
        return WindowScopeManager.lookupWindowScope(ctx);
    }


    private Object lookup(ELContext elContext, WindowScopeManager.ScopeMap scope, Object key) {
        if (null == scope) {
            return null;
        }

        Object value = scope.get(key);
        elContext.setPropertyResolved(value != null);
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy