public interface TppRestApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<BankCodeStructure> |
getBankCodeStructure(String countryCode) |
org.springframework.http.ResponseEntity<List<org.iban4j.CountryCode>> |
getCountryCodes() |
org.springframework.http.ResponseEntity<Set<Currency>> |
getCurrencies() |
void |
login(String login,
String pin) |
org.springframework.http.ResponseEntity<Void> |
register(User user) |
org.springframework.http.ResponseEntity<Void> |
remove() |
org.springframework.http.ResponseEntity<Void> |
transactions(String iban) |
static final String BASE_PATH
@PostMapping(value="/login")
void login(@RequestHeader(value="login")
String login,
@RequestHeader(value="pin")
String pin)
@GetMapping(value="/currencies") org.springframework.http.ResponseEntity<Set<Currency>> getCurrencies()
@GetMapping(value="/country/codes") org.springframework.http.ResponseEntity<List<org.iban4j.CountryCode>> getCountryCodes()
@GetMapping(value="/country/codes/structure") org.springframework.http.ResponseEntity<BankCodeStructure> getBankCodeStructure(@RequestParam String countryCode)
@PostMapping(value="/register") org.springframework.http.ResponseEntity<Void> register(@RequestBody User user)
@DeleteMapping(value="/self") org.springframework.http.ResponseEntity<Void> remove()
Copyright © 2020. All rights reserved.