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

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

There is a newer version: 3.0.4
Show 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.HashMap;
import java.util.concurrent.ConcurrentHashMap;

import javax.enterprise.context.ApplicationScoped;

/** 
 * Dynamic Manage Cache - Responsible for Script Cache
 *
 * @author SERPRO
 */
@ApplicationScoped 
final class DynamicManagerCache implements Serializable {
	private static final long serialVersionUID = 2305168056315491913L;
	
	static HashMap > scriptCache = new HashMap  >();	
	static HashMap engineList = new HashMap();	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy