forked from openMF/ph-ee-bulk-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PHEE-307 Resolve checkstyle errors manually and update gradle command…
… in CI (openMF#107) * PHEE-307 Resolve checkstyle errors manually and update gradle command in CI * updated the gradle command for checkstyle in CI * Rebased and resolved conflicts * Resolved the checkstyle error manually and updated the api package name * Applied the spotless check --------- Co-authored-by: Dhruv Sonagara <[email protected]>
- Loading branch information
1 parent
96e3d7d
commit 398050e
Showing
57 changed files
with
326 additions
and
359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 3 additions & 7 deletions
10
src/main/java/org/mifos/processor/bulk/api/ApiOriginFilter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 13 additions & 21 deletions
34
...ulk/API/definition/BatchTransactions.java → ...ulk/api/definition/BatchTransactions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...sor/bulk/API/definition/BulkTransfer.java → ...sor/bulk/api/definition/BulkTransfer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ocessor/bulk/API/definition/Simulate.java → ...ocessor/bulk/api/definition/Simulate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package org.mifos.processor.bulk.api.definition; | ||
|
||
import org.springframework.web.bind.annotation.PostMapping; | ||
import javax.servlet.http.HttpServletResponse; | ||
import java.io.IOException; | ||
import javax.servlet.http.HttpServletResponse; | ||
import org.springframework.web.bind.annotation.PostMapping; | ||
|
||
// from("rest:post:/simulate").log("Reached Simulation"); | ||
public interface Simulate { | ||
|
||
@PostMapping(value = "/simulate", produces="application/json") | ||
@PostMapping(value = "/simulate", produces = "application/json") | ||
void simulate(HttpServletResponse httpServletResponse) throws IOException; | ||
|
||
} |
Oops, something went wrong.