teichmann@529: /* teichmann@529: * Copyright (c) 2013 by Intevation GmbH teichmann@529: * teichmann@529: * This program is free software under the LGPL (>=v2.1) teichmann@529: * Read the file LGPL.txt coming with the software for details teichmann@529: * or visit http://www.gnu.org/licenses/ if it does not exist. teichmann@529: */ teichmann@529: package org.dive4elements.artifacts; teichmann@529: teichmann@529: import org.w3c.dom.Element; teichmann@530: import org.w3c.dom.Document; teichmann@529: teichmann@529: public interface ContextInjector { teichmann@529: teichmann@529: void setup(Element cfg); teichmann@529: teichmann@530: void injectContext(CallContext ctx, Artifact artifact, Document request); teichmann@529: } teichmann@529: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :