Class DefaultSecurityParameterNameDiscoverer

java.lang.Object
org.springframework.core.PrioritizedParameterNameDiscoverer
org.springframework.security.core.parameters.DefaultSecurityParameterNameDiscoverer
All Implemented Interfaces:
org.springframework.core.ParameterNameDiscoverer

public class DefaultSecurityParameterNameDiscoverer extends org.springframework.core.PrioritizedParameterNameDiscoverer
Spring Security's default ParameterNameDiscoverer which tries a number of ParameterNameDiscoverer depending on what is found on the classpath.
Since:
3.2
See Also:
  • Constructor Details

    • DefaultSecurityParameterNameDiscoverer

      public DefaultSecurityParameterNameDiscoverer()
      Creates a new instance with only the default ParameterNameDiscoverer instances.
    • DefaultSecurityParameterNameDiscoverer

      public DefaultSecurityParameterNameDiscoverer(List<? extends org.springframework.core.ParameterNameDiscoverer> parameterNameDiscovers)
      Creates a new instance that first tries the passed in ParameterNameDiscoverer instances.
      Parameters:
      parameterNameDiscovers - the ParameterNameDiscoverer before trying the defaults. Cannot be null.