Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/DefaultExportMode.java @ 657:af3f56758f59
merged gnv-artifacts/0.5
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:53 +0200 |
parents | 61f688a69a55 |
children | c4156275c1e1 |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
1 package de.intevation.gnv.state; | |
2 | |
3 /** | |
4 * @author Ingo Weinzierl (ingo.weinzierl@intevation.de) | |
5 */ | |
6 public class DefaultExportMode | |
7 implements ExportMode | |
8 { | |
9 protected String name; | |
10 protected String description; | |
11 protected String mimeType; | |
12 | |
13 public DefaultExportMode(String name, String description, String mimeType){ | |
14 this.name = name; | |
15 this.description = description; | |
16 this.mimeType = mimeType; | |
17 } | |
18 | |
19 public String getName() { | |
20 return name; | |
21 } | |
22 | |
23 public String getDescription() { | |
24 return description; | |
25 } | |
26 | |
27 public String getMimeType() { | |
28 return mimeType; | |
29 } | |
30 } | |
31 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: |