Class ReportMailingJobApiResource
java.lang.Object
org.apache.fineract.infrastructure.reportmailingjob.api.ReportMailingJobApiResource
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateReportMailingJob(String apiRequestBodyAsJson) deleteReportMailingJob(Long entityId, String apiRequestBodyAsJson) retrieveAllReportMailingJobs(jakarta.ws.rs.core.UriInfo uriInfo, Integer offset, Integer limit, String orderBy, String sortOrder) retrieveReportMailingJob(Long entityId, jakarta.ws.rs.core.UriInfo uriInfo) retrieveReportMailingJobTemplate(jakarta.ws.rs.core.UriInfo uriInfo) updateReportMailingJob(Long entityId, String apiRequestBodyAsJson)
-
Constructor Details
-
ReportMailingJobApiResource
public ReportMailingJobApiResource()
-
-
Method Details
-
createReportMailingJob
-
updateReportMailingJob
-
deleteReportMailingJob
-
retrieveReportMailingJob
-
retrieveReportMailingJobTemplate
@GET @Path("template") @Consumes("application/json") @Produces("application/json") public String retrieveReportMailingJobTemplate(@Context jakarta.ws.rs.core.UriInfo uriInfo) -
retrieveAllReportMailingJobs
@GET @Consumes("application/json") @Produces("application/json") public String retrieveAllReportMailingJobs(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("offset") Integer offset, @QueryParam("limit") Integer limit, @QueryParam("orderBy") String orderBy, @QueryParam("sortOrder") String sortOrder)
-