X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=inline;f=webapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fcontroller%2FCaasIngressController.java;h=ad375f952be2036869589d96fdbde9b7b9abd261;hb=09a0d3c769ba83727fe454093cd6054eca77cfdf;hp=f7224f36bea7f2d6a5c18e2b0dbdcfacd8f8efd9;hpb=73f474280f9f270d84db23498c62db8cfe1d315c;p=portal%2Fric-dashboard.git diff --git a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/CaasIngressController.java b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/CaasIngressController.java index f7224f36..ad375f95 100644 --- a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/CaasIngressController.java +++ b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/CaasIngressController.java @@ -20,8 +20,6 @@ package org.oransc.ric.portal.dashboard.controller; import java.lang.invoke.MethodHandles; -import java.security.KeyManagementException; -import java.security.NoSuchAlgorithmException; import javax.servlet.http.HttpServletResponse; @@ -74,8 +72,7 @@ public class CaasIngressController { private final SimpleKubernetesClient ciPltClient; @Autowired - public CaasIngressController(final SimpleKubernetesClient ciAuxApi, final SimpleKubernetesClient ciPltApi) - throws KeyManagementException, NoSuchAlgorithmException { + public CaasIngressController(final SimpleKubernetesClient ciAuxApi, final SimpleKubernetesClient ciPltApi) { Assert.notNull(ciAuxApi, "auxApi must not be null"); Assert.notNull(ciPltApi, "pltApi must not be null"); this.ciAuxClient = ciAuxApi;