Package org.mifosplatform.infrastructure.core.service

Examples of org.mifosplatform.infrastructure.core.service.TenantDatabaseUpgradeService


     * Override TenantDatabaseUpgradeService binding, because the real one has a @PostConstruct
     * upgradeAllTenants() which accesses the database on start-up.
     */
    @Bean
    public TenantDatabaseUpgradeService tenantDatabaseUpgradeService() {
        return new TenantDatabaseUpgradeService(null, null, null) {
            @Override
            public void upgradeAllTenants() {
                // NOOP
            }
        };
View Full Code Here

TOP

Related Classes of org.mifosplatform.infrastructure.core.service.TenantDatabaseUpgradeService

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.