Interface DataMgmtStaffAPI


  • public interface DataMgmtStaffAPI
    • Method Detail

      • account

        @DeleteMapping("/transactions/{accountId}")
        org.springframework.http.ResponseEntity<Void> account​(@PathVariable("accountId")
                                                              String accountId)
      • depositAccount

        @DeleteMapping("/account/{accountId}")
        org.springframework.http.ResponseEntity<Void> depositAccount​(@PathVariable("accountId")
                                                                     String accountId)
      • user

        @DeleteMapping("/user/{userId}")
        org.springframework.http.ResponseEntity<Void> user​(@PathVariable("userId")
                                                           String userId)
      • branch

        @DeleteMapping("/branch/{branchId}")
        org.springframework.http.ResponseEntity<Void> branch​(@PathVariable("branchId")
                                                             String branchId)
      • uploadData

        @PostMapping("/upload")
        org.springframework.http.ResponseEntity<Void> uploadData​(@RequestBody
                                                                 UploadedDataTO data)
      • currencies

        @GetMapping("/currencies")
        org.springframework.http.ResponseEntity<Set<Currency>> currencies()
      • branchId

        @PostMapping("/branch")
        org.springframework.http.ResponseEntity<String> branchId​(@RequestBody
                                                                 BbanStructure bbanStructure)
      • createPoint

        @PostMapping("/point")
        org.springframework.http.ResponseEntity<Void> createPoint​(@RequestBody
                                                                  RecoveryPointTO recoveryPoint)
      • getAllPoints

        @GetMapping("/point/all")
        org.springframework.http.ResponseEntity<List<RecoveryPointTO>> getAllPoints()
      • getPoint

        @GetMapping("/point/{id}")
        org.springframework.http.ResponseEntity<RecoveryPointTO> getPoint​(@PathVariable("id")
                                                                          Long id)
      • deletePoint

        @DeleteMapping("/point/{id}")
        org.springframework.http.ResponseEntity<Void> deletePoint​(@PathVariable("id")
                                                                  Long id)