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 private java.util.Map<java.net.InetSocketAddress,AuthInfo>
XMemcachedClient. authInfoMap
protected java.util.Map<java.net.InetSocketAddress,AuthInfo>
XMemcachedClientBuilder. authInfoMap
private java.util.Map<java.lang.String,AuthInfo>
XMemcachedClient. authInfoStringMap
Methods in net.rubyeye.xmemcached that return types with arguments of type AuthInfo Modifier and Type Method Description java.util.Map<java.net.InetSocketAddress,AuthInfo>
MemcachedClient. getAuthInfoMap()
return current all auth infojava.util.Map<java.net.InetSocketAddress,AuthInfo>
MemcachedClientBuilder. getAuthInfoMap()
return current all auth infojava.util.Map<java.net.InetSocketAddress,AuthInfo>
XMemcachedClient. getAuthInfoMap()
java.util.Map<java.net.InetSocketAddress,AuthInfo>
XMemcachedClientBuilder. getAuthInfoMap()
java.util.Map<java.lang.String,AuthInfo>
MemcachedClient. getAuthInfoStringMap()
Retruns the AuthInfo for all server strings (hostname:port)java.util.Map<java.lang.String,AuthInfo>
XMemcachedClient. getAuthInfoStringMap()
Methods in net.rubyeye.xmemcached with parameters of type AuthInfo Modifier and Type Method Description void
MemcachedClientBuilder. addAuthInfo(java.net.InetSocketAddress address, AuthInfo authInfo)
Add auth info for memcached servervoid
XMemcachedClientBuilder. addAuthInfo(java.net.InetSocketAddress address, AuthInfo authInfo)
Method parameters in net.rubyeye.xmemcached with type arguments of type AuthInfo Modifier and Type Method Description void
MemcachedClient. setAuthInfoMap(java.util.Map<java.net.InetSocketAddress,AuthInfo> map)
Configure auth infovoid
MemcachedClientBuilder. setAuthInfoMap(java.util.Map<java.net.InetSocketAddress,AuthInfo> map)
Configure auth infovoid
XMemcachedClient. setAuthInfoMap(java.util.Map<java.net.InetSocketAddress,AuthInfo> map)
void
XMemcachedClientBuilder. setAuthInfoMap(java.util.Map<java.net.InetSocketAddress,AuthInfo> authInfoMap)
-
Uses of AuthInfo in net.rubyeye.xmemcached.auth
Fields in net.rubyeye.xmemcached.auth declared as AuthInfo Modifier and Type Field Description private AuthInfo
AuthTask. authInfo
Methods in net.rubyeye.xmemcached.auth that return AuthInfo Modifier and Type Method Description static AuthInfo
AuthInfo. cramMD5(java.lang.String username, java.lang.String password)
Get a typical auth descriptor for CRAM-MD5 auth with the given username and password.static AuthInfo
AuthInfo. plain(java.lang.String username, java.lang.String password)
Get a typical auth descriptor for PLAIN auth with the given username and password.static AuthInfo
AuthInfo. typical(java.lang.String username, java.lang.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)
-