File tree 6 files changed +57
-82
lines changed
core/data/src/main/java/org/mifos/mobilewallet/core/data/fineract/api
6 files changed +57
-82
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments