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.
|
|
|
|
package com.mfsys.uco.constants;
|
|
|
|
|
|
|
|
|
|
public interface UCOURI {
|
|
|
|
|
|
|
|
|
|
String ONBOARD_CUSTOMER = "/auth/user/authenticate/onboardCutomer";
|
|
|
|
|
String VIEW_BALANCE = "/user/viewBalance";
|
|
|
|
|
String FETCH_LOGIIN_DATA = "/fetchlogindata";
|
|
|
|
|
String FETCH_DEPOSITACCOUNTS = "/depositAccounts";
|
|
|
|
|
String FETCH_ACCOUNT_STATEMENT = "/accountStatement";
|
|
|
|
|
String FETCH_ACCOUNT_INQUIRY = "/accountInquiry";
|
|
|
|
|
String GENERATE_TRANSACTIONS_REPORT = "/generateReport";
|
|
|
|
|
String CREATE_TRAN_PIN = "/createTransactionPin";
|
|
|
|
|
String VERIFY_TRAN_PIN = "/verifyTransactionPin";
|
|
|
|
|
String CHANGE_TRAN_PIN = "/changeTransactionPin";
|
|
|
|
|
String FETCH_EXCHANGE_RATE = "/fetchExchangeRate";
|
|
|
|
|
String ACCOUNT_ACTIVITY = "/account/activity/organization/{porOrgacode}/customer/{cmpCustcode}/fromdate/{fdate}/todate/{tdate}";
|
|
|
|
|
String RESEND_OTP = "/resend-otp";
|
|
|
|
|
String ADD_UCO_CUSTOMER_ACCOUNT = "/createUcoAccount";
|
|
|
|
|
String UPDATE_CUSTOMER_PROFILE = "/updateCustomerProfile";
|
|
|
|
|
String ADD_BENEFICIARY = "/addBeneficary";
|
|
|
|
|
String GET_BENEFICIARY = "/getBeneficary";
|
|
|
|
|
String DELETE_BENEFICIARY = "/deleteBeneficary";
|
|
|
|
|
}
|