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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.cps.ncmp.dmi.datajobs.rest.controller;
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;
31 @RequestMapping("${rest.api.dmi-base-path}")
33 public class DmiDatajobsRestController implements DmiDatajobApi {
35 * This method is not implemented for ONAP DMI plugin.
37 * @param subjobReadRequest Operation body (optional)
38 * @return (@ code ResponseEntity) Response entity
41 public ResponseEntity<Void> readDataJob(final String destination, final SubjobReadRequest subjobReadRequest) {
43 return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
47 * This method is not implemented for ONAP DMI plugin.
49 * @param subjobWriteRequest Operation body (optional)
50 * @return (@ code ResponseEntity) Response entity
53 public ResponseEntity<Void> writeDataJob(final String destination, final SubjobWriteRequest subjobWriteRequest) {
54 return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
58 * This method is not implemented for ONAP DMI plugin.
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
65 public ResponseEntity<Void> getDataJobStatus(final String dataProducerJobId,
66 final String dataProducerId) {
67 return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
71 * This method is not implemented for ONAP DMI plugin.
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
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);