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

com.ovea.tajin.i18n.JsonI18NServiceFactory Maven / Gradle / Ivy

There is a newer version: 1.0.b11
Show newest version
/**
 * Copyright (C) 2011 Ovea 
 *
 * 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 com.ovea.tajin.i18n;

import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

/**
 * @author Mathieu Carbou ([email protected])
 */
public final class JsonI18NServiceFactory implements I18NServiceFactory {

    private final ConcurrentMap cache = new ConcurrentHashMap();
    private boolean debug;
    private ClassLoader classLoader = Thread.currentThread().getContextClassLoader();

    @Override
    public I18NService forBundle(String bundleName) {
        return forBundle(bundleName, getClassLoader());
    }

    @Override
    public I18NService forBundle(String bundleName, ClassLoader classLoader) {
        bundleName = bundleName.startsWith("/") ? bundleName.substring(1) : bundleName;
        JsonI18NService service = cache.get(bundleName);
        if (service == null) {
            cache.putIfAbsent(bundleName, new JsonI18NService(bundleName, classLoader));
            service = cache.get(bundleName);
            service.setDebug(isDebug());
        }
        return service;
    }

    public boolean isDebug() {
        return debug;
    }

    public void setDebug(boolean debug) {
        this.debug = debug;
    }

    public ClassLoader getClassLoader() {
        return classLoader;
    }

    public void setClassLoader(ClassLoader classLoader) {
        this.classLoader = classLoader;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy