本文整理汇总了Java中org.springframework.cloud.servicebroker.service.ServiceInstanceService类的典型用法代码示例。如果您正苦于以下问题:Java ServiceInstanceService类的具体用法?Java ServiceInstanceService怎么用?Java ServiceInstanceService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ServiceInstanceService类属于org.springframework.cloud.servicebroker.service包,在下文中一共展示了ServiceInstanceService类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ServiceBrokerWebMvcAutoConfiguration
import org.springframework.cloud.servicebroker.service.ServiceInstanceService; //导入依赖的package包/类
protected ServiceBrokerWebMvcAutoConfiguration(
CatalogService catalogService, ServiceInstanceService serviceInstanceService,
ServiceInstanceBindingService serviceInstanceBindingService) {
this.catalogService = catalogService;
this.serviceInstanceService = serviceInstanceService;
this.serviceInstanceBindingService = serviceInstanceBindingService;
}
开发者ID:spring-cloud,项目名称:spring-cloud-cloudfoundry-service-broker,代码行数:8,代码来源:ServiceBrokerWebMvcAutoConfiguration.java
示例2: ServiceBrokerWebFluxAutoConfiguration
import org.springframework.cloud.servicebroker.service.ServiceInstanceService; //导入依赖的package包/类
protected ServiceBrokerWebFluxAutoConfiguration(
CatalogService catalogService, ServiceInstanceService serviceInstanceService,
ServiceInstanceBindingService serviceInstanceBindingService) {
this.catalogService = catalogService;
this.serviceInstanceService = serviceInstanceService;
this.serviceInstanceBindingService = serviceInstanceBindingService;
}
开发者ID:spring-cloud,项目名称:spring-cloud-cloudfoundry-service-broker,代码行数:8,代码来源:ServiceBrokerWebFluxAutoConfiguration.java
示例3: ServiceInstanceController
import org.springframework.cloud.servicebroker.service.ServiceInstanceService; //导入依赖的package包/类
@Autowired
public ServiceInstanceController(CatalogService catalogService, ServiceInstanceService serviceInstanceService) {
super(catalogService);
this.service = serviceInstanceService;
}
开发者ID:spring-cloud,项目名称:spring-cloud-cloudfoundry-service-broker,代码行数:6,代码来源:ServiceInstanceController.java