当前位置: 首页>>代码示例>>Java>>正文


Java UpdateServiceInstanceRequest类代码示例

本文整理汇总了Java中org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest的典型用法代码示例。如果您正苦于以下问题:Java UpdateServiceInstanceRequest类的具体用法?Java UpdateServiceInstanceRequest怎么用?Java UpdateServiceInstanceRequest使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


UpdateServiceInstanceRequest类属于org.cloudfoundry.community.servicebroker.model包,在下文中一共展示了UpdateServiceInstanceRequest类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: updateServiceInstance

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
@Override
public ServiceInstance updateServiceInstance(UpdateServiceInstanceRequest request)
        throws ServiceInstanceUpdateNotSupportedException,
        ServiceBrokerException,
        ServiceInstanceDoesNotExistException {

    PersistableServiceInstance one = this.serviceInstanceRepository.findOne(
            request.getServiceInstanceId());

    PersistableServiceInstance two = new PersistableServiceInstance(
            one.getServiceDefinitionId(),
            request.getPlanId(),
            one.getOrganizationGuid(),
            one.getSpaceGuid(),
            request.getServiceInstanceId(), true);

    return this.serviceInstanceRepository.save(two);
}
 
开发者ID:joshlong,项目名称:cloudfoundry-ftp-service-broker,代码行数:19,代码来源:FtpServiceInstanceService.java

示例2: updateServiceInstance

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
@Override
public ServiceInstance updateServiceInstance(UpdateServiceInstanceRequest request) throws ServiceInstanceUpdateNotSupportedException, ServiceBrokerException, ServiceInstanceDoesNotExistException, ServiceBrokerAsyncRequiredException {
    ServiceInstance serviceInstance = new ServiceInstance(request);
    serviceInstance.withAsync(false);
    serviceInstance.withDashboardUrl(appUri);
    if (!this.oauthRegServiceInstanceRepo.exists(request.getServiceInstanceId())) {
        throw new ServiceInstanceDoesNotExistException(request.getServiceInstanceId());
    }

    OauthRegServiceInstance instance = this.oauthRegServiceInstanceRepo.findOne(request.getServiceInstanceId());
    Driver driver = this.getDriverFromInstance(instance);
    if (this.manageGlobalProvider.hasGlobalProviderConfig(driver)) {
        return serviceInstance;
    }
    String user = this.getParameter(request.getParameters(), PROVIDER_USERNAME_PARAMETER, null);
    if (user != null) {
        instance.setProviderUsername(user);
    }
    String password = this.getParameter(request.getParameters(), PROVIDER_PASSWORD_PARAMETER, null);
    if (password != null) {
        instance.setProviderPassword(password);
    }
    String authenticationCode = this.getParameter(request.getParameters(), AUTHENTICATION_CODE_PARAMETER, null);
    instance.setAuthenticationCode(authenticationCode);
    this.oauthRegServiceInstanceRepo.save(instance);
    return serviceInstance;
}
 
开发者ID:cloudfoundry-community,项目名称:oauth-register-broker,代码行数:28,代码来源:OauthRegInstanceService.java

示例3: updateServiceInstance

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
@Override
public ServiceInstance updateServiceInstance(
		UpdateServiceInstanceRequest request)
		throws ServiceInstanceUpdateNotSupportedException,
		ServiceBrokerException, ServiceInstanceDoesNotExistException {

	log(request.getServiceInstanceId(),
			"Updating service instance is not supported", FAILED);
	throw new ServiceInstanceUpdateNotSupportedException(
			"Cannot update plan " + request.getPlanId());
}
 
开发者ID:krujos,项目名称:data-lifecycle-service-broker,代码行数:12,代码来源:LCServiceInstanceService.java

示例4: itShouldThrowForUpdateService

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
@Test(expected = ServiceInstanceUpdateNotSupportedException.class)
public void itShouldThrowForUpdateService() throws Exception {
	createServiceInstance();
	service.updateServiceInstance(new UpdateServiceInstanceRequest(
			PRODUCTION, true).withInstanceId(instance
			.getServiceInstanceId()));

}
 
开发者ID:krujos,项目名称:data-lifecycle-service-broker,代码行数:9,代码来源:LCServiceInstanceServiceCopyTest.java

示例5: updateServiceInstance

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
@Override
public ServiceInstance updateServiceInstance(UpdateServiceInstanceRequest request)
    throws ServiceInstanceUpdateNotSupportedException, ServiceBrokerException,
    ServiceInstanceDoesNotExistException {

    LOGGER.debug(LoggerHelper
        .getParamsAsString("updateServiceInstance", request.getServiceInstanceId(),
            request.getPlanId()));

    throw new ServiceInstanceUpdateNotSupportedException("Plan change not supported, planId"
        + request.getPlanId());
}
 
开发者ID:trustedanalytics,项目名称:broker-store,代码行数:13,代码来源:ServiceInstanceServiceStore.java

示例6: PersistableServiceInstance

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
public PersistableServiceInstance() {
    super(new UpdateServiceInstanceRequest("noOpPlanId"));
}
 
开发者ID:joshlong,项目名称:cloudfoundry-ftp-service-broker,代码行数:4,代码来源:PersistableServiceInstance.java

示例7: itShouldThrowForUpdateService

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
@Test(expected = ServiceInstanceUpdateNotSupportedException.class)
public void itShouldThrowForUpdateService() throws Exception {
	createServiceInstance();
	service.updateServiceInstance(new UpdateServiceInstanceRequest(COPY,
			true).withInstanceId(instance.getServiceInstanceId()));
}
 
开发者ID:krujos,项目名称:data-lifecycle-service-broker,代码行数:7,代码来源:LCServiceInstanceServiceProdTest.java

示例8: updateServiceInstance

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
@Override
public ServiceInstance updateServiceInstance(UpdateServiceInstanceRequest request)
        throws ServiceInstanceUpdateNotSupportedException, ServiceBrokerException,
        ServiceInstanceDoesNotExistException {
    return delegate.updateServiceInstance(request);
}
 
开发者ID:trustedanalytics,项目名称:broker-store,代码行数:7,代码来源:ForwardingServiceInstanceServiceStore.java

示例9: updateServiceInstance

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
@Override
public ServiceInstance updateServiceInstance(UpdateServiceInstanceRequest updateServiceInstanceRequest)
        throws ServiceInstanceUpdateNotSupportedException, ServiceBrokerException, ServiceInstanceDoesNotExistException {
    throw new IllegalStateException("Not implemented");
}
 
开发者ID:cloudfoundry-community,项目名称:postgresql-cf-service-broker,代码行数:6,代码来源:PostgreSQLServiceInstanceService.java

示例10: getUpdateServiceInstanceRequest

import org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest; //导入依赖的package包/类
public static UpdateServiceInstanceRequest getUpdateServiceInstanceRequest() {
	ServiceDefinition service = ServiceFixture.getService();
	return new UpdateServiceInstanceRequest(service.getPlans().get(0).getId(), false,
			ParametersFixture.getParameters());
}
 
开发者ID:cloudfoundry-community,项目名称:spring-boot-cf-service-broker,代码行数:6,代码来源:ServiceInstanceFixture.java


注:本文中的org.cloudfoundry.community.servicebroker.model.UpdateServiceInstanceRequest类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。