This actually hands you back the proxy class. Multiple calls here create separate proxies, but they all go the same place. Uses the current thread context classloader. @return proxy
()
| 172 | * @return proxy |
| 173 | */ |
| 174 | public T clientProxy() { |
| 175 | return clientProxy(Thread.currentThread().getContextClassLoader()); |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * This actually hands you back the proxy class. Multiple calls here |