modify msb register part
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / msb / inf / IMsbMgmr.java
index f63b5a5..d860e39 100644 (file)
  
 package org.onap.vfc.nfvo.driver.vnfm.svnfm.msb.inf;
 
+import java.io.IOException;
+
+import org.apache.http.client.ClientProtocolException;
 import org.onap.msb.sdk.discovery.common.RouteException;
 
 public interface IMsbMgmr {
        public void register();
        public void unregister();
-       public String getServiceUrlInMsbBySeriveNameAndPort(String serviceName, String version) throws RouteException;
+       public String getServiceUrlInMsbBySeriveNameAndVersion(String serviceName, String version) throws RouteException, ClientProtocolException, IOException;
 }