X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fesr-server.git;a=blobdiff_plain;f=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fexternalservice%2Fcloud%2FVimManagerProxy.java;h=4822e277f338c615739313dc4d1ccb90892963ac;hp=0c5d678ad6d7019182c34abe16dcc385ad357d54;hb=0ab46140874180b586d578c79c75621697b7a3b1;hpb=6011cbc9b4031f3ce25a82ccb1c0fedf4a2bf57a diff --git a/esr-mgr/src/main/java/org/onap/aai/esr/externalservice/cloud/VimManagerProxy.java b/esr-mgr/src/main/java/org/onap/aai/esr/externalservice/cloud/VimManagerProxy.java index 0c5d678..4822e27 100644 --- a/esr-mgr/src/main/java/org/onap/aai/esr/externalservice/cloud/VimManagerProxy.java +++ b/esr-mgr/src/main/java/org/onap/aai/esr/externalservice/cloud/VimManagerProxy.java @@ -1,5 +1,5 @@ /** - * Copyright 2017 ZTE Corporation. + * Copyright 2017-2018 ZTE Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,20 +18,22 @@ package org.onap.aai.esr.externalservice.cloud; import org.glassfish.jersey.client.ClientConfig; import org.onap.aai.esr.common.MsbConfig; import org.onap.aai.esr.exception.ExtsysException; - import com.eclipsesource.jaxrs.consumer.ConsumerFactory; public class VimManagerProxy { - - public static void updateVim(String cloudOwner, String cloudRegionId, - Tenant tenant) throws ExtsysException { - ClientConfig config = new ClientConfig(new VimUpdateProvider()); - IVimManage updateVimServiceproxy = ConsumerFactory - .createConsumer(MsbConfig.getCloudInfrastructureAddr(), config, IVimManage.class); - try { - updateVimServiceproxy.updateVIM(cloudOwner, cloudRegionId, tenant); - } catch (Exception e) { - throw new ExtsysException("Update cloud region to A&AI by Multi-Cloud failed.", e); + +// private VimManagerProxy() { +// +// } + + public void updateVim(String cloudOwner, String cloudRegionId, Tenant tenant) throws ExtsysException { + ClientConfig config = new ClientConfig(new VimUpdateProvider()); + IVimManage updateVimServiceproxy = + ConsumerFactory.createConsumer(MsbConfig.getMultiCloudAddr(), config, IVimManage.class); + try { + updateVimServiceproxy.updateVIM(cloudOwner, cloudRegionId, tenant); + } catch (Exception e) { + throw new ExtsysException("Update cloud region to A&AI by Multi-Cloud failed.", e); + } } - } }