Add controller for OrchestrationTask 81/101781/2
authorHarry Huang <huangxiangyu5@huawei.com>
Sun, 16 Feb 2020 06:50:36 +0000 (14:50 +0800)
committerHarry Huang <huangxiangyu5@huawei.com>
Wed, 19 Feb 2020 02:44:37 +0000 (10:44 +0800)
Issue-ID: SO-2368

Add custom controller for OrchestrationTask
in requestDB adapter

Change-Id: I88ee0f7ee06131400d12b2f085853823af1a035c
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
adapters/mso-requests-db-adapter/src/main/java/org/onap/so/adapters/requestsdb/OrchestrationTaskRepositoryCustomController.java [new file with mode: 0644]

diff --git a/adapters/mso-requests-db-adapter/src/main/java/org/onap/so/adapters/requestsdb/OrchestrationTaskRepositoryCustomController.java b/adapters/mso-requests-db-adapter/src/main/java/org/onap/so/adapters/requestsdb/OrchestrationTaskRepositoryCustomController.java
new file mode 100644 (file)
index 0000000..e32d90b
--- /dev/null
@@ -0,0 +1,62 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP - SO
+ * ================================================================================
+ * Copyright (C) 2019 Huawei Technologies Co., Ltd. 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.
+ * 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.so.adapters.requestsdb;
+
+import org.onap.so.adapters.requestsdb.exceptions.MsoRequestsDbException;
+import org.onap.so.db.request.beans.OrchestrationTask;
+import org.onap.so.db.request.data.repository.OrchestrationTaskRepository;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+import java.util.List;
+
+@RestController
+public class OrchestrationTaskRepositoryCustomController {
+
+    @Autowired
+    private OrchestrationTaskRepository orchestrationTaskRepository;
+
+    @RequestMapping(method = RequestMethod.GET, value = "/orchestrationTask")
+    public List<OrchestrationTask> getAllOrchestrationTask() {
+        return orchestrationTaskRepository.findAll();
+    }
+
+    @RequestMapping(method = RequestMethod.GET, value = "/orchestrationTask/{taskId}")
+    public OrchestrationTask getOrchestrationTask(@PathVariable("taskId") String taskId) throws MsoRequestsDbException {
+        return orchestrationTaskRepository.findById(taskId)
+                .orElseThrow(() -> new MsoRequestsDbException("orchestration task not found: " + taskId));
+    }
+
+    @RequestMapping(method = RequestMethod.POST, value = "/orchestrationTask/")
+    public OrchestrationTask createOrchestrationTask(@RequestBody OrchestrationTask orchestrationTask) {
+        return orchestrationTaskRepository.save(orchestrationTask);
+    }
+
+    @RequestMapping(method = RequestMethod.PUT, value = "/orchestrationTask/{taskId}")
+    public OrchestrationTask updateOrchestrationTask(@PathVariable("taskId") String taskId,
+            @RequestBody OrchestrationTask orchestrationTask) throws MsoRequestsDbException {
+        return orchestrationTaskRepository.save(orchestrationTask);
+    }
+
+    @RequestMapping(method = RequestMethod.DELETE, value = "/orchestrationTask/{taskId}")
+    public void deleteOrchestrationTask(@PathVariable("taskId") String taskId) {
+        orchestrationTaskRepository.deleteById(taskId);
+    }
+}