127128129130131132133134135136137138
log.config(L.l("resin:import '{0}'", path.getNativePath())); Environment.addDependency(new Depend(path)); Config config = new Config(); // server/10hc // config.setResinInclude(true); config.configureBean(object, path, schema); } }
187188189190191192193194195196
// ioc/0041 - tck allows empty beans.xml BeansConfig beans = new BeansConfig(_cdiManager, beansPath); beansPath.setUserPath(beansPath.getURL()); new Config().configure(beans, beansPath, SCHEMA); _pendingBeans.add(beans); } }
197198199200201202203204
private void configureXmlOverridePath(Path beansPath) throws IOException { ContextConfig context = new ContextConfig(_cdiManager, beansPath); Config config = new Config(); config.configure(context, beansPath, SCHEMA); }