6ab56f57cd2db2c4403ded8e4f7f1e6077ec99c2
[cps/ncmp-dmi-plugin.git] /
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 subjobReadRequest        Operation body (optional)
38      * @return (@ code ResponseEntity) Response entity
39      */
40     @Override
41     public ResponseEntity<Void> readDataJob(final String destination, final SubjobReadRequest subjobReadRequest) {
42
43         return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
44     }
45
46     /**
47      * This method is not implemented for ONAP DMI plugin.
48      *
49      * @param subjobWriteRequest       Operation body (optional)
50      * @return (@ code ResponseEntity) Response entity
51      */
52     @Override
53     public ResponseEntity<Void> writeDataJob(final String destination, final SubjobWriteRequest subjobWriteRequest) {
54         return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
55     }
56
57     /**
58      * This method is not implemented for ONAP DMI plugin.
59      *
60      * @param dataProducerJobId     Identifier for the data producer job (required)
61      * @param dataProducerId        Identifier for the data producer (required)
62      * @return ResponseEntity       Response entity indicating the method is not implemented
63      */
64     @Override
65     public ResponseEntity<Void> getDataJobStatus(final String dataProducerJobId,
66                                                  final String dataProducerId) {
67         return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
68     }
69
70     /**
71      * This method is not implemented for ONAP DMI plugin.
72      *
73      * @param dataProducerJobId     Identifier for the data producer job (required)
74      * @param dataProducerId        Identifier for the data producer as a query parameter (required)
75      * @param destination           The destination of the results, Kafka topic name or s3 bucket name (required)
76      * @return ResponseEntity       Response entity indicating the method is not implemented
77      */
78     @Override
79     public ResponseEntity<Void> getDataJobResult(final String requestId,
80                                                  final String dataProducerJobId,
81                                                  final String dataProducerId,
82                                                  final String destination) {
83         return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
84     }
85 }