Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WKmsImpl.java @ 4216:a04862abce42
Don't redirect to the login page without query params
Don't redirect to the login page without query params for the development mode.
Therefore just reload the page after the user object is removed from the session
and GGInAFilter will redirect to the correct long URL.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Tue, 23 Oct 2012 10:50:48 +0200 |
parents | 44dc117aa2b7 |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import gnu.trove.TDoubleArrayList; import de.intevation.flys.utils.DataUtil; public class WKmsImpl extends NamedObjectImpl implements WKms { protected TDoubleArrayList kms; protected TDoubleArrayList ws; public WKmsImpl() { super(""); kms = new TDoubleArrayList(); ws = new TDoubleArrayList(); } /** * Create named, empty WKms. */ public WKmsImpl(String name) { super(name); kms = new TDoubleArrayList(); ws = new TDoubleArrayList(); } public WKmsImpl(int capacity) { super(""); kms = new TDoubleArrayList(capacity); ws = new TDoubleArrayList(capacity); } public WKmsImpl(TDoubleArrayList kms, TDoubleArrayList ws) { this(kms, ws, ""); } public WKmsImpl( TDoubleArrayList kms, TDoubleArrayList ws, String name ) { super(name); this.kms = kms; this.ws = ws; } /** * Add a W (in NN+m) for a km (in km). */ public void add(double km, double w) { kms.add(km); ws .add(w); } @Override public double getW(int index) { return ws.getQuick(index); } @Override public double getKm(int index) { return kms.getQuick(index); } @Override public boolean guessWaterIncreasing() { return guessWaterIncreasing(0.05f); } protected boolean guessWaterIncreasing(float factor) { return DataUtil.guessWaterIncreasing(ws, factor); } @Override public int size() { return kms.size(); } @Override public TDoubleArrayList allKms() { return kms; } @Override public TDoubleArrayList allWs() { return ws; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :