Class ProductMixApiResource

java.lang.Object
org.apache.fineract.portfolio.loanproduct.productmix.api.ProductMixApiResource

@Path("/v1/loanproducts/{productId}/productmix") @Component public class ProductMixApiResource extends Object
  • Constructor Details

    • ProductMixApiResource

      public ProductMixApiResource()
  • Method Details

    • retrieveTemplate

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

      @POST @Consumes("application/json") @Produces("application/json") public org.apache.fineract.infrastructure.core.data.CommandProcessingResult createProductMix(@PathParam("productId") Long productId, ProductMixRequest productMixRequest)
    • updateProductMix

      @PUT @Consumes("application/json") @Produces("application/json") public org.apache.fineract.infrastructure.core.data.CommandProcessingResult updateProductMix(@PathParam("productId") Long productId, ProductMixRequest productMixRequest)
    • deleteProductMix

      @DELETE @Consumes("application/json") @Produces("application/json") public org.apache.fineract.infrastructure.core.data.CommandProcessingResult deleteProductMix(@PathParam("productId") Long productId)