Merge "Implement ACK in DMI Plugin"
[cps/ncmp-dmi-plugin.git] / dmi-service / src / main / java / org / onap / cps / ncmp / dmi / datajobs / rest / controller / DmiDatajobsRestController.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2024 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.ncmp.dmi.datajobs.rest.controller;
22
23 import org.onap.cps.ncmp.dmi.datajobs.model.SubjobReadRequest;
24 import org.onap.cps.ncmp.dmi.datajobs.model.SubjobWriteRequest;
25 import org.onap.cps.ncmp.dmi.datajobs.rest.api.DmiDatajobApi;
26 import org.springframework.http.HttpStatus;
27 import org.springframework.http.ResponseEntity;
28 import org.springframework.web.bind.annotation.RequestMapping;
29 import org.springframework.web.bind.annotation.RestController;
30
31 @RequestMapping("${rest.api.dmi-base-path}")
32 @RestController
33 public class DmiDatajobsRestController implements DmiDatajobApi {
34     /**
35      * * This method is not implemented for ONAP DMI plugin.
36      *
37      * @param requestId Identifier for the overall Datajob (required)
38      * @param subjobReadRequest Operation body (optional)
39      * @return (@ code ResponseEntity) response entity
40      */
41     @Override
42     public ResponseEntity<Void> readDataJob(final String requestId,
43                                               final SubjobReadRequest subjobReadRequest) {
44
45         return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
46     }
47
48     /**
49      * * This method is not implemented for ONAP DMI plugin.
50      *
51      * @param requestId Identifier for the overall Datajob (required)
52      * @param subjobWriteRequest Operation body (optional)
53      * @return (@ code ResponseEntity) response entity
54      */
55     @Override
56     public ResponseEntity<Void> writeDataJob(final String requestId,
57                                                                final SubjobWriteRequest subjobWriteRequest) {
58         return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
59     }
60 }