Class DefaultStateConfiguration

  • All Implemented Interfaces:
    io.micronaut.core.util.Toggleable, StateValidationConfiguration

    @ConfigurationProperties("micronaut.security.oauth2.state")
    public class DefaultStateConfiguration
    extends java.lang.Object
    implements StateValidationConfiguration
    Configuration properties implementation of state validation configuration.
    Since:
    1.2.0
    Author:
    James Kleeh
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String PREFIX  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Optional<java.lang.String> getPersistence()  
      boolean isEnabled()  
      void setEnabled​(boolean enabled)
      Sets whether a state parameter will be sent.
      void setPersistence​(java.lang.String persistence)
      Sets the mechanism to persist the state for later retrieval for validation.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DefaultStateConfiguration

        public DefaultStateConfiguration()
    • Method Detail

      • setPersistence

        public void setPersistence​(java.lang.String persistence)
        Sets the mechanism to persist the state for later retrieval for validation. Supported values ("session", "cookie"). Default value ("cookie").
        Parameters:
        persistence - The persistence mechanism
      • isEnabled

        public boolean isEnabled()
        Specified by:
        isEnabled in interface io.micronaut.core.util.Toggleable
      • setEnabled

        public void setEnabled​(boolean enabled)
        Sets whether a state parameter will be sent. Default (true).
        Parameters:
        enabled - The enabled flag