Search in sources :

Example 1 with GetResultResponse

use of org.n52.shetland.ogc.sos.response.GetResultResponse in project arctic-sea by 52North.

the class SosDecoderv20 method parseGetResultResponse.

private OwsServiceResponse parseGetResultResponse(final GetResultResponseDocument getResultResponseDoc) throws DecodingException {
    final GetResultResponse sosGetResultResponse = new GetResultResponse();
    final GetResultResponseType getResultResponse = getResultResponseDoc.getGetResultResponse();
    final String resultValues = parseResultValues(getResultResponse.getResultValues());
    sosGetResultResponse.setResultValues(resultValues);
    return sosGetResultResponse;
}
Also used : GetResultResponseType(net.opengis.sos.x20.GetResultResponseType) GetResultResponse(org.n52.shetland.ogc.sos.response.GetResultResponse) XmlString(org.apache.xmlbeans.XmlString)

Aggregations

GetResultResponseType (net.opengis.sos.x20.GetResultResponseType)1 XmlString (org.apache.xmlbeans.XmlString)1 GetResultResponse (org.n52.shetland.ogc.sos.response.GetResultResponse)1