public interface DataMgmtStaffAPI
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<Void> |
account(String accountId) |
org.springframework.http.ResponseEntity<Void> |
branch(String branchId) |
org.springframework.http.ResponseEntity<String> |
branchId(BbanStructure bbanStructure) |
org.springframework.http.ResponseEntity<Set<Currency>> |
currencies() |
org.springframework.http.ResponseEntity<Void> |
depositAccount(String accountId) |
org.springframework.http.ResponseEntity<Void> |
uploadData(UploadedDataTO data) |
org.springframework.http.ResponseEntity<Void> |
user(String userId) |
static final String BASE_PATH
@DeleteMapping(value="/transactions/{accountId}")
org.springframework.http.ResponseEntity<Void> account(@PathVariable(value="accountId")
String accountId)
@DeleteMapping(value="/account/{accountId}")
org.springframework.http.ResponseEntity<Void> depositAccount(@PathVariable(value="accountId")
String accountId)
@DeleteMapping(value="/user/{userId}")
org.springframework.http.ResponseEntity<Void> user(@PathVariable(value="userId")
String userId)
@DeleteMapping(value="/branch/{branchId}")
org.springframework.http.ResponseEntity<Void> branch(@PathVariable(value="branchId")
String branchId)
@PostMapping(value="/upload") org.springframework.http.ResponseEntity<Void> uploadData(@RequestBody UploadedDataTO data)
@GetMapping(value="/currencies") org.springframework.http.ResponseEntity<Set<Currency>> currencies()
@PostMapping(value="/branch") org.springframework.http.ResponseEntity<String> branchId(@RequestBody BbanStructure bbanStructure)
Copyright © 2020. All rights reserved.