You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by na...@apache.org on 2017/06/14 13:57:15 UTC

fineract git commit: self saving account path param changes

Repository: fineract
Updated Branches:
  refs/heads/develop cbfdfa001 -> 17ff4b54c


self saving account path param changes


Project: http://git-wip-us.apache.org/repos/asf/fineract/repo
Commit: http://git-wip-us.apache.org/repos/asf/fineract/commit/17ff4b54
Tree: http://git-wip-us.apache.org/repos/asf/fineract/tree/17ff4b54
Diff: http://git-wip-us.apache.org/repos/asf/fineract/diff/17ff4b54

Branch: refs/heads/develop
Commit: 17ff4b54c51441e16aa8961f0096ece725dcb3b1
Parents: cbfdfa0
Author: nazeer shaik <na...@confluxtechnologies.com>
Authored: Wed Jun 14 19:08:40 2017 +0530
Committer: nazeer shaik <na...@confluxtechnologies.com>
Committed: Wed Jun 14 19:08:40 2017 +0530

----------------------------------------------------------------------
 .../portfolio/self/savings/api/SelfSavingsApiResource.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/fineract/blob/17ff4b54/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/savings/api/SelfSavingsApiResource.java
----------------------------------------------------------------------
diff --git a/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/savings/api/SelfSavingsApiResource.java b/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/savings/api/SelfSavingsApiResource.java
index 0414819..bfcd11d 100644
--- a/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/savings/api/SelfSavingsApiResource.java
+++ b/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/savings/api/SelfSavingsApiResource.java
@@ -92,7 +92,7 @@ public class SelfSavingsApiResource {
 	@Consumes({ MediaType.APPLICATION_JSON })
 	@Produces({ MediaType.APPLICATION_JSON })
 	public String retrieveSavingsTransaction(
-			@PathParam("savingsId") final Long accountId,
+			@PathParam("accountId") final Long accountId,
 			@PathParam("transactionId") final Long transactionId,
 			@Context final UriInfo uriInfo) {
 
@@ -109,7 +109,7 @@ public class SelfSavingsApiResource {
 	@Consumes({ MediaType.APPLICATION_JSON })
 	@Produces({ MediaType.APPLICATION_JSON })
 	public String retrieveAllSavingsAccountCharges(
-			@PathParam("savingsAccountId") final Long accountId,
+			@PathParam("accountId") final Long accountId,
 			@DefaultValue("all") @QueryParam("chargeStatus") final String chargeStatus,
 			@Context final UriInfo uriInfo) {
 
@@ -125,7 +125,7 @@ public class SelfSavingsApiResource {
 	@Consumes({ MediaType.APPLICATION_JSON })
 	@Produces({ MediaType.APPLICATION_JSON })
 	public String retrieveSavingsAccountCharge(
-			@PathParam("savingsAccountId") final Long accountId,
+			@PathParam("accountId") final Long accountId,
 			@PathParam("savingsAccountChargeId") final Long savingsAccountChargeId,
 			@Context final UriInfo uriInfo) {