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

org.apache.velocity.tools.generic.LocaleConfig Maven / Gradle / Ivy

Go to download

Generic tools that can be used in any context. PLEASE NOTE: this is a temporary fork to unblock projects migrating to Jakarta, but I won't continue maintaining it in the future as the Velocity team doesn't understand the value of Jakarta. I strongly suggest you plan a switch to a more modern template engine such as Thymeleaf.

The newest version!
package org.apache.velocity.tools.generic;

/*
 * 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.
 */

import java.util.Locale;

import org.apache.velocity.tools.ConversionUtils;
import org.apache.velocity.tools.ToolContext;

/**
 * Implements common logic and constants for tools which allow their
 * default {@link Locale} to be configured.
 *
 * @author Nathan Bubna
 * @since VelocityTools 2.0
 */
public class LocaleConfig extends SafeConfig
{
    /**
     * The default {@link Locale} to be used when none is specified.
     */
    public static final Locale DEFAULT_LOCALE = Locale.getDefault();

    private Locale locale = DEFAULT_LOCALE;

    /**
     * Does the actual configuration. This is protected, so
     * subclasses may share the same ValueParser and call configure
     * at any time, while preventing templates from doing so when 
     * configure(Map) is locked.
     */
    protected void configure(ValueParser values)
    {
        Locale locale = values.getLocale(ToolContext.LOCALE_KEY);
        if (locale != null)
        {
            setLocale(locale);
        }
    }

    /**
     * This returns the configured default {@link Locale} for this tool.
     *
     * @return the default {@link Locale}
     */
    public Locale getLocale()
    {
        return this.locale;
    }

    /**
     * Sets the default locale for this instance.
     * @param locale default locale to use
     */
    protected void setLocale(Locale locale)
    {
        this.locale = locale;
    }

    /**
     * @param value the object to be converted
     * @return a {@link Locale} for the specified value or
     *         null if the value is null or the conversion failed
     * @since VelocityTools 3.0
     */
    public Locale toLocale(Object value)
    {
        if (value == null)
        {
            return null;
        }
        else if (value instanceof Locale)
        {
            return (Locale)value;
        }
        return ConversionUtils.toLocale(String.valueOf(value));
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy