Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/OutputMode.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 | 9a828e5a2390 |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.state; | |
5 | |
6 import java.io.Serializable; | |
7 import java.util.Collection; | |
8 import java.util.List; | |
9 | |
10 /** | |
11 * @author Tim Englich <tim.englich@intevation.de> | |
12 * | |
13 */ | |
14 public interface OutputMode extends Serializable { | |
15 | |
16 public String getName(); | |
17 | |
18 public String getDescription(); | |
19 | |
20 public String getMimeType(); | |
21 | |
22 public Collection<InputValue> getInputParameters(); | |
23 | |
24 public List<ExportMode> getExportModes(); | |
25 } |