view artifacts/src/main/java/de/intevation/artifacts/ServiceFactory.java @ 75:d4c4c23847f5

Extended the Artifact-Interface-Method setup to be able to put the XML-Document which can contain further Data to the Artifact-Implementation. artifacts/trunk@649 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 01 Feb 2010 13:54:05 +0000
parents ce488c1d3fc4
children 48d1a9a082c2
line wrap: on
line source
package de.intevation.artifacts;

import java.io.Serializable;

import org.w3c.dom.Document;
import org.w3c.dom.Node;
/**
 * @author Sascha L. Teichmann (sascha.teichmann@intevation.de)
 */
public interface ServiceFactory
extends          Serializable
{
    String getName();

    String getDescription();

    Service createService(Object globalContext);

    void setup(Document config, Node factoryNode);
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org