LocationAreaController

@RestController
@RequestMapping(value = ["/location-area"])
class LocationAreaController(locationAreaService: LocationAreaService)

Constructors

Link copied to clipboard
constructor(locationAreaService: LocationAreaService)

Functions

Link copied to clipboard
@DeleteMapping(value = ["/{id:\d+}"])
fun deleteById(@PathVariable id: Long)
Link copied to clipboard
@GetMapping(value = ["/page"])
fun getLocationAreaPage(pageable: Pageable, @ModelAttribute specification: LocationAreaSpecification): Page<LocationAreaView>
Link copied to clipboard
@PostMapping
fun save(@Valid @RequestBody command: SaveLocationAreaInput): LocationAreaView
Link copied to clipboard
@PutMapping
fun update(@Valid @RequestBody command: UpdateLocationAreaInput): LocationAreaView