You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
655 B
Java
16 lines
655 B
Java
package com.mfsys.uco;
|
|
|
|
public interface UCOURI {
|
|
String VIEW_BALANCE = "/user/viewBalance";
|
|
String FETCH_DEPOSITACCOUNTS = "/depositAccounts";
|
|
String FETCH_ACCOUNT_STATEMENT = "/accountStatement";
|
|
String FETCH_ACCOUNT_INQUIRY = "/accountInquiry";
|
|
String GET_TRANSACTION_PIN = "/transactionPin";
|
|
String SUBMIT_TRANSACTION = "/submitTransaction";
|
|
String GENERATE_TRANSACTIONS_REPORT = "/generateReport";
|
|
String REFRESH_TOKEN = "/auth/refresh-token";
|
|
String CHANGE_PASSWORD = "/user/changePassword";
|
|
String RESET_PASSWORD = "/user/resetPassword";
|
|
String GENERATE_INTERNAL_TOKEN = "/auth/generateInternalToken";
|
|
}
|