Class AbstractJwtClientProperties

java.lang.Object
org.entur.jwt.client.properties.AbstractJwtClientProperties
Direct Known Subclasses:
Auth0JwtClientProperties, GenericJwtClientProperties, KeycloakJwtClientProperties

public abstract class AbstractJwtClientProperties extends Object
  • Field Details

    • enabled

      protected boolean enabled
    • clientId

      protected String clientId
    • secret

      protected String secret
    • audience

      protected String audience
    • scope

      protected String scope
    • protocol

      protected String protocol
    • port

      protected int port
    • host

      protected String host
    • retrying

      protected boolean retrying
    • health

      protected boolean health
    • cache

      protected JwtClientCache cache
  • Constructor Details

    • AbstractJwtClientProperties

      public AbstractJwtClientProperties()
  • Method Details

    • getClientId

      public String getClientId()
    • setClientId

      public void setClientId(String clientId)
    • getSecret

      public String getSecret()
    • setSecret

      public void setSecret(String secret)
    • getAudience

      public String getAudience()
    • setAudience

      public void setAudience(String audience)
    • getProtocol

      public String getProtocol()
    • setProtocol

      public void setProtocol(String protocol)
    • getPort

      public int getPort()
    • setPort

      public void setPort(int port)
    • getHost

      public String getHost()
    • setHost

      public void setHost(String host)
    • getCache

      public JwtClientCache getCache()
    • setCache

      public void setCache(JwtClientCache cache)
    • getScope

      public String getScope()
    • setScope

      public void setScope(String scope)
    • setRetrying

      public void setRetrying(boolean retrying)
    • isRetrying

      public boolean isRetrying()
    • setEnabled

      public void setEnabled(boolean enabled)
    • isEnabled

      public boolean isEnabled()
    • isHealth

      public boolean isHealth()
    • setHealth

      public void setHealth(boolean health)