Class ProductsApiResource
java.lang.Object
org.apache.fineract.portfolio.products.api.ProductsApiResource
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateProduct(String productType, String apiRequestBodyAsJson) handleCommands(String productType, Long productId, String commandParam, jakarta.ws.rs.core.UriInfo uriInfo, String apiRequestBodyAsJson) retrieveAllProducts(String productType, Integer offset, Integer limit, jakarta.ws.rs.core.UriInfo uriInfo) retrieveProduct(Long productId, String productType, jakarta.ws.rs.core.UriInfo uriInfo) retrieveTemplate(String productType, jakarta.ws.rs.core.UriInfo uriInfo) updateProduct(String productType, Long productId, String apiRequestBodyAsJson)
-
Constructor Details
-
ProductsApiResource
public ProductsApiResource()
-
-
Method Details
-
retrieveTemplate
-
retrieveProduct
-
retrieveAllProducts
-
createProduct
-
handleCommands
@POST @Path("{productId}") @Consumes("application/json") @Produces("application/json") public String handleCommands(@PathParam("type") String productType, @PathParam("productId") Long productId, @QueryParam("command") String commandParam, @Context jakarta.ws.rs.core.UriInfo uriInfo, String apiRequestBodyAsJson) -
updateProduct
-