Package de.adorsys.psd2.consent.api
Interface PisPaymentApi
-
@RequestMapping(path="api/v1/pis") public interface PisPaymentApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<String>getPaymentIdByEncryptedString(String encryptedId)org.springframework.http.ResponseEntity<Void>updateInternalPaymentStatusAfterSpiService(String paymentId, String status)org.springframework.http.ResponseEntity<Void>updatePaymentCancellationInternalRequestId(String paymentId, String internalRequestId)org.springframework.http.ResponseEntity<Void>updatePaymentCancellationTppRedirectUri(String paymentId, String tpPRedirectURI, String tpPNokRedirectURI)org.springframework.http.ResponseEntity<Void>updatePaymentStatusAfterSpiService(String paymentId, String status)
-
-
-
Method Detail
-
getPaymentIdByEncryptedString
@GetMapping(path="/payment/{payment-id}") org.springframework.http.ResponseEntity<String> getPaymentIdByEncryptedString(@PathVariable("payment-id") String encryptedId)
-
updatePaymentStatusAfterSpiService
@PutMapping(path="/payment/{payment-id}/status/{status}") org.springframework.http.ResponseEntity<Void> updatePaymentStatusAfterSpiService(@PathVariable("payment-id") String paymentId, @PathVariable("status") String status)
-
updateInternalPaymentStatusAfterSpiService
@PutMapping(path="/payment/{payment-id}/internal-status/{status}") org.springframework.http.ResponseEntity<Void> updateInternalPaymentStatusAfterSpiService(@PathVariable("payment-id") String paymentId, @PathVariable("status") String status)
-
updatePaymentCancellationTppRedirectUri
@PutMapping(path="/payment/{payment-id}/cancellation/redirects") org.springframework.http.ResponseEntity<Void> updatePaymentCancellationTppRedirectUri(@PathVariable("payment-id") String paymentId, @RequestHeader(value="TPP-Redirect-URI",required=false) String tpPRedirectURI, @RequestHeader(value="TPP-Nok-Redirect-URI",required=false) String tpPNokRedirectURI)
-
updatePaymentCancellationInternalRequestId
@PutMapping(path="/payment/{payment-id}/cancellation/internal-request-id/{internal-request-id}") org.springframework.http.ResponseEntity<Void> updatePaymentCancellationInternalRequestId(@PathVariable("payment-id") String paymentId, @PathVariable("internal-request-id") String internalRequestId)
-
-