Server Stubs PAP
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / rest / stub / StatisticsRestControllerV1Stub.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2023 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.policy.pap.main.rest.stub;
22
23 import java.util.List;
24 import java.util.Map;
25 import java.util.UUID;
26 import javax.validation.Valid;
27 import lombok.RequiredArgsConstructor;
28 import org.onap.policy.models.pdp.concepts.PdpStatistics;
29 import org.onap.policy.pap.main.rest.PapRestControllerV1;
30 import org.onap.policy.pap.main.rest.StatisticsReport;
31 import org.onap.policy.pap.main.rest.StatisticsRestControllerV1Api;
32 import org.springframework.context.annotation.Profile;
33 import org.springframework.http.ResponseEntity;
34 import org.springframework.web.bind.annotation.RestController;
35
36 @RestController
37 @RequiredArgsConstructor
38 @Profile("stub")
39 public class StatisticsRestControllerV1Stub extends PapRestControllerV1
40     implements StatisticsRestControllerV1Api {
41
42     private final StubUtils stubUtils;
43
44     @Override
45     public ResponseEntity<Map<String, Map<String, List<PdpStatistics>>>> pdpGroupStatistics(
46         String group,
47         UUID requestId,
48         @Valid Integer recordCount,
49         @Valid Long startTime,
50         @Valid Long endTime) {
51         return stubUtils.getStubbedResponseStatistics();
52     }
53
54     @Override
55     public ResponseEntity<Map<String, Map<String, List<PdpStatistics>>>> pdpInstanceStatistics(
56         String group,
57         String type,
58         String pdp,
59         UUID requestId,
60         @Valid Integer recordCount,
61         @Valid Long startTime,
62         @Valid Long endTime) {
63         return stubUtils.getStubbedResponseStatistics();
64     }
65
66     @Override
67     public ResponseEntity<Map<String, Map<String, List<PdpStatistics>>>> pdpStatistics(
68         UUID requestId, @Valid Integer recordCount, @Valid Long startTime, @Valid Long endTime) {
69         return stubUtils.getStubbedResponseStatistics();
70     }
71
72     @Override
73     public ResponseEntity<Map<String, Map<String, List<PdpStatistics>>>> pdpSubGroupStatistics(
74         String group,
75         String type,
76         UUID requestId,
77         @Valid Integer recordCount,
78         @Valid Long startTime,
79         @Valid Long endTime) {
80         return stubUtils.getStubbedResponseStatistics();
81     }
82
83     @Override
84     public ResponseEntity<StatisticsReport> statistics(UUID requestId) {
85         return stubUtils.getStubbedResponse(StatisticsReport.class);
86     }
87
88 }