view flys-backend/src/main/java/de/intevation/flys/importer/ImportRiver.java @ 180:3908bfb2aa43

Store imported rivers into database. Needs testing! flys-backend/trunk@1488 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 16 Mar 2011 18:23:45 +0000
parents 31895d24387e
children 4ab2c3bd474c
line wrap: on
line source
package de.intevation.flys.importer;

import java.io.File;

public class ImportRiver
{
    protected String name;

    protected File   wstFile;

    protected File   bbInfoFile;

    public ImportRiver() {
    }

    public ImportRiver(String name, File wstFile, File bbInfoFile) {
        this.name       = name;
        this.wstFile    = wstFile;
        this.bbInfoFile = bbInfoFile;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public File getWstFile() {
        return wstFile;
    }

    public void setWstFile(File wstFile) {
        this.wstFile = wstFile;
    }

    public File getBBInfo() {
        return bbInfoFile;
    }

    public void setBBInfo(File bbInfoFile) {
        this.bbInfoFile = bbInfoFile;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org