Package de.dlr.proseo.geotools.rest
Class OverlapControllerDecorator
java.lang.Object
de.dlr.proseo.geotools.rest.OverlapControllerDecorator
- All Implemented Interfaces:
OverlapController
@RestController
@RequestMapping(value="/proseo/geotools/{version}/overlaps",
produces="application/json")
@Validated
public class OverlapControllerDecorator
extends Object
implements OverlapController
No description
(Generated with springmvc-raml-parser v.2.0.5)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Boolean> Tests whether the polygon is overlaps any region of type(s)org.springframework.http.ResponseEntity<Boolean> overlapspoly(String[] type, RestPolygon restPolygon) Tests whether the polygon is overlaps any region of type(s)
-
Constructor Details
-
OverlapControllerDecorator
public OverlapControllerDecorator()
-
-
Method Details
-
overlaps
@RequestMapping(value="", method=GET) public org.springframework.http.ResponseEntity<Boolean> overlaps(@RequestParam String[] poly, @RequestParam(required=false) String[] type) Tests whether the polygon is overlaps any region of type(s)- Specified by:
overlapsin interfaceOverlapController
-
overlapspoly
@RequestMapping(value="", method=POST) public org.springframework.http.ResponseEntity<Boolean> overlapspoly(@RequestParam(required=false) String[] type, @RequestBody RestPolygon restPolygon) Tests whether the polygon is overlaps any region of type(s)- Specified by:
overlapspolyin interfaceOverlapController
-