Interface DataMgmtStaffAPI
-
public interface DataMgmtStaffAPI
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method 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)
-
-
-
Field Detail
-
BASE_PATH
static final String BASE_PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
account
@DeleteMapping("/transactions/{accountId}") org.springframework.http.ResponseEntity<Void> account(@PathVariable("accountId") String accountId)
-
depositAccount
@DeleteMapping("/account/{accountId}") org.springframework.http.ResponseEntity<Void> depositAccount(@PathVariable("accountId") String accountId)
-
user
@DeleteMapping("/user/{userId}") org.springframework.http.ResponseEntity<Void> user(@PathVariable("userId") String userId)
-
branch
@DeleteMapping("/branch/{branchId}") org.springframework.http.ResponseEntity<Void> branch(@PathVariable("branchId") String branchId)
-
uploadData
@PostMapping("/upload") org.springframework.http.ResponseEntity<Void> uploadData(@RequestBody UploadedDataTO data)
-
currencies
@GetMapping("/currencies") org.springframework.http.ResponseEntity<Set<Currency>> currencies()
-
branchId
@PostMapping("/branch") org.springframework.http.ResponseEntity<String> branchId(@RequestBody BbanStructure bbanStructure)
-
createPoint
@PostMapping("/point") org.springframework.http.ResponseEntity<Void> createPoint(@RequestBody RecoveryPointTO recoveryPoint)
-
getAllPoints
@GetMapping("/point/all") org.springframework.http.ResponseEntity<List<RecoveryPointTO>> getAllPoints()
-
getPoint
@GetMapping("/point/{id}") org.springframework.http.ResponseEntity<RecoveryPointTO> getPoint(@PathVariable("id") Long id)
-
-