Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/FixRealizingAccess.java @ 5622:b28a6d05e969
Add a new mechanism in mapfish print call to add arbitary data maps
Data properties are identified by starting with mapfish-data
and they are then split in info value pairs where info
can be the description of the information and value the value
of the information to be transported in the data map.
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Tue, 09 Apr 2013 19:04:32 +0200 |
parents | a929d9a9fa1e |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.access; import de.intevation.artifacts.CallContext; import de.intevation.flys.artifacts.FLYSArtifact; import de.intevation.flys.artifacts.model.Segment; import java.util.List; import org.apache.log4j.Logger; /** Fix-Realizing (Volmer/Ausgelagerte Wasserspiegellage) access. */ public class FixRealizingAccess extends FixAccess { private static Logger log = Logger.getLogger(FixRealizingAccess.class); protected Boolean isQ; protected List<Segment> segments; public FixRealizingAccess(FLYSArtifact artifact, CallContext context) { super(artifact, context); } public Boolean isQ() { if (isQ == null) { isQ = getBoolean("wq_isq"); } if (log.isDebugEnabled()) { log.debug("isQ: " + isQ); } return isQ; } public List<Segment> getSegments() { if (segments == null) { String segmentsS = getString("wq_values"); if (segmentsS != null) { segments = Segment.parseSegments(segmentsS); } } if (log.isDebugEnabled()) { log.debug("segments: " + segments); } return segments; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :