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

com.liferay.portal.kernel.scripting.ScriptingUtil Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.portal.kernel.scripting;

import com.liferay.portal.kernel.util.ServiceProxyFactory;

import java.util.Map;
import java.util.Set;

/**
 * @author Alberto Montero
 * @author Brian Wing Shun Chan
 * @author Shuyang Zhou
 */
public class ScriptingUtil {

	public static void clearCache(String language) throws ScriptingException {
		_getScripting().clearCache(language);
	}

	public static ScriptingExecutor createScriptingExecutor(
		String language, boolean executeInSeparateThread) {

		return _getScripting().createScriptingExecutor(
			language, executeInSeparateThread);
	}

	public static Map eval(
			Set allowedClasses, Map inputObjects,
			Set outputNames, String language, String script)
		throws ScriptingException {

		return _getScripting().eval(
			allowedClasses, inputObjects, outputNames, language, script);
	}

	/**
	 * @deprecated As of Wilberforce (7.0.x), replaced by {@link #eval(Set, Map,
	 *             Set, String, String)}
	 */
	@Deprecated
	public static Map eval(
			Set allowedClasses, Map inputObjects,
			Set outputNames, String language, String script,
			String... servletContextNames)
		throws ScriptingException {

		return _getScripting().eval(
			allowedClasses, inputObjects, outputNames, language, script,
			servletContextNames);
	}

	public static void exec(
			Set allowedClasses, Map inputObjects,
			String language, String script)
		throws ScriptingException {

		_getScripting().exec(allowedClasses, inputObjects, language, script);
	}

	/**
	 * @deprecated As of Wilberforce (7.0.x), replaced by {@link #exec(Set, Map,
	 *             String, String)}
	 */
	@Deprecated
	public static void exec(
			Set allowedClasses, Map inputObjects,
			String language, String script, String... servletContextNames)
		throws ScriptingException {

		_getScripting().exec(
			allowedClasses, inputObjects, language, script,
			servletContextNames);
	}

	/**
	 * @deprecated As of Judson (7.1.x), replaced by {@link #_getScripting()}
	 */
	@Deprecated
	public static Scripting getScripting() {
		return _getScripting();
	}

	public static Set getSupportedLanguages() {
		return _getScripting().getSupportedLanguages();
	}

	private static Scripting _getScripting() {
		return _scripting;
	}

	private static volatile Scripting _scripting =
		ServiceProxyFactory.newServiceTrackedInstance(
			Scripting.class, ScriptingUtil.class, "_scripting", false);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy