Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/AreaCreationState.java @ 4187:21f4e4b79121
Refactor GaugeDischargeCurveFacet to be able to set a facet name
For adding another output of the GaugeDischargeCurveArtifact it is necessary to
provide to facet instances with different names. Therefore the
GaugeDischargeCurveFacet is extended to set the facet name in the constructor.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Fri, 19 Oct 2012 13:25:49 +0200 |
parents | 3c3693e9c538 |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.states; import java.util.List; import org.apache.log4j.Logger; import de.intevation.artifacts.CallContext; import de.intevation.flys.artifacts.model.AreaFacet; import de.intevation.artifactdatabase.state.Facet; import de.intevation.flys.artifacts.FLYSArtifact; import de.intevation.flys.artifacts.AreaArtifact; import de.intevation.flys.artifacts.model.FacetTypes; /** Trivial state to create areafacets, no caching. */ public class AreaCreationState extends DefaultState implements FacetTypes { /** The logger that is used in this state. */ private static Logger logger = Logger.getLogger(AreaCreationState.class); /** * From this state can only be continued trivially. */ @Override protected String getUIProvider() { return "continue"; } /** Just reproduce the Facet. */ protected Object compute( FLYSArtifact areaArtifact, CallContext cc, String hash, List<Facet> facets, Object old ) { logger.debug("AreaCreationState.compute"); if (facets != null) { AreaArtifact aArt = (AreaArtifact) areaArtifact; facets.add(new AreaFacet(0, aArt.getFacetName(), aArt.getAreaName())); } // TODO use compute to exploit caching strategies. return null; } /** */ @Override public Object computeFeed( FLYSArtifact artifact, String hash, CallContext context, List<Facet> facets, Object old ) { return compute((FLYSArtifact) artifact, context, hash, facets, old); } /** * */ @Override public Object computeAdvance( FLYSArtifact artifact, String hash, CallContext context, List<Facet> facets, Object old ) { return compute((FLYSArtifact) artifact, context, hash, facets, old); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :