Package org.sonatype.guice.bean.binders

Examples of org.sonatype.guice.bean.binders.SpaceModule


    public void configure(final Binder binder) {
        assert binder != null;

         // Scan for @Named components using the bean index
        binder.install(new SpaceModule(space, globalIndex ? BeanScanning.GLOBAL_INDEX : BeanScanning.INDEX));

        // Scan for @Extension components via SezPoz index
        binder.install(new SezPozExtensionModule(space, globalIndex));
    }
View Full Code Here

TOP

Related Classes of org.sonatype.guice.bean.binders.SpaceModule

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.