Package com.infoclinika.mssharing.fileserver.impl

Examples of com.infoclinika.mssharing.fileserver.impl.InMemoryStorageService


@ComponentScan(basePackages = {"com.infoclinika.mssharing.model", "com.infoclinika.mssharing.search"})
class SpringConfig {

    @Bean
    public StorageService inMemoryStorage() {
        return new InMemoryStorageService();
    }
View Full Code Here


@ImportResource({"persistence.cfg.xml", "h2.cfg.xml"})
@ComponentScan(basePackages = "com.infoclinika.mssharing.model")
class SpringConfig {
    @Bean
    public StorageService inMemoryStorage() {
        return new InMemoryStorageService();
    }
View Full Code Here

TOP

Related Classes of com.infoclinika.mssharing.fileserver.impl.InMemoryStorageService

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.