org.jboss.weld.context.ejb.EjbRequestContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-osgi-bundle Show documentation
Show all versions of weld-osgi-bundle Show documentation
Weld runtime packaged as an OSGi bundle
package org.jboss.weld.context.ejb;
import javax.interceptor.InvocationContext;
import org.jboss.weld.context.BoundContext;
import org.jboss.weld.context.RequestContext;
/**
*
* A request context which can be bound to the {@link InvocationContext}. The
* context is automatically attached to the map on activation, and detached when
* {@link #invalidate()} is called.
*
*
*
* This context is not thread safe, and provides no thread safety for the
* underlying map.
*
*
*
* @author Pete Muir
*
*/
public interface EjbRequestContext extends RequestContext, BoundContext
{
}