Probably the heading is not very clear. Here is the problem/scenario.
Class A is loaded by ClassloaderA Class B is loaded by ClassloaderB
ClassloaderB is in lower hierarchy than ClassloaderA so I'm aware that class A can not access class B.
Is there any way at all that class A can access class b. (Say if Class A accesses ClassloaderB and asks to give Class B then access it's methods using reflection)
Is this possible?