X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dashboard%2Fwebapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fconfig%2FSpringContextCache.java;fp=dashboard%2Fwebapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fconfig%2FSpringContextCache.java;h=aaf46650e7de42e649f5c25ad863a15860b48c54;hb=53bedeac58c92f6219ee7961d7baccf11984b900;hp=a2f3d8f8a665ed9efde75167893301ae41dbedeb;hpb=d5aaf1cc8be867a6b298f1e79069f7445ddbfb57;p=nonrtric.git diff --git a/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java b/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java index a2f3d8f8..aaf46650 100644 --- a/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java +++ b/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,7 +19,6 @@ */ package org.oransc.ric.portal.dashboard.config; -import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.stereotype.Component; @@ -30,14 +29,14 @@ import org.springframework.stereotype.Component; @Component public class SpringContextCache implements ApplicationContextAware { - private static ApplicationContext applicationContext = null; + private ApplicationContext applicationContext = null; @Override - public void setApplicationContext(final ApplicationContext appContext) throws BeansException { + public void setApplicationContext(final ApplicationContext appContext) { applicationContext = appContext; } - public static ApplicationContext getApplicationContext() { + public ApplicationContext getApplicationContext() { return applicationContext; }