Package org.exoplatform.container.weld
Interface WeldContainerHelper
-
- All Known Implementing Classes:
BasicWeldContainerHelper
public interface WeldContainerHelperThe main purpose of this class is to provide all theExtensionto theWeldContainerand to limit the scope of theWeldContainerin order to make sure thatWeldwon't manage all the components.- Version:
- $Id$
- Author:
- Nicolas Filotto
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<javax.enterprise.inject.spi.Extension>getExtensions()Gives the list of all theExtensionto be added toWeldbooleanisIncluded(Class<?> clazz)Indicates whether or not a given class must be managed byWeld
-
-
-
Method Detail
-
getExtensions
List<javax.enterprise.inject.spi.Extension> getExtensions()
Gives the list of all theExtensionto be added toWeld
-
isIncluded
boolean isIncluded(Class<?> clazz)
Indicates whether or not a given class must be managed byWeld- Parameters:
clazz- the class of the component- Returns:
trueif the component is part of the scope ofWeld,falseotherwise.
-
-