
org.jboss.weld.metadata.ScanningImpl Maven / Gradle / Ivy
/**
*
*/
package org.jboss.weld.metadata;
import java.util.Collection;
import org.jboss.weld.bootstrap.spi.Filter;
import org.jboss.weld.bootstrap.spi.Metadata;
import org.jboss.weld.bootstrap.spi.Scanning;
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy