@UserResource @RestController @RequestMapping(path="/api/v1/bankaccesses/{accessId}/accounts/{accountId}/payments") public class PaymentController extends BaseController
| Constructor and Description |
|---|
PaymentController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.HttpEntity<Void> |
createPayment(String accessId,
String accountId,
de.adorsys.multibanking.web.payment.PaymentController.CreatePaymentRequest paymentRequest) |
org.springframework.hateoas.Resource<PaymentEntity> |
getPayment(String accessId,
String accountId,
String paymentId) |
org.springframework.http.HttpEntity<Void> |
submitPayment(String accessId,
String accountId,
String paymentId,
de.adorsys.multibanking.web.payment.PaymentController.SubmitPaymentRequest paymentRequest) |
loadBytesForWeb, loadBytesForWeb, resourceNotFound, returnDocument, returnDocument, userDataLocationHeader, userId, yamlObjectMapperpublic static final String BASE_PATH
@RequestMapping(value="/{paymentId}",
method=GET)
public org.springframework.hateoas.Resource<PaymentEntity> getPayment(@PathVariable
String accessId,
@PathVariable
String accountId,
@PathVariable
String paymentId)
@RequestMapping(method=POST) public org.springframework.http.HttpEntity<Void> createPayment(@PathVariable String accessId, @PathVariable String accountId, @RequestBody de.adorsys.multibanking.web.payment.PaymentController.CreatePaymentRequest paymentRequest)
@RequestMapping(value="/{paymentId}/submit",
method=POST)
public org.springframework.http.HttpEntity<Void> submitPayment(@PathVariable
String accessId,
@PathVariable
String accountId,
@PathVariable
String paymentId,
@RequestBody
de.adorsys.multibanking.web.payment.PaymentController.SubmitPaymentRequest paymentRequest)
Copyright © 2018. All rights reserved.