X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=main%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Fapi%2Fmain%2Frest%2Fstub%2FApiRestControllerStub.java;h=38fe00324ef033ca6252e862998b4e0814ca39a1;hb=22d211f6df78363d61192057d7cd03534ff7d1c9;hp=4b8489043489f6626a63841df0d65dc802cba8a0;hpb=029c9b9ca902c0443b6b6cc3a4dbad99ebf180e9;p=policy%2Fapi.git diff --git a/main/src/main/java/org/onap/policy/api/main/rest/stub/ApiRestControllerStub.java b/main/src/main/java/org/onap/policy/api/main/rest/stub/ApiRestControllerStub.java index 4b848904..38fe0032 100644 --- a/main/src/main/java/org/onap/policy/api/main/rest/stub/ApiRestControllerStub.java +++ b/main/src/main/java/org/onap/policy/api/main/rest/stub/ApiRestControllerStub.java @@ -1,6 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2023 Nordix Foundation. + * Modifications Copyright (C) 2023 Bell Canada. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,7 +27,6 @@ import lombok.RequiredArgsConstructor; import org.onap.policy.api.main.rest.CommonRestController; import org.onap.policy.api.main.rest.PolicyFetchMode; import org.onap.policy.api.main.rest.genapi.PolicyDesignApi; -import org.onap.policy.api.main.rest.provider.statistics.StatisticsReport; import org.onap.policy.common.endpoints.report.HealthCheckReport; import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate; import org.springframework.context.annotation.Profile; @@ -174,10 +174,4 @@ public class ApiRestControllerStub extends CommonRestController implements Polic return stubUtils.getStubbedResponse(ToscaServiceTemplate.class); } - @Override - public ResponseEntity getStatistics( - UUID requestID) { - return stubUtils.getStubbedResponse(StatisticsReport.class); - } - }