Class RecurringDepositProductsApiResource

java.lang.Object
org.apache.fineract.portfolio.savings.api.RecurringDepositProductsApiResource

@Path("/v1/recurringdepositproducts") @Component public class RecurringDepositProductsApiResource extends Object
  • Constructor Details

    • RecurringDepositProductsApiResource

      public RecurringDepositProductsApiResource()
  • Method Details

    • create

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

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

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

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

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

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