@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> |
updateAccountReferenceFields(List<SupportedAccountReferenceField> referenceFields) |
org.springframework.http.ResponseEntity<Void> |
updateAisRedirectUrlToAspsp(String redirectUrlToAspsp) |
org.springframework.http.ResponseEntity<Void> |
updateAllPsd2Support(Boolean allPsd2Support) |
org.springframework.http.ResponseEntity<Void> |
updateAuthorisationStartType(AuthorisationStartType authorisationStartType) |
org.springframework.http.ResponseEntity<Void> |
updateAvailablePaymentProducts(List<String> availablePaymentProducts) |
org.springframework.http.ResponseEntity<Void> |
updateAvailablePaymentTypes(List<String> types) |
org.springframework.http.ResponseEntity<Void> |
updateBankOfferedConsentSupport(Boolean bankOfferedConsentSupport) |
org.springframework.http.ResponseEntity<Void> |
updateBookingStatuses(List<BookingStatus> bookingStatuses) |
org.springframework.http.ResponseEntity<Void> |
updateCombinedServiceIndicator(boolean combinedServiceIndicator) |
org.springframework.http.ResponseEntity<Void> |
updateConsentLifetime(int consentLifetime) |
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) |
org.springframework.http.ResponseEntity<Void> |
updateTransactionLifetime(int transactionLifetime) |
@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="/bank-offered-consent-support") public org.springframework.http.ResponseEntity<Void> updateBankOfferedConsentSupport(@RequestBody Boolean bankOfferedConsentSupport)
@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)
@PutMapping(path="/supported-account-reference-fields") public org.springframework.http.ResponseEntity<Void> updateAccountReferenceFields(@RequestBody List<SupportedAccountReferenceField> referenceFields)
@PutMapping(path="/consent-lifetime") public org.springframework.http.ResponseEntity<Void> updateConsentLifetime(@RequestBody int consentLifetime)
@PutMapping(path="/transaction-lifetime") public org.springframework.http.ResponseEntity<Void> updateTransactionLifetime(@RequestBody int transactionLifetime)
@PutMapping(path="/all-psd2-support") public org.springframework.http.ResponseEntity<Void> updateAllPsd2Support(@RequestBody Boolean allPsd2Support)
@PutMapping(path="/authorisation-start-type") public org.springframework.http.ResponseEntity<Void> updateAuthorisationStartType(@RequestBody AuthorisationStartType authorisationStartType)
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.