Enum Class RedisCredentialsProviderFactory.AbsentRedisCredentials
java.lang.Object
java.lang.Enum<RedisCredentialsProviderFactory.AbsentRedisCredentials>
org.springframework.data.redis.connection.lettuce.RedisCredentialsProviderFactory.AbsentRedisCredentials
- All Implemented Interfaces:
io.lettuce.core.RedisCredentials
,Serializable
,Comparable<RedisCredentialsProviderFactory.AbsentRedisCredentials>
,Constable
- Enclosing interface:
- RedisCredentialsProviderFactory
public static enum RedisCredentialsProviderFactory.AbsentRedisCredentials
extends Enum<RedisCredentialsProviderFactory.AbsentRedisCredentials>
implements io.lettuce.core.RedisCredentials
Default anonymous
RedisCredentials
without username/password.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionchar[]
boolean
boolean
Returns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANONYMOUS
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getUsername
- Specified by:
getUsername
in interfaceio.lettuce.core.RedisCredentials
-
hasUsername
public boolean hasUsername()- Specified by:
hasUsername
in interfaceio.lettuce.core.RedisCredentials
-
getPassword
@Nullable public char[] getPassword()- Specified by:
getPassword
in interfaceio.lettuce.core.RedisCredentials
-
hasPassword
public boolean hasPassword()- Specified by:
hasPassword
in interfaceio.lettuce.core.RedisCredentials
-