Uses of Class
net.spy.memcached.auth.AuthDescriptor

Packages that use AuthDescriptor
net.spy.memcached Memcached client and transformation utils 
net.spy.memcached.auth Auth Utilities. 
net.spy.memcached.spring   
 

Uses of AuthDescriptor in net.spy.memcached
 

Methods in net.spy.memcached that return AuthDescriptor
 AuthDescriptor ConnectionFactory.getAuthDescriptor()
          Authenticate connections using the given auth descriptor.
 AuthDescriptor DefaultConnectionFactory.getAuthDescriptor()
           
 

Methods in net.spy.memcached with parameters of type AuthDescriptor
 ConnectionFactoryBuilder ConnectionFactoryBuilder.setAuthDescriptor(AuthDescriptor to)
          Set the auth descriptor to enable authentication on new connections.
 

Uses of AuthDescriptor in net.spy.memcached.auth
 

Methods in net.spy.memcached.auth that return AuthDescriptor
static AuthDescriptor AuthDescriptor.typical(String u, String p)
          Get a typical auth descriptor for CRAM-MD5 or PLAIN auth with the given username and password.
 

Methods in net.spy.memcached.auth with parameters of type AuthDescriptor
 void AuthThreadMonitor.authConnection(MemcachedConnection conn, OperationFactory opFact, AuthDescriptor authDescriptor, MemcachedNode node)
          Authenticate a new connection.
 

Constructors in net.spy.memcached.auth with parameters of type AuthDescriptor
AuthThread(MemcachedConnection c, OperationFactory o, AuthDescriptor a, MemcachedNode n)
           
 

Uses of AuthDescriptor in net.spy.memcached.spring
 

Methods in net.spy.memcached.spring with parameters of type AuthDescriptor
 void MemcachedClientFactoryBean.setAuthDescriptor(AuthDescriptor to)