Change designer to plugin in code
[sdc.git] / catalog-fe / src / main / java / org / openecomp / sdc / fe / listen / FEAppContextListener.java
index ea67efb..76190bc 100644 (file)
@@ -30,7 +30,7 @@ import org.openecomp.sdc.common.api.Constants;
 import org.openecomp.sdc.common.impl.ExternalConfiguration;
 import org.openecomp.sdc.common.listener.AppContextListener;
 import org.openecomp.sdc.fe.config.ConfigurationManager;
-import org.openecomp.sdc.fe.impl.DesignerStatusBL;
+import org.openecomp.sdc.fe.impl.PluginStatusBL;
 import org.openecomp.sdc.fe.monitoring.FeMonitoringService;
 import org.openecomp.sdc.fe.servlets.HealthCheckService;
 import org.slf4j.Logger;
@@ -50,8 +50,8 @@ public class FEAppContextListener extends AppContextListener implements ServletC
                                ExternalConfiguration.getAppName());
                context.getServletContext().setAttribute(Constants.CONFIGURATION_MANAGER_ATTR, configurationManager);
                
-               DesignerStatusBL dsbl = new DesignerStatusBL();
-               context.getServletContext().setAttribute(Constants.DESIGNER_BL_COMPONENT, dsbl);
+               PluginStatusBL pbl = new PluginStatusBL();
+               context.getServletContext().setAttribute(Constants.PLUGIN_BL_COMPONENT, pbl);
 
                // Health Check service
                HealthCheckService hcs = new HealthCheckService(context.getServletContext());