Class ApiVersionWebFluxAutoConfiguration

java.lang.Object
org.springframework.cloud.servicebroker.autoconfigure.web.reactive.ApiVersionWebFluxAutoConfiguration

@Configuration @ConditionalOnWebApplication(type=REACTIVE) @ConditionalOnBean(ServiceInstanceService.class) @ConditionalOnProperty(prefix="spring.cloud.openservicebroker", name="api-version-check-enabled", havingValue="true", matchIfMissing=true) @AutoConfigureAfter(org.springframework.boot.autoconfigure.web.reactive.WebFluxAutoConfiguration.class) @EnableConfigurationProperties(ServiceBrokerProperties.class) public class ApiVersionWebFluxAutoConfiguration extends Object
Auto-configuration for the service broker API validation. Configures support for any service broker API version if a version is not specifically configured.

API validation may be disabled completely by setting the following configuration property:

 spring.cloud.openservicebroker.api-version-check-enabled = false
 
Author:
Roy Clarkson