Package org.mifosplatform.infrastructure.cache.domain

Examples of org.mifosplatform.infrastructure.cache.domain.PlatformCache


    }

    @Transactional
    @Override
    public void updateCache(final CacheType cacheType) {
        final PlatformCache cache = this.cacheTypeRepository.findOne(Long.valueOf(1));
        cache.update(cacheType);
        this.cacheTypeRepository.save(cache);
    }
View Full Code Here

TOP

Related Classes of org.mifosplatform.infrastructure.cache.domain.PlatformCache

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.