4d7369fbe13a69ca328fc32b21c4bae06a438b9d
[usecase-ui/intent-analysis.git] /
1 /*
2  * Copyright (C) 2023 CMCC, Inc. and others. All rights reserved.
3  *
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
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16 package org.onap.usecaseui.intentanalysis.controller;
17
18 import lombok.extern.log4j.Log4j2;
19 import org.onap.usecaseui.intentanalysis.bean.enums.FulfilmentStatus;
20 import org.onap.usecaseui.intentanalysis.bean.enums.NotFulfilledState;
21 import org.onap.usecaseui.intentanalysis.bean.models.*;
22 import org.springframework.http.MediaType;
23 import org.springframework.http.ResponseEntity;
24 import org.springframework.web.bind.annotation.GetMapping;
25 import org.springframework.web.bind.annotation.PathVariable;
26 import org.springframework.web.bind.annotation.RequestMapping;
27 import org.springframework.web.bind.annotation.RestController;
28
29 import java.time.LocalDateTime;
30 import java.time.ZoneId;
31 import java.util.ArrayList;
32 import java.util.Arrays;
33 import java.util.Date;
34 import java.util.List;
35
36 import static org.onap.usecaseui.intentanalysis.common.ResponseConsts.RSEPONSE_SUCCESS;
37
38 @Log4j2
39 @RestController
40 @RequestMapping("/intentReport")
41 public class IntentReportController {
42
43     @GetMapping(value = "/{intentId}", produces = MediaType.APPLICATION_JSON_VALUE)
44     public ServiceResult getIntentById(
45             @PathVariable("intentId") String intentId) {
46         // test connection with ui,real log
47         IntentReport report = new IntentReport();
48         report.setIntentReportId("12345");
49         report.setIntentReference("intentReort");
50         report.setObjectInstance(Arrays.asList("instance1", "instance2", "instance3"));
51         //report.setFulfillmentInfos();
52         LocalDateTime now = LocalDateTime.now();
53         report.setReportTime(Date.from( now.atZone( ZoneId.systemDefault()).toInstant()));
54         FulfilmentInfo fu1= new FulfilmentInfo();
55         fu1.setFulfillmentId("fulfilmentInfo1");
56         fu1.setFulfillmentStatus(FulfilmentStatus.FULFILLED);
57         FulfilmentInfo fu2= new FulfilmentInfo();
58         fu2.setFulfillmentId("fulfilmentInfo2");
59         fu2.setFulfillmentStatus(FulfilmentStatus.NOT_FULFILLED);
60         fu2.setNotFulfilledState(NotFulfilledState.DEGRADED);
61         fu2.setNotFulfilledReason("not fulfilled Reason");
62         List<FulfilmentInfo> list = new ArrayList<>();
63         list.add(fu1);
64         list.add(fu2);
65         report.setFulfillmentInfos(list);
66
67         return new ServiceResult(new ResultHeader(RSEPONSE_SUCCESS, "get report success"),
68                 report);
69
70     }
71
72 }