X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fcontroller%2FCaasIngressController.java;h=ad375f952be2036869589d96fdbde9b7b9abd261;hb=09a0d3c769ba83727fe454093cd6054eca77cfdf;hp=c7960180a4c197d9c22c79a3f3fedac8b0f8e0b7;hpb=55472d9367cf229b2b87a625a8aa1dfb822cbaad;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 c7960180..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 @@ -2,7 +2,7 @@ * ========================LICENSE_START================================= * O-RAN-SC * %% - * Copyright (C) 2019 AT&T Intellectual Property and Nokia + * Copyright (C) 2019 AT&T Intellectual Property * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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;