2 * Copyright © 2018-2019 AT&T Intellectual Property.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.api
19 import org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.UpdateStateRequest
20 import org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.db.MessagePrioritization
21 import org.onap.ccsdk.cds.blueprintsprocessor.functions.message.prioritization.service.MessagePrioritizationStateService
22 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.monoMdc
23 import org.springframework.http.MediaType
24 import org.springframework.web.bind.annotation.GetMapping
25 import org.springframework.web.bind.annotation.PathVariable
26 import org.springframework.web.bind.annotation.PostMapping
27 import org.springframework.web.bind.annotation.RequestBody
28 import org.springframework.web.bind.annotation.RequestMapping
29 import org.springframework.web.bind.annotation.ResponseBody
30 import org.springframework.web.bind.annotation.RestController
33 @RequestMapping(value = ["/api/v1/message-prioritization"])
34 open class MessagePrioritizationApi(private val messagePrioritizationStateService: MessagePrioritizationStateService) {
36 @GetMapping(path = ["/ping"], produces = [MediaType.APPLICATION_JSON_VALUE])
38 fun ping(): String = "Success"
40 @GetMapping(path = ["/{id}"], produces = [MediaType.APPLICATION_JSON_VALUE])
42 fun messagePrioritization(@PathVariable(value = "id") id: String) = monoMdc {
43 messagePrioritizationStateService.getMessage(id)
47 path = ["/"], produces = [MediaType.APPLICATION_JSON_VALUE],
48 consumes = [MediaType.APPLICATION_JSON_VALUE]
51 fun saveMessagePrioritization(@RequestBody messagePrioritization: MessagePrioritization) = monoMdc {
52 messagePrioritizationStateService.saveMessage(messagePrioritization)
56 path = ["/update-state"], produces = [MediaType.APPLICATION_JSON_VALUE],
57 consumes = [MediaType.APPLICATION_JSON_VALUE]
59 fun updateMessagePrioritizationState(@RequestBody updateMessageState: UpdateStateRequest) =
61 messagePrioritizationStateService.setMessageState(
62 updateMessageState.id,
63 updateMessageState.state!!