Package org.jboss.weld.bootstrap.spi
Interface Scanning
public interface Scanning
Scanning is a data structures representing the <scan> element in Weld's extensions to beans.xml. See the XSD for Weld's
extensions to beans.xml for details of the semantics of <scan>. Scanning contains an include Filter
list and an exclude Filter list.
- Author:
- Pete Muir
-
Field Details
-
EMPTY_SCANNING
AScanninginstance with no include or exclude filters
-
-
Method Details
-
getIncludes
Collection<Metadata<Filter>> getIncludes()The <include> element- Returns:
- the include element
-
getExcludes
Collection<Metadata<Filter>> getExcludes()The <exclude> element- Returns:
- the exclude element
-