Mercurial > dive4elements > river
view flys-backend/src/main/java/de/intevation/flys/model/MinMaxWQ.java @ 4215:c179cd02177d
Logout the current user
Add code to the logout button to remove the current user from the session and to
redirect the browser window to the login page.
Part of flys/issue916 (Logout: "Abmelden" Knopf mit Funktion belegen)
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Tue, 23 Oct 2012 09:59:16 +0200 |
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; } }