Class StandingInstructionApiResource
java.lang.Object
org.apache.fineract.portfolio.account.api.StandingInstructionApiResource
@Path("/v1/standinginstructions")
@Component
public class StandingInstructionApiResource
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionretrieveAll(jakarta.ws.rs.core.UriInfo uriInfo, String externalId, Integer offset, Integer limit, String orderBy, String sortOrder, Integer transferType, String clientName, Long clientId, Long fromAccount, Integer fromAccountType) retrieveOne(Long standingInstructionId, jakarta.ws.rs.core.UriInfo uriInfo, String externalId, Integer offset, Integer limit, String orderBy, String sortOrder) template(Long fromOfficeId, Long fromClientId, Long fromAccountId, Integer fromAccountType, Long toOfficeId, Long toClientId, Long toAccountId, Integer toAccountType, Integer transferType, jakarta.ws.rs.core.UriInfo uriInfo)
-
Constructor Details
-
StandingInstructionApiResource
public StandingInstructionApiResource()
-
-
Method Details
-
template
@GET @Path("template") @Consumes("application/json") @Produces("application/json") public String template(@QueryParam("fromOfficeId") Long fromOfficeId, @QueryParam("fromClientId") Long fromClientId, @QueryParam("fromAccountId") Long fromAccountId, @QueryParam("fromAccountType") Integer fromAccountType, @QueryParam("toOfficeId") Long toOfficeId, @QueryParam("toClientId") Long toClientId, @QueryParam("toAccountId") Long toAccountId, @QueryParam("toAccountType") Integer toAccountType, @QueryParam("transferType") Integer transferType, @Context jakarta.ws.rs.core.UriInfo uriInfo) -
create
-
update
-
retrieveAll
@GET @Consumes("application/json") @Produces("application/json") public String retrieveAll(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("externalId") String externalId, @QueryParam("offset") Integer offset, @QueryParam("limit") Integer limit, @QueryParam("orderBy") String orderBy, @QueryParam("sortOrder") String sortOrder, @QueryParam("transferType") Integer transferType, @QueryParam("clientName") String clientName, @QueryParam("clientId") Long clientId, @QueryParam("fromAccountId") Long fromAccount, @QueryParam("fromAccountType") Integer fromAccountType) -
retrieveOne
@GET @Path("{standingInstructionId}") @Consumes("application/json") @Produces("application/json") public String retrieveOne(@PathParam("standingInstructionId") Long standingInstructionId, @Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("externalId") String externalId, @QueryParam("offset") Integer offset, @QueryParam("limit") Integer limit, @QueryParam("orderBy") String orderBy, @QueryParam("sortOrder") String sortOrder)
-