org.jboss.weld.context.DependentContext 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;
import javax.enterprise.context.Dependent;
import javax.enterprise.context.spi.Context;
/**
*
* The built in dependent context, associated with {@link Dependent}. It is
* always active.
*
*
*
* Weld comes with one Dependent context which can be injected using:
*
*
*
* @Inject DependentContext dependentContext;
*
*
* @author Pete Muir
*
*/
public interface DependentContext extends Context
{
}