Class RedisProperties

java.lang.Object
eu.fraho.spring.securityJwt.redis.config.RedisProperties
All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean

@ConfigurationProperties(prefix="fraho.jwt.refresh.redis") @Component public class RedisProperties extends Object implements org.springframework.beans.factory.InitializingBean
  • Constructor Details

    • RedisProperties

      public RedisProperties()
  • Method Details

    • afterPropertiesSet

      public void afterPropertiesSet()
      Specified by:
      afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
    • getPrefix

      public String getPrefix()
      Defines a common prefix for all saved refresh entries.
    • getHost

      public String getHost()
      Hostname or IP Adress of redis server
    • getPort

      public Integer getPort()
      Port of redis server
    • getPoolConfig

      public redis.clients.jedis.JedisPoolConfig getPoolConfig()
    • setPrefix

      public void setPrefix(String prefix)
      Defines a common prefix for all saved refresh entries.
    • setHost

      public void setHost(String host)
      Hostname or IP Adress of redis server
    • setPort

      public void setPort(Integer port)
      Port of redis server
    • setPoolConfig

      public void setPoolConfig(redis.clients.jedis.JedisPoolConfig poolConfig)