Class SpringWebClientParams

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Boolean getEnabled() If the value is true, generates a REST client codes using WebClient, otherwise RestTemplate.
      final Unit setEnabled(Boolean enabled) If the value is true, generates a REST client codes using WebClient, otherwise RestTemplate.
      final Boolean getNonBlocking() If the value is true, generates a REST client with non-blocking thread methods (will return a Mono or Flux object).
      final Unit setNonBlocking(Boolean nonBlocking) If the value is true, generates a REST client with non-blocking thread methods (will return a Mono or Flux object).
      • Methods inherited from class java.lang.Object

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

      • SpringWebClientParams

        SpringWebClientParams()
    • Method Detail

      • getEnabled

         final Boolean getEnabled()

        If the value is true, generates a REST client codes using WebClient, otherwise RestTemplate.

      • setEnabled

         final Unit setEnabled(Boolean enabled)

        If the value is true, generates a REST client codes using WebClient, otherwise RestTemplate.

      • getNonBlocking

         final Boolean getNonBlocking()

        If the value is true, generates a REST client with non-blocking thread methods (will return a Mono or Flux object).

      • setNonBlocking

         final Unit setNonBlocking(Boolean nonBlocking)

        If the value is true, generates a REST client with non-blocking thread methods (will return a Mono or Flux object).