Java 17 / Spring 6 / Spring Boot 3 Upgrade
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / rest / stub / PolicyStatusControllerV1Stub.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 jakarta.validation.Valid;
24 import java.util.UUID;
25 import lombok.RequiredArgsConstructor;
26 import org.onap.policy.pap.main.rest.PapRestControllerV1;
27 import org.onap.policy.pap.main.rest.PolicyStatusControllerV1Api;
28 import org.springframework.context.annotation.Profile;
29 import org.springframework.http.ResponseEntity;
30 import org.springframework.web.bind.annotation.RestController;
31
32 @RestController
33 @RequiredArgsConstructor
34 @Profile("stub")
35 public class PolicyStatusControllerV1Stub extends PapRestControllerV1
36     implements PolicyStatusControllerV1Api {
37
38     private final StubUtils stubUtils;
39
40     @Override
41     public ResponseEntity<Object> getStatusOfAllPolicies(UUID requestId) {
42         return stubUtils.getStubbedResponse(Object.class);
43     }
44
45     @Override
46     public ResponseEntity<Object> getStatusOfPolicies(
47             String pdpGroupName, String policyName, UUID requestId) {
48         return stubUtils.getStubbedResponse(Object.class);
49     }
50
51     @Override
52     public ResponseEntity<Object> getStatusOfPoliciesByGroup(
53             String pdpGroupName, UUID requestId, @Valid String regex) {
54         return stubUtils.getStubbedResponse(Object.class);
55     }
56
57     @Override
58     public ResponseEntity<Object> getStatusOfPolicy(
59             String pdpGroupName, String policyName, String policyVersion, UUID requestId) {
60         return stubUtils.getStubbedResponse(Object.class);
61     }
62
63     @Override
64     public ResponseEntity<Object> queryAllDeployedPolicies(UUID requestId, @Valid String regex) {
65         return stubUtils.getStubbedResponse(Object.class);
66     }
67
68     @Override
69     public ResponseEntity<Object> queryDeployedPolicies(String name, UUID requestId) {
70         return stubUtils.getStubbedResponse(Object.class);
71     }
72
73     @Override
74     public ResponseEntity<Object> queryDeployedPolicy(
75             String name, String version, UUID requestId) {
76         return stubUtils.getStubbedResponse(Object.class);
77     }
78
79 }