Class ThreadLocalNamedInvoker<T>
- java.lang.Object
-
- org.glassfish.jersey.servlet.internal.ThreadLocalInvoker<T>
-
- org.glassfish.jersey.servlet.internal.ThreadLocalNamedInvoker<T>
-
- All Implemented Interfaces:
InvocationHandler
public class ThreadLocalNamedInvoker<T> extends ThreadLocalInvoker<T>
A proxy invocation handler that delegates all methods to a thread local instance from JNDI.- Author:
- Paul Sandoz
-
-
Constructor Summary
Constructors Constructor Description ThreadLocalNamedInvoker(String name)Create an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectinvoke(Object proxy, Method method, Object[] args)-
Methods inherited from class org.glassfish.jersey.servlet.internal.ThreadLocalInvoker
get, set
-
-
-
-
Constructor Detail
-
ThreadLocalNamedInvoker
public ThreadLocalNamedInvoker(String name)
Create an instance.- Parameters:
name- the JNDI name at which an instance of T can be found.
-
-