public InjectionContext<?, ?> create(Handler<Class<?>, Boolean> filter) throws Exception {
final Container container = new WeldContainer(classLoader, scopeController, scopes);
for (ReadFileSystem<?> fs : fileSystems) {
container.addFileSystem(fs);
}
CDIContext cdiContext = new CDIContext(this, filter) {
@Override
public ClassLoader getClassLoader() {
return container.getClassLoader();
}
@Override