Class InterestRateChartsApiResource

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

@Path("/v1/interestratecharts") @Component public class InterestRateChartsApiResource extends Object
  • Constructor Details

    • InterestRateChartsApiResource

      public InterestRateChartsApiResource()
  • Method Details

    • template

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

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

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

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

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

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