How would one secure a Java class?
As in; users download a class, used as a "script".
They can see the source files of the client,
where this script is added in, but I do not want them to be able to find the source file of this script.
Could there be a method in the Java API that enables the loading of scripts, from a database for a website, but does not save the class.
That way the users can't decompile the class file.

