I am sending a Class<> object over the network.
Now, when I receive the object on the other side, I'd like to be able to load it to the current class loader. The problem is that the only method that seems to do the job is protected (resolveClass(Class<?> c)). So, to use it, I'd have to extend the default classloader.
So, is there any easier way to do this?
Constraints: Unfortunately, I can't write to the server's disk, so the obvious solution to send the .class file instead of an object is not feasible.