view gnv-artifacts/src/main/java/de/intevation/gnv/layer/LayerArtifact.java @ 616:93978859fa9e

Added the Configuration and the Classes for the new Product Layer. The Product does not generate any output at this Time. gnv-artifacts/trunk@686 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 12 Feb 2010 18:04:58 +0000
parents
children 9ae63d39bdd0
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.layer;

import org.apache.log4j.Logger;
import org.w3c.dom.Document;

import de.intevation.artifacts.ArtifactFactory;
import de.intevation.gnv.artifacts.GNVArtifactBase;

/**
 * @author Tim Englich <tim.englich@intevation.de>
 *
 */
public class LayerArtifact extends GNVArtifactBase{

    /**
     * the logger, used to log exceptions and additionally information
     */
    private static Logger log = Logger.getLogger(LayerArtifact.class);
    
    /**
     * The UID of this Class
     */
    private static final long serialVersionUID = 409054207294748753L;

    /**
     * Constructor
     */
    public LayerArtifact() {
        super();
        log.debug("LayerArtifact.Constructor");
        this.name = "layer";
    }


    /**
     * @see de.intevation.gnv.artifacts.GNVArtifactBase#setup(java.lang.String,
     *      de.intevation.artifacts.ArtifactFactory, java.lang.Object 
     *      org.w3c.dom.Document)
     */
    @Override
    public void setup(String identifier, ArtifactFactory factory, 
                      Object context, Document data) {
        log.debug("LayerArtifact.setup");
        super.setup(identifier, factory, context, data);
    }

}

http://dive4elements.wald.intevation.org