use of com.sldeditor.extension.filesystem.geoserver.client.GeoServerWPSClientInterface in project sldeditor by robward-scisys.
the class RenderTransformationManager method getRenderTransform.
/**
* Gets the render transform.
*
* @param connection the connection
* @return the render transform
*/
public List<ProcessBriefType> getRenderTransform(GeoServerConnection connection) {
GeoServerWPSClientInterface client = new GeoServerWPSClient(connection);
client.getCapabilities();
List<ProcessBriefType> functionList = client.getRenderTransformations(DataTypeEnum.E_VECTOR);
functionList = client.getRenderTransformations(DataTypeEnum.E_RASTER);
return functionList;
}
Aggregations