Дано:
Object innerProxy = ... Object proxy = java.lang.reflect.Proxy. newProxyInstance(Thread.currentThread().getContextClassLoader(), new Class[]{type}, innerProxy);
Как извлечь объект innerProxy из proxy?
innerProxy
proxy
Вы можете использовать Proxy.getInvocationHandler():
Proxy.getInvocationHandler()
InvocationHandler innerProxy = Proxy.getInvocationHandler(proxy);