Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/services/CacheInvalidationService.java @ 4215:c179cd02177d
Logout the current user
Add code to the logout button to remove the current user from the session and to
redirect the browser window to the login page.
Part of flys/issue916 (Logout: "Abmelden" Knopf mit Funktion belegen)
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Tue, 23 Oct 2012 09:59:16 +0200 |
parents | 5642a83420f2 |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.services; import de.intevation.artifacts.CallMeta; import de.intevation.artifacts.GlobalContext; import de.intevation.artifacts.common.utils.XMLUtils; import de.intevation.artifactdatabase.XMLService; import de.intevation.flys.artifacts.cache.CacheFactory; import net.sf.ehcache.Cache; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; public class CacheInvalidationService extends XMLService { @Override public Document processXML( Document data, GlobalContext globalContext, CallMeta callMeta ) { Document result = XMLUtils.newDocument(); Element all = result.createElement("caches"); NodeList caches = data.getElementsByTagName("cache"); for (int i = 0, C = caches.getLength(); i < C; ++i) { Element c = (Element)caches.item(i); String name = c.getAttribute("name"); Element e = result.createElement("cache"); e.setAttribute("name", name); Cache cache = CacheFactory.getCache(name); if (cache != null) { cache.removeAll(); e.setTextContent("All elements removed."); } else { e.setTextContent("Error: Cache not found."); } all.appendChild(e); } result.appendChild(all); return result; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :