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<Void> |
createPoint(RecoveryPointTO recoveryPoint) |
org.springframework.http.ResponseEntity<Set<Currency>> |
currencies() |
org.springframework.http.ResponseEntity<Void> |
deletePoint(Long id) |
org.springframework.http.ResponseEntity<Void> |
depositAccount(String accountId) |
org.springframework.http.ResponseEntity<List<RecoveryPointTO>> |
getAllPoints() |
org.springframework.http.ResponseEntity<RecoveryPointTO> |
getPoint(Long id) |
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)
@PostMapping(value="/point") org.springframework.http.ResponseEntity<Void> createPoint(@RequestBody RecoveryPointTO recoveryPoint)
@GetMapping(value="/point/all") org.springframework.http.ResponseEntity<List<RecoveryPointTO>> getAllPoints()
@GetMapping(value="/point/{id}")
org.springframework.http.ResponseEntity<RecoveryPointTO> getPoint(@PathVariable(value="id")
Long id)
Copyright © 2021. All rights reserved.