List fetch()

in api/src/main/java/org/apache/fineract/cn/cheque/api/v1/client/ChequeManager.java [59:74]


  List<Cheque> fetch(@RequestParam(value = "state", required = false, defaultValue = "ALL") final String state,
                     @RequestParam(value = "account", required = false) final String accountIdentifier);

  /**
   * The identifier is created by concatenating the MICR parts with the character <code>~</code>.
   * Sample:<br/>
   * &nbsp;&nbsp;{cheque-no}~{branch-sort-code}~{account-no}<br/>
   * &nbsp;&nbsp;246~13579~20030011<br/>
   *
   * @param identifier concatenated MICR
   * @return
   */
  @RequestMapping(
      value = "/cheques/{identifier}",
      method = RequestMethod.GET,
      produces = {MediaType.ALL_VALUE},