aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/asdc/rest
diff options
context:
space:
mode:
authorSonsino, Ofir (os0695) <os0695@intl.att.com>2018-04-15 16:36:39 +0300
committerSonsino, Ofir (os0695) <os0695@intl.att.com>2018-04-15 16:36:39 +0300
commit0a5b5aec1d24cbc81356e74fb6d69c266b125c78 (patch)
treebf4d94c852b9abfcdd7dd928f9373e50532d66c7 /vid-app-common/src/main/java/org/onap/vid/asdc/rest
parent8d29bb7f9c15122ea0b9e0ccf34be1704aaaebf6 (diff)
Change ASDC to SDC everywhere in VID UI
Change-Id: I5149e2a3751370c9757c2b6a2bbff2984cc979b8 Issue-ID: VID-211 Signed-off-by: Sonsino, Ofir (os0695) <os0695@intl.att.com>
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/asdc/rest')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/asdc/rest/RestfulAsdcClient.java38
1 files changed, 19 insertions, 19 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/asdc/rest/RestfulAsdcClient.java b/vid-app-common/src/main/java/org/onap/vid/asdc/rest/RestfulAsdcClient.java
index dce1e1bf8..7ac0fa398 100644
--- a/vid-app-common/src/main/java/org/onap/vid/asdc/rest/RestfulAsdcClient.java
+++ b/vid-app-common/src/main/java/org/onap/vid/asdc/rest/RestfulAsdcClient.java
@@ -201,10 +201,10 @@ public class RestfulAsdcClient implements AsdcClient {
.get(Resource.class);
} catch (ResponseProcessingException e) {
//Couldn't convert response to Java type
- throw new AsdcCatalogException("ASDC response could not be processed", e);
+ throw new AsdcCatalogException("SDC response could not be processed", e);
} catch (ProcessingException e) {
//IO problems during request
- throw new AsdcCatalogException("Failed to get a response from ASDC service", e);
+ throw new AsdcCatalogException("Failed to get a response from SDC service", e);
} catch (WebApplicationException e) {
//Web service returned data, but the response status wasn't a good one (i.e. non 2xx)
throw new AsdcCatalogException(e);
@@ -227,10 +227,10 @@ public class RestfulAsdcClient implements AsdcClient {
.get(Artifact.class);
} catch (ResponseProcessingException e) {
//Couldn't convert response to Java type
- throw new AsdcCatalogException("ASDC response could not be processed", e);
+ throw new AsdcCatalogException("SDC response could not be processed", e);
} catch (ProcessingException e) {
//IO problems during request
- throw new AsdcCatalogException("Failed to get a response from ASDC service", e);
+ throw new AsdcCatalogException("Failed to get a response from SDC service", e);
} catch (WebApplicationException e) {
//Web service returned data, but the response status wasn't a good one (i.e. non 2xx)
throw new AsdcCatalogException(e);
@@ -254,10 +254,10 @@ public class RestfulAsdcClient implements AsdcClient {
});
} catch (ResponseProcessingException e) {
//Couldn't convert response to Java type
- throw new AsdcCatalogException("ASDC response could not be processed", e);
+ throw new AsdcCatalogException("SDC response could not be processed", e);
} catch (ProcessingException e) {
//IO problems during request
- throw new AsdcCatalogException("Failed to get a response from ASDC service", e);
+ throw new AsdcCatalogException("Failed to get a response from SDC service", e);
} catch (WebApplicationException e) {
//Web service returned data, but the response status wasn't a good one (i.e. non 2xx)
throw new AsdcCatalogException(e);
@@ -287,10 +287,10 @@ public class RestfulAsdcClient implements AsdcClient {
});
} catch (ResponseProcessingException e) {
//Couldn't convert response to Java type
- throw new AsdcCatalogException("ASDC response could not be processed", e);
+ throw new AsdcCatalogException("SDC response could not be processed", e);
} catch (ProcessingException e) {
//IO problems during request
- throw new AsdcCatalogException("Failed to get a response from ASDC service", e);
+ throw new AsdcCatalogException("Failed to get a response from SDC service", e);
} catch (NotFoundException e) {
throw e;
} catch (WebApplicationException e) {
@@ -315,7 +315,7 @@ public class RestfulAsdcClient implements AsdcClient {
return getToscaCsar(csarInputStream);
} catch (IOException e) {
- throw new AsdcCatalogException("Failed to retrieve resource TOSCA model from ASDC", e);
+ throw new AsdcCatalogException("Failed to retrieve resource TOSCA model from SDC", e);
}
}
@@ -335,10 +335,10 @@ public class RestfulAsdcClient implements AsdcClient {
.get(Service.class);
} catch (ResponseProcessingException e) {
//Couldn't convert response to Java type
- throw new AsdcCatalogException("ASDC response could not be processed", e);
+ throw new AsdcCatalogException("SDC response could not be processed", e);
} catch (ProcessingException e) {
//IO problems during request
- throw new AsdcCatalogException("Failed to get a response from ASDC service", e);
+ throw new AsdcCatalogException("Failed to get a response from SDC service", e);
} catch (WebApplicationException e) {
//Web service returned data, but the response status wasn't a good one (i.e. non 2xx)
throw new AsdcCatalogException(e);
@@ -362,10 +362,10 @@ public class RestfulAsdcClient implements AsdcClient {
.get(Artifact.class);
} catch (ResponseProcessingException e) {
//Couldn't convert response to Java type
- throw new AsdcCatalogException("ASDC response could not be processed", e);
+ throw new AsdcCatalogException("SDC response could not be processed", e);
} catch (ProcessingException e) {
//IO problems during request
- throw new AsdcCatalogException("Failed to get a response from ASDC service", e);
+ throw new AsdcCatalogException("Failed to get a response from SDC service", e);
} catch (WebApplicationException e) {
//Web service returned data, but the response status wasn't a good one (i.e. non 2xx)
throw new AsdcCatalogException(e);
@@ -390,10 +390,10 @@ public class RestfulAsdcClient implements AsdcClient {
});
} catch (ResponseProcessingException e) {
//Couldn't convert response to Java type
- throw new AsdcCatalogException("ASDC response could not be processed", e);
+ throw new AsdcCatalogException("SDC response could not be processed", e);
} catch (ProcessingException e) {
//IO problems during request
- throw new AsdcCatalogException("Failed to get a response from ASDC service", e);
+ throw new AsdcCatalogException("Failed to get a response from SDC service", e);
} catch (WebApplicationException e) {
//Web service returned data, but the response status wasn't a good one (i.e. non 2xx)
throw new AsdcCatalogException(e);
@@ -425,10 +425,10 @@ public class RestfulAsdcClient implements AsdcClient {
});
} catch (ResponseProcessingException e) {
//Couldn't convert response to Java type
- throw new AsdcCatalogException("ASDC response could not be processed", e);
+ throw new AsdcCatalogException("SDC response could not be processed", e);
} catch (ProcessingException e) {
//IO problems during request
- throw new AsdcCatalogException("Failed to get a response from ASDC service", e);
+ throw new AsdcCatalogException("Failed to get a response from SDC service", e);
} catch (NotFoundException e) {
throw e;
} catch (WebApplicationException e) {
@@ -457,10 +457,10 @@ public class RestfulAsdcClient implements AsdcClient {
return getToscaCsar(csarInputStream);
} catch (ResponseProcessingException e) {
//Couldn't convert response to Java type
- throw new AsdcCatalogException("ASDC response could not be processed", e);
+ throw new AsdcCatalogException("SDC response could not be processed", e);
} catch (ProcessingException e) {
//IO problems during request
- throw new AsdcCatalogException("Failed to get a response from ASDC service", e);
+ throw new AsdcCatalogException("Failed to get a response from SDC service", e);
} catch (WebApplicationException e) {
//Web service returned data, but the response status wasn't a good one (i.e. non 2xx)
throw new AsdcCatalogException(e);