Scene 1 : In STUB, I have a synchronized method. When multiple clients download the stub and call the method, I can see the calls are synchronized, (ie no 2 thread are accessing internal method code at same time). Scene 2 : Stub method is not synchronized. But, it calls methodA() of singleton object, and methodA() is synchronized. Internally methodA() a ...