Class ServiceBrokerWebFluxAutoConfiguration
java.lang.Object
org.springframework.cloud.servicebroker.autoconfigure.web.reactive.ServiceBrokerWebFluxAutoConfiguration
@Configuration
@AutoConfigureAfter({org.springframework.boot.autoconfigure.web.reactive.WebFluxAutoConfiguration.class,ServiceBrokerAutoConfiguration.class,EventFlowsAutoConfiguration.class})
@ConditionalOnWebApplication(type=REACTIVE)
public class ServiceBrokerWebFluxAutoConfiguration
extends Object
Auto-configuration for the service broker REST API endpoints.- Author:
- Roy Clarkson
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedServiceBrokerWebFluxAutoConfiguration(org.springframework.cloud.servicebroker.service.CatalogService catalogService, org.springframework.cloud.servicebroker.service.ServiceInstanceService serviceInstanceService, org.springframework.cloud.servicebroker.service.ServiceInstanceBindingService serviceInstanceBindingService, org.springframework.cloud.servicebroker.service.events.EventFlowRegistries eventFlowRegistries) Construct a newServiceBrokerWebFluxAutoConfiguration -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.cloud.servicebroker.controller.CatalogControllerProvide aCatalogControllerbeanProvide aRequestIdentityWebFilterbeanorg.springframework.cloud.servicebroker.controller.ServiceBrokerWebFluxExceptionHandlerProvide aServiceBrokerWebFluxExceptionHandlerbeanorg.springframework.cloud.servicebroker.controller.ServiceInstanceBindingControllerProvide aServiceInstanceBindingControllerbeanorg.springframework.cloud.servicebroker.controller.ServiceInstanceControllerProvide aServiceInstanceControllerbean
-
Constructor Details
-
ServiceBrokerWebFluxAutoConfiguration
protected ServiceBrokerWebFluxAutoConfiguration(org.springframework.cloud.servicebroker.service.CatalogService catalogService, @Autowired(required=false) org.springframework.cloud.servicebroker.service.ServiceInstanceService serviceInstanceService, org.springframework.cloud.servicebroker.service.ServiceInstanceBindingService serviceInstanceBindingService, org.springframework.cloud.servicebroker.service.events.EventFlowRegistries eventFlowRegistries) Construct a newServiceBrokerWebFluxAutoConfiguration- Parameters:
catalogService- the CatalogService beanserviceInstanceService- the ServiceInstanceService beanserviceInstanceBindingService- the ServiceInstanceBindingService beaneventFlowRegistries- the EventFlowRegistries bean
-
-
Method Details
-
catalogController
@Bean public org.springframework.cloud.servicebroker.controller.CatalogController catalogController()Provide aCatalogControllerbean- Returns:
- the bean
-
serviceInstanceController
@Bean public org.springframework.cloud.servicebroker.controller.ServiceInstanceController serviceInstanceController()Provide aServiceInstanceControllerbean- Returns:
- the bean
-
serviceInstanceBindingController
@Bean public org.springframework.cloud.servicebroker.controller.ServiceInstanceBindingController serviceInstanceBindingController()Provide aServiceInstanceBindingControllerbean- Returns:
- the bean
-
serviceBrokerExceptionHandler
@Bean public org.springframework.cloud.servicebroker.controller.ServiceBrokerWebFluxExceptionHandler serviceBrokerExceptionHandler()Provide aServiceBrokerWebFluxExceptionHandlerbean- Returns:
- the bean
-
requestIdentityWebFilter
Provide aRequestIdentityWebFilterbean- Returns:
- the bean
-