Class AdHocApiResource
java.lang.Object
org.apache.fineract.adhocquery.api.AdHocApiResource
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.apache.fineract.infrastructure.core.data.CommandProcessingResultcreateAdHocQuery(AdHocRequest adHocRequest) org.apache.fineract.infrastructure.core.data.CommandProcessingResultdeleteAdHocQuery(Long adHocId) Delete AdHocQueryretrieveAdHocQuery(Long adHocId) template()org.apache.fineract.infrastructure.core.data.CommandProcessingResultupdate(Long adHocId, AdHocRequest adHocRequest)
-
Constructor Details
-
AdHocApiResource
public AdHocApiResource()
-
-
Method Details
-
retrieveAll
-
template
@GET @Consumes("application/json") @Produces("application/json") @Path("template") public AdHocData template() -
createAdHocQuery
@POST @Consumes("application/json") @Produces("application/json") public org.apache.fineract.infrastructure.core.data.CommandProcessingResult createAdHocQuery(AdHocRequest adHocRequest) -
retrieveAdHocQuery
-
update
@PUT @Path("{adHocId}") @Consumes("application/json") @Produces("application/json") public org.apache.fineract.infrastructure.core.data.CommandProcessingResult update(@PathParam("adHocId") Long adHocId, AdHocRequest adHocRequest) -
deleteAdHocQuery
@DELETE @Path("{adHocId}") @Consumes("application/json") @Produces("application/json") public org.apache.fineract.infrastructure.core.data.CommandProcessingResult deleteAdHocQuery(@PathParam("adHocId") Long adHocId) Delete AdHocQuery- Parameters:
adHocId-- Returns:
-