summaryrefslogtreecommitdiffstats
path: root/configbackuprestore/vnfconfigbackupservice/src/main/java/com/onap/sdnc/vnfbackupservice/controller/VnfBackupServiceController.java
diff options
context:
space:
mode:
Diffstat (limited to 'configbackuprestore/vnfconfigbackupservice/src/main/java/com/onap/sdnc/vnfbackupservice/controller/VnfBackupServiceController.java')
-rw-r--r--configbackuprestore/vnfconfigbackupservice/src/main/java/com/onap/sdnc/vnfbackupservice/controller/VnfBackupServiceController.java74
1 files changed, 74 insertions, 0 deletions
diff --git a/configbackuprestore/vnfconfigbackupservice/src/main/java/com/onap/sdnc/vnfbackupservice/controller/VnfBackupServiceController.java b/configbackuprestore/vnfconfigbackupservice/src/main/java/com/onap/sdnc/vnfbackupservice/controller/VnfBackupServiceController.java
new file mode 100644
index 00000000..a04aac7f
--- /dev/null
+++ b/configbackuprestore/vnfconfigbackupservice/src/main/java/com/onap/sdnc/vnfbackupservice/controller/VnfBackupServiceController.java
@@ -0,0 +1,74 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : SDNC-FEATURES
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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 com.onap.sdnc.vnfbackupservice.controller;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.servlet.ModelAndView;
+
+import com.onap.sdnc.vnfbackupservice.model.VnfServiceResponse;
+import com.onap.sdnc.vnfbackupservice.scheduler.VnfConfigBackupScheduler;
+import com.onap.sdnc.vnfbackupservice.service.VnfbackupService;
+
+@RestController
+public class VnfBackupServiceController {
+
+ @Autowired
+ VnfbackupService vnfbackupService;
+
+ @Autowired
+ VnfConfigBackupScheduler vnfConfigBackupScheduler;
+
+ @RequestMapping("/")
+ ModelAndView home(ModelAndView modelAndView) {
+ modelAndView.setViewName("index");
+ return modelAndView;
+ }
+
+ @RequestMapping(value="/getAllVnfIds", method=RequestMethod.GET,produces="application/json")
+ public VnfServiceResponse getAllVnfIds() {
+ return vnfbackupService.getAllVnfDetails();
+ }
+
+ @RequestMapping(value="/backupVnfconfigById/{vnfId}", method=RequestMethod.GET)
+ public String getAllVnfIds(@PathVariable("vnfId") String vnfId) {
+ return vnfbackupService.backupVnfconfig(vnfId);
+ }
+
+ @RequestMapping(value="/vnf-list/{vnf-Id}", method=RequestMethod.PUT)
+ public String putOneVnfconfig(@RequestBody String configfile, @PathVariable("vnf-Id") String vnfId) {
+ String vnfconfigupdated = vnfbackupService.putVnfconfig(configfile,vnfId);
+ return vnfconfigupdated;
+ }
+
+ @RequestMapping(value="/backup", method=RequestMethod.GET, produces="application/text")
+ public String backupVnfConfigs() {
+ return "current time: " + vnfConfigBackupScheduler.initiateBackupService() ;
+ }
+
+ @RequestMapping(value="/backuptime", method=RequestMethod.GET, produces="application/text")
+ public String lastUpdatedBackuptime() {
+ return vnfbackupService.updatedBackuptime();
+ }
+}