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

redis.clients.jedis.RedisCredentials Maven / Gradle / Ivy

The newest version!
package redis.clients.jedis;

public interface RedisCredentials {

  /**
   * @return Redis ACL user
   */
  default String getUser() {
    return null;
  }

  default char[] getPassword() {
    return null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy