All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.weld.context.http.HttpRequestContext Maven / Gradle / Ivy

Go to download

This jar bundles all the bits of Weld and CDI required for running in a Servlet container.

There is a newer version: 6.0.0.Beta4
Show newest version
package org.jboss.weld.context.http;

import javax.servlet.ServletRequest;
import javax.servlet.http.HttpServletRequest;

import org.jboss.weld.context.BoundContext;
import org.jboss.weld.context.RequestContext;

/**
 * 

* A request context which can be bound to the {@link ServletRequest}. 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 HttpRequestContext extends BoundContext, RequestContext { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy