Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/QWDDateRange.java @ 4488:5041105d2edd
Check if response code from GGInA is 200 OK
Only parse the GGInA response if the status code is 200 OK. This improves the
error message if GGInA is not available and shows the real reason instead of a
JDOM error while parsing the response.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Wed, 14 Nov 2012 10:36:21 +0100 |
parents | e7f1556192b3 |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import java.io.Serializable; import de.intevation.flys.artifacts.model.fixings.QWD; public class QWDDateRange implements Serializable { public QWD qwd; public DateRange dateRange; public QWDDateRange(QWD qwd, DateRange dr) { this.qwd = qwd; this.dateRange = dr; } public QWD getQWD() { return qwd; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :