Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/CalculationResult.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 | a441be7f1589 |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import java.io.Serializable; /** * Wraps result(s) of a Calculation and eventual error reports. */ public class CalculationResult implements Serializable { protected Object data; protected Calculation report; public CalculationResult() { } public CalculationResult(Calculation report) { this(null, report); } /** * @param report report (e.g. error messages). */ public CalculationResult(Object data, Calculation report) { this.data = data; this.report = report; } public Object getData() { return data; } public void setData(Object data) { this.data = data; } public Calculation getReport() { return report; } public void setReport(Calculation report) { this.report = report; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :