public void contextDestroyed(ServletContextEvent sce) {
this.contextLoaderListener.contextDestroyed(sce);
}
public void contextInitialized(ServletContextEvent sce) {
SContext servletContext = (SContext) sce.getServletContext();
ContextHandler contextHandler = servletContext.getContextHandler();
Map initParams = contextHandler.getInitParams();
String configLocations = (String) initParams.get(ContextLoader.CONFIG_LOCATION_PARAM);
if (configLocations != null) {
configLocations = configLocations + " " + PLUTO_SERVICE_CONFIG_LOCATION;
initParams.put(ContextLoader.CONFIG_LOCATION_PARAM, configLocations);