Interface SecurityFilterChainCustomizer

All Known Implementing Classes:
AuthServerResourceServerSecurityFilterChainCustomizer, BaseResourceServerSecurityFilterChainCustomizer, BaseSecurityFilterChainCustomizer, OidcResourceServerSecurityFilterChainCustomizer, OidcVaadinSecurityFilterChainCustomizer, SamlVaadinSecurityFilterChainCustomizer

public interface SecurityFilterChainCustomizer
Interface to be implemented by beans that customize Spring Security filter chains.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    customize(String chainName, org.springframework.security.web.SecurityFilterChain chain)
    Performs customizations to the specified filter chain.
    Returns the names of the security filter chains that this customizer applies to.
    default boolean
    Whether this customizer is enabled.
  • Method Details

    • getChainBeanNames

      List<String> getChainBeanNames()
      Returns the names of the security filter chains that this customizer applies to.
    • customize

      void customize(String chainName, org.springframework.security.web.SecurityFilterChain chain)
      Performs customizations to the specified filter chain.
      Parameters:
      chainName - name of the security filter chain
      chain - security filter chain instance
    • isEnabled

      default boolean isEnabled()
      Whether this customizer is enabled.