Interface TppDataUploaderRestApi
-
public interface TppDataUploaderRestApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method 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(String tppId)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)
-
-
-
Field Detail
-
BASE_PATH
static final String BASE_PATH
- See Also:
- Constant Field Values
-
-
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("generatePayments") boolean generatePayments, @PathVariable("currency") String currency)
-
generateIban
@GetMapping("/generate/iban") org.springframework.http.ResponseEntity<String> generateIban(@RequestParam("tppId") String tppId)
-
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()
-
-