void setPayrollConfiguration()

in api/src/main/java/org/apache/fineract/cn/payroll/api/v1/client/PayrollManager.java [53:64]


  void setPayrollConfiguration(@PathVariable(value = "identifier") final String customerIdentifier,
                               @RequestBody @Valid final PayrollConfiguration payrollConfiguration);

  @RequestMapping(
      value = "/customers/{identifier}/payroll",
      method = RequestMethod.GET,
      produces = MediaType.ALL_VALUE,
      consumes = MediaType.APPLICATION_JSON_VALUE
  )
  @ThrowsExceptions({
      @ThrowsException(status = HttpStatus.NOT_FOUND, exception = PayrollConfigurationNotFoundException.class)
  })