com.googlecode.xmemcached.spring.boot.AuthInfoProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmemcached-spring-boot-starter Show documentation
Show all versions of xmemcached-spring-boot-starter Show documentation
Spring Boot Starter For Xmemcached
package com.googlecode.xmemcached.spring.boot;
import net.rubyeye.xmemcached.auth.AuthInfo;
import java.net.InetSocketAddress;
import java.util.HashMap;
import java.util.Map;
public interface AuthInfoProvider {
default Map getAuthInfoMap(){
return new HashMap<>();
};
}