# HG changeset patch # User Felix Wolfsteller # Date 1320315569 0 # Node ID e55f1a8519234b58449ce851b8bc906d1e42bbcc # Parent d562772a418eb31df7c465d46561a847fb9ea72e Added ARTIFACT key to FLYSContextm, documentation. flys-artifacts/trunk@3150 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r d562772a418e -r e55f1a851923 flys-artifacts/ChangeLog --- 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 + + * src/main/java/de/intevation/flys/artifacts/context/FLYSContext.java: + Added ARTIFACT key, documentation. + 2011-11-03 Sascha L. Teichmann * src/main/java/de/intevation/flys/artifacts/charts/CrossSectionApp.java: diff -r d562772a418e -r e55f1a851923 flys-artifacts/src/main/java/de/intevation/flys/artifacts/context/FLYSContext.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";