b9f2c4e809e16ddf7fbb3309fca5bf98795a672e
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / rest / stub / PolicyAuditControllerV1Stub.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.UUID;
25 import javax.validation.Valid;
26 import javax.validation.constraints.Max;
27 import javax.validation.constraints.Min;
28 import lombok.RequiredArgsConstructor;
29 import org.onap.policy.models.pap.concepts.PolicyAudit;
30 import org.onap.policy.pap.main.rest.PapRestControllerV1;
31 import org.onap.policy.pap.main.rest.PolicyAuditControllerV1Api;
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 PolicyAuditControllerV1Stub extends PapRestControllerV1
40     implements PolicyAuditControllerV1Api {
41
42     private final StubUtils stubUtils;
43
44     @Override
45     public ResponseEntity<List<PolicyAudit>> getAllAuditRecords(
46             UUID requestId,
47             @Min(1) @Max(100) @Valid Integer recordCount,
48             @Valid Long startTime,
49             @Valid Long endTime) {
50         return stubUtils.getStubbedResponseList(PolicyAudit.class);
51     }
52
53     @Override
54     public ResponseEntity<Object> getAuditRecordsByGroup(
55             String pdpGroupName,
56             UUID requestId,
57             @Min(1) @Max(100) @Valid Integer recordCount,
58             @Valid Long startTime,
59             @Valid Long endTime) {
60         return stubUtils.getStubbedResponse(Object.class);
61     }
62
63     @Override
64     public ResponseEntity<Object> getAuditRecordsOfPolicy(
65             String policyName,
66             String policyVersion,
67             UUID requestId,
68             @Min(1) @Max(100) @Valid Integer recordCount,
69             @Valid Long startTime,
70             @Valid Long endTime) {
71         return stubUtils.getStubbedResponse(Object.class);
72     }
73
74     @Override
75     public ResponseEntity<Object> getAuditRecordsOfPolicyinPdpGroup(
76             String pdpGroupName,
77             String policyName,
78             String policyVersion,
79             UUID requestId,
80             @Min(1) @Max(100) @Valid Integer recordCount,
81             @Valid Long startTime,
82             @Valid Long endTime) {
83         return stubUtils.getStubbedResponse(Object.class);
84     }
85
86 }