public void onEvent(WebAppEvent event)
{
// TODO Auto-generated method stub
if (event instanceof WebAppLifeCycleEvent)
{
WebAppLifeCycleEvent waEvent = (WebAppLifeCycleEvent)event;
if (waEvent.getType() == WebAppLifeCycleEvent.REMOVED)
{
String webApp = event.getWebApp().getServletContext().getContextPath();
removeWebAppSkin(webApp);
removeContextAppSkin(event.getWebApp().getServletContext());
}