Class PlatformPropertyController


  • @RestController
    public class PlatformPropertyController
    extends ControllerBase
    • Constructor Detail

      • PlatformPropertyController

        public PlatformPropertyController()
    • Method Detail

      • listProperties

        @GetMapping("/platform/property")
        public org.springframework.http.ResponseEntity<Properties> listProperties()
      • getProperty

        @GetMapping("/platform/property/{prop}")
        public org.springframework.http.ResponseEntity<Property> getProperty​(@PathVariable("prop")
                                                                             String prop)
      • createProperty

        @PostMapping("/platform/property")
        public org.springframework.http.ResponseEntity<Property> createProperty​(@RequestBody
                                                                                Property property)
      • updateProperty

        @PutMapping("/platform/property/{prop}")
        public org.springframework.http.ResponseEntity<Property> updateProperty​(@RequestBody
                                                                                Property property)
      • deleteProperty

        @DeleteMapping("/platform/property/{prop}")
        public org.springframework.http.ResponseEntity<Property> deleteProperty​(@PathVariable("prop")
                                                                                String property)