Skip to content

Commit 4da575e

Browse files
PratyushSingh07therajanmaurya
authored andcommitted
refactor #1509: core module api to kotlin
1 parent 74f78b0 commit 4da575e

File tree

6 files changed

+57
-82
lines changed

6 files changed

+57
-82
lines changed

core/data/src/main/java/org/mifos/mobilewallet/core/data/fineract/api/ApiEndPoints.java

-29
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package org.mifos.mobilewallet.core.data.fineract.api
2+
3+
/**
4+
* Created by naman on 17/6/17.
5+
*/
6+
object ApiEndPoints {
7+
//This class contains all the Constants for API End Points
8+
const val AUTHENTICATION = "authentication"
9+
const val REGISTRATION = "registration"
10+
const val CLIENTS = "clients"
11+
const val SAVINGS_ACCOUNTS = "savingsaccounts"
12+
const val TRANSACTIONS = "transactions"
13+
const val RECURRING_ACCOUNTS = "recurringdepositaccounts"
14+
const val SEARCH = "search"
15+
const val BENEFICIARIES = "beneficiaries"
16+
const val ACCOUNT_TRANSFER = "accounttransfers"
17+
const val DOCUMENTS = "documents"
18+
const val DATATABLES = "datatables"
19+
const val TWOFACTOR = "twofactor"
20+
const val RUN_REPORT = "runreports"
21+
const val USER = "users"
22+
const val STANDING_INSTRUCTION = "standinginstructions"
23+
}

core/data/src/main/java/org/mifos/mobilewallet/core/data/fineract/api/BaseURL.java

-27
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package org.mifos.mobilewallet.core.data.fineract.api
2+
3+
/**
4+
* Created by naman on 17/6/17.
5+
*/
6+
class BaseURL {
7+
val url: String
8+
get() = PROTOCOL_HTTPS + API_ENDPOINT + API_PATH
9+
val selfServiceUrl: String
10+
get() = PROTOCOL_HTTPS + API_ENDPOINT_SELF + API_PATH_SELF
11+
12+
companion object {
13+
const val PROTOCOL_HTTPS = "https://"
14+
const val API_ENDPOINT = "venus.mifos.community"
15+
const val API_PATH = "/fineract-provider/api/v1/"
16+
17+
//self service url
18+
const val API_ENDPOINT_SELF = "venus.mifos.community"
19+
const val API_PATH_SELF = "/fineract-provider/api/v1/self/"
20+
}
21+
}

core/data/src/main/java/org/mifos/mobilewallet/core/data/fineract/api/GenericResponse.java

-26
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package org.mifos.mobilewallet.core.data.fineract.api
2+
3+
/**
4+
* Created by ankur on 21/May/2018
5+
*/
6+
class GenericResponse {
7+
var responseFields = HashMap<String, Any>()
8+
override fun toString(): String {
9+
return "GenericResponse{" +
10+
"responseFields=" + responseFields +
11+
'}'
12+
}
13+
}

0 commit comments

Comments
 (0)