}
}
- private ThreadLocal<T> svc = new ThreadLocal<T>();
+ private ThreadLocal<T> svc;
private Class clazz;
+ private T proxy;
/**
* Constructs the factory.
throw new IllegalArgumentException("Class " + aClass.getName() +
" is not an interface");
}
+ svc = new ThreadLocal<T>();
clazz = aClass;
+ proxy = createProxy();
}
/**
* @return Proxy.
*/
public T getProxy() {
+ return proxy;
+ }
+
+ private T createProxy() {
InvocationHandler handler = new ThreadSpecificInvocationHandler();
Class proxyClass = Proxy.getProxyClass(clazz.getClassLoader(),
new Class[] { clazz });
- T proxy;
+ T proxyObj;
try {
- proxy = (T) proxyClass.getConstructor(
+ proxyObj = (T) proxyClass.getConstructor(
new Class[] { InvocationHandler.class }).newInstance(
new Object[] { handler });
- return proxy;
+ return proxyObj;
} catch (Exception e) {
throw new RuntimeException("Could not create proxy for " +
clazz.getName(), e);