All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.bootfastconfig.cache.redis.RedisCacheConfigGather Maven / Gradle / Ivy

Go to download

Parent pom providing dependency and plugin management for applications built with Maven

The newest version!
package com.github.bootfastconfig.cache.redis;

import org.springframework.data.redis.cache.RedisCacheConfiguration;


/**
 * The interface Cache config.
 *
 * @author mister
 */
public interface RedisCacheConfigGather {


    /**
     * Add redis cache config.
     *
     * @param redisCacheConfig the redis cache config
     */
    default void addRedisCacheConfig(RedisCacheConfig redisCacheConfig) {
    }


    /**
     * Get default redis cache config redis cache configuration.
     *
     * @return the redis cache configuration
     */
    default RedisCacheConfiguration getDefaultRedisCacheConfig() {
        return null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy