org.jboss.weld.metadata.ScanningImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-servlet-shaded Show documentation
Show all versions of weld-servlet-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for running in a Servlet container.
/**
*
*/
package org.jboss.weld.metadata;
import org.jboss.weld.bootstrap.spi.Filter;
import org.jboss.weld.bootstrap.spi.Metadata;
import org.jboss.weld.bootstrap.spi.Scanning;
import java.util.Collection;
public class ScanningImpl implements Scanning {
private final Collection> includes;
private final Collection> excludes;
public ScanningImpl(Collection> includes, Collection> excludes) {
this.includes = includes;
this.excludes = excludes;
}
public Collection> getExcludes() {
return excludes;
}
public Collection> getIncludes() {
return includes;
}
@Override
public String toString() {
return "Includes: " + includes + "; Excludes: " + excludes;
}
}