Convert project from AJSC to Spring Boot
[aai/model-loader.git] / src / main / java / org / onap / aai / modelloader / service / ModelLoaderInterface.java
index 1b466c8..6796090 100644 (file)
@@ -1,49 +1,45 @@
-/**\r
- * ============LICENSE_START==========================================\r
- * org.onap.aai\r
- * ===================================================================\r
- * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.\r
- * Copyright © 2017-2018 Amdocs\r
- * ===================================================================\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *        http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- * ============LICENSE_END============================================\r
- */\r
-package org.onap.aai.modelloader.service;\r
-\r
-import java.io.IOException;\r
-import javax.ws.rs.Consumes;\r
-import javax.ws.rs.GET;\r
-import javax.ws.rs.POST;\r
-import javax.ws.rs.PUT;\r
-import javax.ws.rs.Path;\r
-import javax.ws.rs.PathParam;\r
-import javax.ws.rs.Produces;\r
-import javax.ws.rs.core.Response;\r
-\r
-public interface ModelLoaderInterface {\r
-\r
-    @GET\r
-    @Path("/loadModel/{modelid}")\r
-    public Response loadModel(@PathParam("modelid") String modelid);\r
-\r
-    @PUT\r
-    @Path("/saveModel/{modelid}/{modelname}")\r
-    public Response saveModel(@PathParam("modelid") String modelid, @PathParam("modelname") String modelname);\r
-\r
-    @POST\r
-    @Consumes("text/plain")\r
-    @Produces("application/xml")\r
-    @Path("/ingestModel/{modelName}/{modelVersion}")\r
-    public Response ingestModel(@PathParam("modelName") String modelid, @PathParam("modelVersion") String modelVersion,\r
-            String payload) throws IOException;\r
-}\r
+/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 European Software Marketing Ltd.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.aai.modelloader.service;
+
+import java.io.IOException;
+import javax.ws.rs.core.Response;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+public interface ModelLoaderInterface {
+
+    @RequestMapping(value = "/loadModel/{modelid}", //
+            method = RequestMethod.GET, produces = "application/json")
+    @ResponseBody
+    public Response loadModel(String modelid);
+
+    @RequestMapping(value = "/saveModel/{modelid}/{modelname}", //
+            method = RequestMethod.PUT, produces = "application/json")
+    @ResponseBody
+    public Response saveModel(String modelid, String modelname);
+
+    @RequestMapping(value = "/ingestModel/{modelName}/{modelVersion}", //
+            method = RequestMethod.POST, produces = "application/json")
+    @ResponseBody
+    public Response ingestModel(String modelid, String modelVersion, String payload) throws IOException;
+}