Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/services/RiverService.java @ 4890:bf38ea4cb0f7
Added bodies to macros. Use the bodies of <dc:call-macro><body></dc:call-macro> as <dc:macro-body/> in tthe macro. Example:
<dc:macro name="greet"><hello><dc:macro-body/></hello></dc:macro>
<dc:call-macro name="greet"><planet>Earth</planet></dc:call-macro>
Result:
<hello><panet>Earth</planet></hello>
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Mon, 28 Jan 2013 18:55:55 +0100 |
parents | 614ffddb860e |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.services; import java.util.List; import org.apache.log4j.Logger; import org.w3c.dom.Document; import org.w3c.dom.Element; import de.intevation.artifacts.CallMeta; import de.intevation.artifacts.GlobalContext; import de.intevation.artifacts.common.ArtifactNamespaceContext; import de.intevation.artifacts.common.utils.XMLUtils; import de.intevation.flys.model.River; import de.intevation.flys.artifacts.model.RiverFactory; /** * This service provides information about the supported rivers by this * application. * * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class RiverService extends FLYSService { /** The logger used in this service.*/ private static Logger logger = Logger.getLogger(RiverService.class); protected Document doProcess( Document data, GlobalContext globalContext, CallMeta callMeta ) { logger.debug("RiverService.process"); Document result = XMLUtils.newDocument(); XMLUtils.ElementCreator ec = new XMLUtils.ElementCreator( result, ArtifactNamespaceContext.NAMESPACE_URI, ArtifactNamespaceContext.NAMESPACE_PREFIX); List<River> allRivers = RiverFactory.getRivers(); Element rivers = ec.create("rivers"); for (River river: allRivers) { Element r = ec.create("river"); ec.addAttr(r, "name", river.getName(), true); rivers.appendChild(r); } result.appendChild(rivers); return result; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :