@Profile(value="debug_mode") @RestController @RequestMapping(path="aspsp-profile/for-debug") public class AspspProfileUpdateController extends Object
| Constructor and Description |
|---|
AspspProfileUpdateController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<Void> |
updateAisRedirectUrlToAspsp(String redirectUrlToAspsp) |
org.springframework.http.ResponseEntity<Void> |
updateAvailablePaymentProducts(List<String> availablePaymentProducts) |
org.springframework.http.ResponseEntity<Void> |
updateAvailablePaymentTypes(List<String> types) |
org.springframework.http.ResponseEntity<Void> |
updateBookingStatuses(List<BookingStatus> bookingStatuses) |
org.springframework.http.ResponseEntity<Void> |
updateCombinedServiceIndicator(boolean combinedServiceIndicator) |
org.springframework.http.ResponseEntity<Void> |
updateFrequencyPerDay(int frequencyPerDay) |
org.springframework.http.ResponseEntity<Void> |
updateMulticurrencyAccountLevel(String multicurrencyAccountLevel) |
org.springframework.http.ResponseEntity<Void> |
updateRedirectUrlToAspsp(String redirectUrlToAspsp) |
org.springframework.http.ResponseEntity<Void> |
updateScaApproach(String scaApproach) |
org.springframework.http.ResponseEntity<Void> |
updateTppSignatureRequired(boolean tppSignatureRequired) |
@PutMapping(path="/frequency-per-day") public org.springframework.http.ResponseEntity<Void> updateFrequencyPerDay(@RequestBody int frequencyPerDay)
@PutMapping(path="/combined-service-indicator") public org.springframework.http.ResponseEntity<Void> updateCombinedServiceIndicator(@RequestBody boolean combinedServiceIndicator)
@PutMapping(path="/available-payment-products") public org.springframework.http.ResponseEntity<Void> updateAvailablePaymentProducts(@RequestBody List<String> availablePaymentProducts)
@PutMapping(path="/available-payment-types") public org.springframework.http.ResponseEntity<Void> updateAvailablePaymentTypes(@RequestBody List<String> types)
@PutMapping(path="/sca-approach") public org.springframework.http.ResponseEntity<Void> updateScaApproach(@RequestBody String scaApproach)
@PutMapping(path="/tpp-signature-required") public org.springframework.http.ResponseEntity<Void> updateTppSignatureRequired(@RequestBody boolean tppSignatureRequired)
@PutMapping(path="/redirect-url-to-aspsp-pis") public org.springframework.http.ResponseEntity<Void> updateRedirectUrlToAspsp(@RequestBody String redirectUrlToAspsp)
@PutMapping(path="/redirect-url-to-aspsp-ais") public org.springframework.http.ResponseEntity<Void> updateAisRedirectUrlToAspsp(@RequestBody String redirectUrlToAspsp)
@PutMapping(path="/multicurrency-account-level") public org.springframework.http.ResponseEntity<Void> updateMulticurrencyAccountLevel(@RequestBody String multicurrencyAccountLevel)
@PutMapping(path="/available-booking-statuses") public org.springframework.http.ResponseEntity<Void> updateBookingStatuses(@RequestBody List<BookingStatus> bookingStatuses)
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.