Package org.mifosplatform.infrastructure.configuration.domain

Examples of org.mifosplatform.infrastructure.configuration.domain.ConfigurationDomainService


        this.applicationContext = applicationContext;
        this.externalServicesReadPlatformService = externalServicesReadPlatformService;
    }

    public ContentRepository getRepository() {
        final ConfigurationDomainService configurationDomainServiceJpa = this.applicationContext.getBean("configurationDomainServiceJpa",
                ConfigurationDomainService.class);
        if (configurationDomainServiceJpa.isAmazonS3Enabled()) { return createS3DocumentStore(); }
        return new FileSystemContentRepository();
    }
View Full Code Here

TOP

Related Classes of org.mifosplatform.infrastructure.configuration.domain.ConfigurationDomainService

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.