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

org.demoiselle.jee.script.DynamicManagerCache Maven / Gradle / Ivy

The newest version!
/*
 * Demoiselle Framework
 *
 * License: GNU Lesser General Public License (LGPL), version 3 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.demoiselle.jee.script;

import java.io.Serializable;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import javax.enterprise.context.ApplicationScoped;

/**
 * Dynamic Manage Cache - Responsible for Script Cache
 *
 * @author SERPRO
 */
@ApplicationScoped
public class DynamicManagerCache implements Serializable {

    private static final long serialVersionUID = 2305168056315491913L;

    static Map> scriptCache = new ConcurrentHashMap>();
    static Map engineList = new ConcurrentHashMap();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy