Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/DefaultExportMode.java @ 735:d47901df0a14
Integrated the handling of AutoResumeStates into the initialization Process of an Artifact.
gnv-artifacts/trunk@773 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 15 Mar 2010 12:50:08 +0000 |
parents | 61f688a69a55 |
children | c4156275c1e1 |
line wrap: on
line source
package de.intevation.gnv.state; /** * @author Ingo Weinzierl (ingo.weinzierl@intevation.de) */ public class DefaultExportMode implements ExportMode { protected String name; protected String description; protected String mimeType; public DefaultExportMode(String name, String description, String mimeType){ this.name = name; this.description = description; this.mimeType = mimeType; } public String getName() { return name; } public String getDescription() { return description; } public String getMimeType() { return mimeType; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: