org.jboss.weld.context.DependentContext Maven / Gradle / Ivy
package org.jboss.weld.context;
import javax.enterprise.context.Dependent;
import javax.enterprise.context.spi.AlterableContext;
/**
*
* 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 AlterableContext {
}