Package org.candlepin.gutterball.config

Examples of org.candlepin.gutterball.config.JPAConfigurationParser


    protected void bindI18n() {
        bind(I18n.class).toProvider(I18nProvider.class).in(ServletScopes.REQUEST);
    }

    protected void configureJPA() {
        JPAConfigurationParser parser = new JPAConfigurationParser(this.config);
        install(new JpaPersistModule("default").properties(parser.parseConfig()));
        bind(JPAInitializer.class).asEagerSingleton();
    }
View Full Code Here

TOP

Related Classes of org.candlepin.gutterball.config.JPAConfigurationParser

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.