Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/WaterLineArtifact.java @ 5200:42bb6ff78d1b 2.9.11
Directly set the connectionInitSqls on the datasource
Somehow the factory fails to set the connectionInitSqls if
we add it to the dbcpProperties. So we now set it directly
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Fri, 08 Mar 2013 11:48:33 +0100 |
parents | 6153c50f78cf |
children |
line wrap: on
line source
package de.intevation.flys.artifacts; import de.intevation.artifacts.CallContext; import de.intevation.flys.artifacts.geom.Lines; import de.intevation.flys.model.FastCrossSectionLine; /** * Interface, Artifact can create WaterLines (Water against Cross-Profile). */ public interface WaterLineArtifact { /** Get points that define a line of a (water)facet against a cross- * section. */ public Lines.LineData getWaterLines( int facetIdx, FastCrossSectionLine csl, double d, double w, CallContext context); } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :