Extend probe mechanism
[vid.git] / vid-app-common / src / main / java / org / onap / vid / asdc / AsdcClient.java
index 37d3d2e..e264e4e 100644 (file)
@@ -3,6 +3,7 @@
  * VID
  * ================================================================================
  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019 Nokia. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -20,6 +21,7 @@
 
 package org.onap.vid.asdc;
 
+import io.joshworks.restclient.http.HttpResponse;
 import org.onap.vid.asdc.beans.Service;
 
 import java.nio.file.Path;
@@ -32,6 +34,7 @@ public interface AsdcClient {
        class URIS{
                public static final String METADATA_URL_TEMPLATE = "%s%s/%s/metadata";
                public static final String TOSCA_MODEL_URL_TEMPLATE = "%s%s/%s/toscaModel";
+               public static final String HEALTH_CHECK_ENDPOINT = "sdc2/rest/healthCheck";
        }
        /**
         * Gets the service.
@@ -51,4 +54,6 @@ public interface AsdcClient {
         */
        Path getServiceToscaModel(UUID uuid) throws AsdcCatalogException;
 
+
+       HttpResponse<String> checkSDCConnectivity();
 }