Package org.libreplan.business

Examples of org.libreplan.business.IDataBootstrap


        String[] beanNames = BeanFactoryUtils
                .beanNamesForTypeIncludingAncestors(webApplicationContext,
                        IDataBootstrap.class);
        List<IDataBootstrap> result = new ArrayList<IDataBootstrap>();
        for (String name : beanNames) {
            IDataBootstrap bootstrap = (IDataBootstrap) webApplicationContext
                    .getBean(name);
            result.add(bootstrap);
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of org.libreplan.business.IDataBootstrap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.