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

org.apache.shale.test.el.FacesResourceBundleELResolver Maven / Gradle / Ivy

/*
 * 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.shale.test.el;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.ResourceBundle;
import java.util.Map.Entry;

import javax.el.ELContext;
import javax.el.PropertyNotFoundException;
import javax.el.PropertyNotWritableException;
import javax.faces.context.FacesContext;

import org.apache.shale.test.mock.MockApplication12;

/**
 * 

ELResolver implementation that accesses resource bundles * in the current application. See the JSF 1.2 Specification, section * 5.6.1.3, for requirements implemented by this class.

* * @since 1.0.4 */ public class FacesResourceBundleELResolver extends AbstractELResolver { /** *

Return the most general type this resolver accepts for the * property argument.

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

Return an Iterator over the attributes that this * resolver knows how to deal with.

* * @param context ELContext for evaluating this value * @param base Base object against which this evaluation occurs */ public Iterator getFeatureDescriptors(ELContext context, Object base) { if (base != null) { return null; } // Create the variables we will need List descriptors = new ArrayList(); FacesContext fcontext = (FacesContext) context.getContext(FacesContext.class); MockApplication12 application = (MockApplication12) fcontext.getApplication(); String key = null; Object value = null; // Create a feature descriptor for each configured resource bundle Iterator entries = application.getResourceBundles().entrySet().iterator(); while (entries.hasNext()) { Entry entry = (Entry) entries.next(); key = (String) entry.getKey(); value = entry.getValue(); descriptors.add(descriptor(key, key, "Resource Bundle " + key, false, false, true, ResourceBundle.class, true)); } // Return the accumulated descriptors return descriptors.iterator(); } /** *

Return the Java type of the specified property.

* * @param context ELContext for evaluating this value * @param base Base object against which this evaluation occurs * (must be null because we are evaluating a top level variable) * @param property Property name to be accessed */ public Class getType(ELContext context, Object base, Object property) { if (base != null) { return null; } if (property == null) { throw new PropertyNotFoundException("No property specified"); } FacesContext fcontext = (FacesContext) context.getContext(FacesContext.class); ResourceBundle bundle = fcontext.getApplication().getResourceBundle(fcontext, property.toString()); if (bundle != null) { context.setPropertyResolved(true); return ResourceBundle.class; } return null; } /** *

Return a resource bundle for the specified name (if any); * otherwise, return null.

* * @param context ELContext for evaluating this value * @param base Base object against which this evaluation occurs * (must be null because we are evaluating a top level variable) * @param property Property name to be accessed */ public Object getValue(ELContext context, Object base, Object property) { if (base != null) { return null; } if (property == null) { throw new PropertyNotFoundException("No property specified"); } FacesContext fcontext = (FacesContext) context.getContext(FacesContext.class); ResourceBundle bundle = fcontext.getApplication().getResourceBundle(fcontext, property.toString()); if (bundle != null) { context.setPropertyResolved(true); return bundle; } return null; } /** *

Return true if the specified property is read only.

* * @param context ELContext for evaluating this value * @param base Base object against which this evaluation occurs * (must be null because we are evaluating a top level variable) * @param property Property name to be accessed */ public boolean isReadOnly(ELContext context, Object base, Object property) { if (base != null) { return false; } if (property == null) { throw new PropertyNotFoundException("No property specified"); } FacesContext fcontext = (FacesContext) context.getContext(FacesContext.class); ResourceBundle bundle = fcontext.getApplication().getResourceBundle(fcontext, property.toString()); if (bundle != null) { context.setPropertyResolved(true); return true; } return false; } /** *

Set the value of a scoped object for the specified name.

* * @param context ELContext for evaluating this value * @param base Base object against which this evaluation occurs * (must be null because we are evaluating a top level variable) * @param property Property name to be accessed * @param value New value to be set */ public void setValue(ELContext context, Object base, Object property, Object value) { if (base != null) { return; } if (property == null) { throw new PropertyNotFoundException("No property specified"); } FacesContext fcontext = (FacesContext) context.getContext(FacesContext.class); ResourceBundle bundle = fcontext.getApplication().getResourceBundle(fcontext, property.toString()); if (bundle != null) { context.setPropertyResolved(true); throw new PropertyNotWritableException(property.toString()); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy