use of net.opengis.wps10.LiteralOutputType in project sldeditor by robward-scisys.
the class GeoServerWPSClient method getOutputParameter.
/**
* Gets the output parameter.
*
* @param typeOfData the type of data
* @param processOutputs the process outputs
* @return the output parameter
*/
private boolean getOutputParameter(DataTypeEnum typeOfData, ProcessOutputsType processOutputs) {
for (Object o : processOutputs.getOutput()) {
if (o instanceof OutputDescriptionType) {
OutputDescriptionType oo = (OutputDescriptionType) o;
LiteralOutputType literal = oo.getLiteralOutput();
if (literal != null) {
DomainMetadataType dataType = literal.getDataType();
if (dataType != null) {
// System.out.println(dataType.getValue() + "/" + dataType.getReference());
}
} else {
SupportedCRSsType bbox = oo.getBoundingBoxOutput();
if (bbox != null) {
// System.out.println(bbox);
} else {
SupportedComplexDataType complex = oo.getComplexOutput();
if (complex != null) {
ComplexDataCombinationsType parameterDataType = complex.getSupported();
if (isGeometry(typeOfData, parameterDataType)) {
return true;
}
}
}
}
}
}
return false;
}
Aggregations