All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mx.path.model.mdx.web.controller.TransferRepaymentsController Maven / Gradle / Ivy

There is a newer version: 16.0.0
Show newest version
package com.mx.path.model.mdx.web.controller;

import com.mx.path.gateway.accessor.AccessorResponse;
import com.mx.path.model.mdx.model.MdxList;
import com.mx.path.model.mdx.model.transfer.Repayment;
import com.mx.path.model.mdx.model.transfer.options.RepaymentListOptions;
import com.mx.path.model.mdx.web.model.transfer.TransferRepaymentsQueryParameters;

import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping(value = "{clientId}", produces = BaseController.MDX_MEDIA)
public class TransferRepaymentsController extends BaseController {

  public TransferRepaymentsController() {
  }

  @RequestMapping(value = "/users/{user_id}/transfers/{id}/repayments", method = RequestMethod.GET)
  public final ResponseEntity> getRepayments(@PathVariable("id") String transferId, TransferRepaymentsQueryParameters queryParameters) {
    RepaymentListOptions options = new RepaymentListOptions();
    options.setStartOn(queryParameters.getStart_on());
    options.setFrequencyId(queryParameters.getFrequency_id());
    AccessorResponse> response = gateway().transfers().repayments().list(transferId, options);
    return new ResponseEntity<>(response.getResult().wrapped(), createMultiMapForResponse(response.getHeaders()), HttpStatus.OK);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy