Class MeetingsApiResource
java.lang.Object
org.apache.fineract.portfolio.meeting.api.MeetingsApiResource
@Path("/v1/{entityType}/{entityId}/meetings")
@Component
public class MeetingsApiResource
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateMeeting(String entityType, Long entityId, String apiRequestBodyAsJson) deleteMeeting(String entityType, Long entityId, Long meetingId) performMeetingCommands(String entityType, Long entityId, Long meetingId, String commandParam, String apiRequestBodyAsJson) retrieveMeeting(Long meetingId, String entityType, Long entityId, jakarta.ws.rs.core.UriInfo uriInfo) retrieveMeetings(String entityType, Long entityId, Integer limit, jakarta.ws.rs.core.UriInfo uriInfo) updateMeeting(String entityType, Long entityId, Long meetingId, String jsonRequestBody)
-
Constructor Details
-
MeetingsApiResource
public MeetingsApiResource()
-
-
Method Details
-
template
-
retrieveMeetings
-
retrieveMeeting
-
createMeeting
-
performMeetingCommands
@POST @Path("{meetingId}") @Consumes("application/json") @Produces("application/json") public String performMeetingCommands(@PathParam("entityType") String entityType, @PathParam("entityId") Long entityId, @PathParam("meetingId") Long meetingId, @QueryParam("command") String commandParam, String apiRequestBodyAsJson) -
updateMeeting
-
deleteMeeting
-