fix ping communication with search to datarouter
[aai/search-data-service.git] / src / main / java / org / onap / aai / sa / searchdbabstraction / RestEchoService.java
  */
 package org.onap.aai.sa.searchdbabstraction;
 
-import javax.ws.rs.GET;
-import javax.ws.rs.Path;
-import javax.ws.rs.PathParam;
-import javax.ws.rs.Produces;
+
+
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RestController;
 
 
 /**
  * Exposes REST endpoints for a simple echo service.
  */
-@Path("/jaxrs-services")
-public class JaxrsEchoService {
+@RestController
+@RequestMapping("/services/search-data-service/v1")
+public class RestEchoService {
 
   /**
    * REST endpoint for a simple echo service.
@@ -38,11 +41,9 @@ public class JaxrsEchoService {
    * @param input - The value to be echoed back.
    * @return - The input value.
    */
-  @GET
-  @Path("/echo/{input}")
-  @Produces("text/plain")
-  public String ping(@PathParam("input") String input) {
+  @RequestMapping(value = "/echo/{input}", method = {RequestMethod.GET})
+  public String ping(@PathVariable("input") String input) {
     return "[Search Database Abstraction Micro Service] - Echo Service: " + input + ".";
   }
 
-}
\ No newline at end of file
+}