Search in sources :

Example 1 with GeoServerWPSClientInterface

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;
}
Also used : GeoServerWPSClient(com.sldeditor.extension.filesystem.geoserver.client.GeoServerWPSClient) GeoServerWPSClientInterface(com.sldeditor.extension.filesystem.geoserver.client.GeoServerWPSClientInterface) ProcessBriefType(net.opengis.wps10.ProcessBriefType)

Aggregations

GeoServerWPSClient (com.sldeditor.extension.filesystem.geoserver.client.GeoServerWPSClient)1 GeoServerWPSClientInterface (com.sldeditor.extension.filesystem.geoserver.client.GeoServerWPSClientInterface)1 ProcessBriefType (net.opengis.wps10.ProcessBriefType)1