Mercurial > dive4elements > river
changeset 1821:e55f1a851923
Added ARTIFACT key to FLYSContextm, documentation.
flys-artifacts/trunk@3150 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Thu, 03 Nov 2011 10:19:29 +0000 |
parents | d562772a418e |
children | 6ed439ff61bf |
files | flys-artifacts/ChangeLog flys-artifacts/src/main/java/de/intevation/flys/artifacts/context/FLYSContext.java |
diffstat | 2 files changed, 16 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-artifacts/ChangeLog Thu Nov 03 10:14:51 2011 +0000 +++ b/flys-artifacts/ChangeLog Thu Nov 03 10:19:29 2011 +0000 @@ -1,3 +1,8 @@ +2011-11-03 Felix Wolfsteller <felix.wolfsteller@intevation.de> + + * src/main/java/de/intevation/flys/artifacts/context/FLYSContext.java: + Added ARTIFACT key, documentation. + 2011-11-03 Sascha L. Teichmann <sascha.teichmann@intevation.de> * src/main/java/de/intevation/flys/artifacts/charts/CrossSectionApp.java:
--- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/context/FLYSContext.java Thu Nov 03 10:14:51 2011 +0000 +++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/context/FLYSContext.java Thu Nov 03 10:19:29 2011 +0000 @@ -14,31 +14,35 @@ */ public class FLYSContext extends DefaultArtifactContext { - /** The logger used in this class */ + /** The logger used in this class. */ private static Logger logger = Logger.getLogger(FLYSContext.class); - /** The key that is used to store the TransitionEngine in the context */ + /** The key that is used to store the StateEngine in the context. */ + public static final String ARTIFACT_KEY = + "artifact"; + + /** The key that is used to store the TransitionEngine in the context. */ public static final String TRANSITION_ENGINE_KEY = "artifact.transition.engine"; - /** The key that is used to store the StateEngine in the context */ + /** The key that is used to store the StateEngine in the context. */ public static final String STATE_ENGINE_KEY = "artifact.state.engine"; /** The key that is used to store the Map of OutGenerator classes in the - * context.*/ + * context. */ public static final String OUTGENERATORS_KEY = "flys.export.outgenerators"; - /** The key that is used to store the map of themes in the context.*/ + /** The key that is used to store the map of themes in the context. */ public static final String THEMES = "flys.themes.map"; - /** The key that is used to store a map of theme mappings in the context.*/ + /** The key that is used to store a map of theme mappings in the context. */ public static final String THEME_MAPPING = "flys.themes.mapping.map"; - /** The key that is used to store a map of WMS urls for each river.*/ + /** The key that is used to store a map of WMS urls for each river. */ public static final String RIVER_WMS = "flys.floodmap.river.wms";