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

org.molgenis.js.sandbox.SandboxClassShutter Maven / Gradle / Ivy

package org.molgenis.js.sandbox;

import org.mozilla.javascript.ClassShutter;

/**
 * A {@link ClassShutter} that locks out access to all native classes.
 */
public class SandboxClassShutter implements ClassShutter
{
	@Override
	public boolean visibleToScripts(String fullClassName)
	{
		return false;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy