Uses of Class
net.rubyeye.xmemcached.auth.AuthInfo
-
Packages that use AuthInfo Package Description net.rubyeye.xmemcached XMemcached's main classes and interfaces,use these classes/interfaces to interact with memcached servers.net.rubyeye.xmemcached.auth Memcached 1.4.3 or later version has supported SASL authentication,these classes are used for that -
-
Uses of AuthInfo in net.rubyeye.xmemcached
Fields in net.rubyeye.xmemcached with type parameters of type AuthInfo Modifier and Type Field Description protected Map<InetSocketAddress,AuthInfo>XMemcachedClientBuilder. authInfoMapMethods in net.rubyeye.xmemcached that return types with arguments of type AuthInfo Modifier and Type Method Description Map<InetSocketAddress,AuthInfo>MemcachedClient. getAuthInfoMap()return current all auth infoMap<InetSocketAddress,AuthInfo>MemcachedClientBuilder. getAuthInfoMap()return current all auth infoMap<InetSocketAddress,AuthInfo>XMemcachedClient. getAuthInfoMap()Map<InetSocketAddress,AuthInfo>XMemcachedClientBuilder. getAuthInfoMap()Map<String,AuthInfo>MemcachedClient. getAuthInfoStringMap()Retruns the AuthInfo for all server strings (hostname:port)Map<String,AuthInfo>XMemcachedClient. getAuthInfoStringMap()Methods in net.rubyeye.xmemcached with parameters of type AuthInfo Modifier and Type Method Description voidMemcachedClientBuilder. addAuthInfo(InetSocketAddress address, AuthInfo authInfo)Add auth info for memcached servervoidXMemcachedClientBuilder. addAuthInfo(InetSocketAddress address, AuthInfo authInfo)Method parameters in net.rubyeye.xmemcached with type arguments of type AuthInfo Modifier and Type Method Description voidMemcachedClient. setAuthInfoMap(Map<InetSocketAddress,AuthInfo> map)Configure auth infovoidMemcachedClientBuilder. setAuthInfoMap(Map<InetSocketAddress,AuthInfo> map)Configure auth infovoidXMemcachedClient. setAuthInfoMap(Map<InetSocketAddress,AuthInfo> map)voidXMemcachedClientBuilder. setAuthInfoMap(Map<InetSocketAddress,AuthInfo> authInfoMap) -
Uses of AuthInfo in net.rubyeye.xmemcached.auth
Methods in net.rubyeye.xmemcached.auth that return AuthInfo Modifier and Type Method Description static AuthInfoAuthInfo. cramMD5(String username, String password)Get a typical auth descriptor for CRAM-MD5 auth with the given username and password.static AuthInfoAuthInfo. plain(String username, String password)Get a typical auth descriptor for PLAIN auth with the given username and password.static AuthInfoAuthInfo. typical(String username, String password)Get a typical auth descriptor for CRAM-MD5 or PLAIN auth with the given username and password.Constructors in net.rubyeye.xmemcached.auth with parameters of type AuthInfo Constructor Description AuthTask(AuthInfo authInfo, CommandFactory commandFactory, MemcachedTCPSession memcachedTCPSession)
-