use of net.opengis.wfs._2.TruncatedResponse in project web-feature-service by 3dcitydb.
the class QueryExecuter method getTruncatedResponse.
private TruncatedResponse getTruncatedResponse(WFSException wfsException, HttpServletRequest request) {
WFSExceptionReportHandler reportHandler = new WFSExceptionReportHandler(cityGMLBuilder);
ExceptionReport exceptionReport = reportHandler.getExceptionReport(wfsException, KVPConstants.GET_FEATURE, request, true);
TruncatedResponse truncatedResponse = new TruncatedResponse();
truncatedResponse.setExceptionReport(exceptionReport);
return truncatedResponse;
}
use of net.opengis.wfs._2.TruncatedResponse in project web-feature-service by 3dcitydb.
the class QueryExecuter method getTruncatedResponse.
private TruncatedResponse getTruncatedResponse(WFSException wfsException, HttpServletRequest request) {
WFSExceptionReportHandler reportHandler = new WFSExceptionReportHandler(cityGMLBuilder);
ExceptionReport exceptionReport = reportHandler.getExceptionReport(wfsException, KVPConstants.GET_PROPERTY_VALUE, request, true);
TruncatedResponse truncatedResponse = new TruncatedResponse();
truncatedResponse.setExceptionReport(exceptionReport);
return truncatedResponse;
}
Aggregations