Class InterestRateChartSlabsApiResource

java.lang.Object
org.apache.fineract.portfolio.interestratechart.api.InterestRateChartSlabsApiResource

@Path("/v1/interestratecharts/{chartId}/chartslabs") @Component public class InterestRateChartSlabsApiResource extends Object
  • Constructor Details

    • InterestRateChartSlabsApiResource

      public InterestRateChartSlabsApiResource()
  • Method Details

    • template

      @GET @Path("template") @Consumes("application/json") @Produces("application/json") public String template(@Context jakarta.ws.rs.core.UriInfo uriInfo, @PathParam("chartId") Long chartId)
    • retrieveAll

      @GET @Consumes("application/json") @Produces("application/json") public String retrieveAll(@PathParam("chartId") Long chartId, @Context jakarta.ws.rs.core.UriInfo uriInfo)
    • retrieveOne

      @GET @Path("{chartSlabId}") @Consumes("application/json") @Produces("application/json") public String retrieveOne(@PathParam("chartId") Long chartId, @PathParam("chartSlabId") Long chartSlabId, @Context jakarta.ws.rs.core.UriInfo uriInfo)
    • create

      @POST @Consumes("application/json") @Produces("application/json") public String create(@PathParam("chartId") Long chartId, String apiRequestBodyAsJson)
    • update

      @PUT @Path("{chartSlabId}") @Consumes("application/json") @Produces("application/json") public String update(@PathParam("chartId") Long chartId, @PathParam("chartSlabId") Long chartSlabId, String apiRequestBodyAsJson)
    • delete

      @DELETE @Path("{chartSlabId}") @Consumes("application/json") @Produces("application/json") public String delete(@PathParam("chartId") Long chartId, @PathParam("chartSlabId") Long chartSlabId)