SetLocaleCommand.java

/*
 * 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.commons.chain.web.javax;

import java.util.Locale;
import java.util.function.BiConsumer;

import org.apache.commons.chain.Command;
import org.apache.commons.chain.Context;

/**
 * Base {@link Command} implementation for setting the
 * response locale for this response to the {@code Locale} stored
 * under the context attribute key returned by the {@code localeKey}
 * property.
 *
 * @param <C> Type of the context associated with this command
 *
 * @author Stefan Graff
 * @since Chain 1.3
 */
public abstract class SetLocaleCommand<C extends WebContext> implements Command<C> {

    // ----------------------------------------------------- Instance Variables

    /**
     * BiConsumer to set the {@link Locale} into the {@code context}.
     */
    private final BiConsumer<C, Locale> localeBiConsumer;

    // ----------------------------------------------------------- Constructors

    /**
     * Construct a new instance to set the locale into the context.
     *
     * @param localeBiConsumer BiConsumer to set the {@link Locale} into
     *                         the {@code context}
     */
    public SetLocaleCommand(final BiConsumer<C, Locale> localeBiConsumer) {
        this.localeBiConsumer = localeBiConsumer;
    }

    // -------------------------------------------------------------- Properties

    /**
     * The context attribute key used to retrieve the {@code Locale}.
     */
    private String localeKey = "locale";

    /**
     * Return the context attribute key under which we will retrieve
     * the response {@code Locale}.
     *
     * @return The context attribute key of the request {@code Locale}.
     */
    public String getLocaleKey() {
        return this.localeKey;
    }

    /**
     * Set the context attribute key under which we will retrieve
     * the response {@code Locale}.
     *
     * @param localeKey The new context attribute key
     */
    public void setLocaleKey(String localeKey) {
        this.localeKey = localeKey;
    }

    // --------------------------------------------------------- Command Methods

    /**
     * Retrieve the {@code Locale} stored under the specified
     * context attribute key, and establish it on this response.
     *
     * @param context The {@link Context} we are operating on
     *
     * @return {@code false} so that processing will continue
     *
     * @throws Exception If an error occurs during execution.
     */
    @Override
    public boolean execute(C context) throws Exception {
        localeBiConsumer.accept(context, (Locale) context.get(getLocaleKey()));
        return false;
    }
}