Interface TppDataUploaderRestApi


  • public interface TppDataUploaderRestApi
    • Method Detail

      • uploadData

        @PutMapping("/upload")
        org.springframework.http.ResponseEntity<String> uploadData​(@RequestBody
                                                                   org.springframework.web.multipart.MultipartFile file)
      • generateData

        @GetMapping("/generate/{currency}")
        org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> generateData​(@RequestParam
                                                                                                   boolean generatePayments,
                                                                                                   @PathVariable("currency")
                                                                                                   String currency)
      • generateIban

        @GetMapping("/generate/iban")
        org.springframework.http.ResponseEntity<String> generateIban()
      • uploadTransactions

        @PutMapping("/upload/transactions")
        org.springframework.http.ResponseEntity<Map<String,​String>> uploadTransactions​(@RequestBody
                                                                                             org.springframework.web.multipart.MultipartFile file)
      • downloadTransactionTemplate

        @GetMapping("/example")
        org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> downloadTransactionTemplate()