public interface TppDataUploaderRestApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> |
downloadTransactionTemplate() |
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> |
generateData(boolean generatePayments,
String currency) |
org.springframework.http.ResponseEntity<String> |
generateIban() |
org.springframework.http.ResponseEntity<String> |
uploadData(org.springframework.web.multipart.MultipartFile file) |
org.springframework.http.ResponseEntity<Map<String,String>> |
uploadTransactions(org.springframework.web.multipart.MultipartFile file) |
static final String BASE_PATH
@PutMapping(value="/upload") org.springframework.http.ResponseEntity<String> uploadData(@RequestBody org.springframework.web.multipart.MultipartFile file)
@GetMapping(value="/generate/{currency}")
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> generateData(@RequestParam
boolean generatePayments,
@PathVariable(value="currency")
String currency)
@GetMapping(value="/generate/iban") org.springframework.http.ResponseEntity<String> generateIban()
@PutMapping(value="/upload/transactions") org.springframework.http.ResponseEntity<Map<String,String>> uploadTransactions(@RequestBody org.springframework.web.multipart.MultipartFile file)
@GetMapping(value="/example") org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> downloadTransactionTemplate()
Copyright © 2020. All rights reserved.