Mercurial > dive4elements > river
view flys-backend/src/main/java/de/intevation/flys/model/MinMaxWQ.java @ 4194:17fe00c09b7c
Don't redirect to request uri
If a url is requested which isn't the FLYS start page (FLYS.html) the user had
been redirected to this page after successfull authentication. This caused wrong
redirects after a authentication is expired and if the browser preloads e.g. the
CSS file. Therefore allow to set a redirect url in the web.xml config to always
redirect the user to the correct page after successfull authentication.
Fix for flys/issue970 (Zugangsfehler FLYS 2.9.3)
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 22 Oct 2012 09:51:12 +0200 (2012-10-22) |
parents | 9f92c42b7a81 |
children |
line wrap: on
line source
package de.intevation.flys.model; import java.io.Serializable; import java.math.BigDecimal; /** * Represents minmimum and maximum values for W and Q */ public class MinMaxWQ implements Serializable { private BigDecimal minw; private BigDecimal maxw; private BigDecimal minq; private BigDecimal maxq; /** * Default constuctor to indecate that no min and max w and q values * are available */ public MinMaxWQ() { } /** * Constructor for a new MinMaxWQ value * * @param minw Mimimim W * @param maxw Maximum W * @param minq Mimimim Q * @param maxq Maximum Q */ public MinMaxWQ( BigDecimal minw, BigDecimal maxw, BigDecimal minq, BigDecimal maxq) { this.minw = minw; this.maxw = maxw; this.minq = minq; this.maxq = maxq; } public BigDecimal getMinW() { return this.minw; } public BigDecimal getMaxW() { return this.maxw; } public BigDecimal getMinQ() { return this.minq; } public BigDecimal getMaxQ() { return this.maxq; } }