Interface DelegatingMethodParameterCustomizer

All Known Implementing Classes:
DataRestDelegatingMethodParameterCustomizer, ParameterObjectNamingStrategyCustomizer
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface DelegatingMethodParameterCustomizer
The interface Delegating method parameter customizer.
Author:
dyun
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    customize(org.springframework.core.MethodParameter originalParameter, org.springframework.core.MethodParameter methodParameter)
    Customize.
    default void
    customizeList(org.springframework.core.MethodParameter originalParameter, List<org.springframework.core.MethodParameter> methodParameters)
    Customize.
  • Method Details

    • customizeList

      @Nullable default void customizeList(org.springframework.core.MethodParameter originalParameter, List<org.springframework.core.MethodParameter> methodParameters)
      Customize. tip: parameters include the parent fields, you can choose how to deal with the methodParameters
      Parameters:
      originalParameter - the original parameter
      methodParameters - the exploded parameters
    • customize

      void customize(org.springframework.core.MethodParameter originalParameter, org.springframework.core.MethodParameter methodParameter)
      Customize.
      Parameters:
      originalParameter - the original parameter
      methodParameter - the method parameter