Class FineractEntityApiResource

java.lang.Object
org.apache.fineract.infrastructure.entityaccess.api.FineractEntityApiResource

@Path("/v1/entitytoentitymapping") @Consumes("application/json") @Produces("application/json") @Component public class FineractEntityApiResource extends Object
  • Constructor Details

    • FineractEntityApiResource

      public FineractEntityApiResource()
  • Method Details

    • retrieveAll

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

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

      @GET @Path("/{mapId}/{fromId}/{toId}") @Consumes("application/json") @Produces("application/json") public String getEntityToEntityMappings(@PathParam("mapId") Long mapId, @PathParam("fromId") Long fromId, @PathParam("toId") Long toId, @Context jakarta.ws.rs.core.UriInfo uriInfo)
    • createMap

      @POST @Path("/{relId}") @Consumes("application/json") @Produces("application/json") public String createMap(@PathParam("relId") Long relId, String apiRequestBodyAsJson)
    • updateMap

      @PUT @Path("/{mapId}") @Consumes("application/json") @Produces("application/json") public String updateMap(@PathParam("mapId") Long mapId, String apiRequestBodyAsJson)
    • delete

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