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.
40 lines
2.1 KiB
Java
40 lines
2.1 KiB
Java
package com.mfsys.uco;
|
|
|
|
public interface UCOURI {
|
|
String VIEW_BALANCE = "/user/viewBalance";
|
|
String ONBOARD_CUSTOMER = "/auth/user/authenticate/onboardCutomer";
|
|
String ADD_UCO_CUSTOMER_ACCOUNT = "/createUcoAccount";
|
|
String UPDATE_CUSTOMER_PROFILE = "/updateCustomerProfile";
|
|
String FETCH_DEPOSITACCOUNTS = "/depositAccounts";
|
|
String FETCH_ACCOUNT_STATEMENT = "/accountStatement";
|
|
String FETCH_ACCOUNT_INQUIRY = "/accountInquiry";
|
|
String GENERATE_TRANSACTIONS_REPORT = "/generateReport";
|
|
String RESEND_OTP = "/resend-otp";
|
|
String CREATE_TRAN_PIN = "/createTransactionPin";
|
|
String VERIFY_TRAN_PIN = "/verifyTransactionPin";
|
|
String CHANGE_TRAN_PIN = "/changeTransactionPin";
|
|
String FETCH_LOGIIN_DATA = "/fetchlogindata";
|
|
String FETCH_EXCHANGE_RATE = "/fetchExchangeRate";
|
|
String GET_DR_TRANSACTION_PIN = "/sendDrTranOtpAndVerifyTranPin";
|
|
String RESEND_GET_DR_TRANSACTION_PIN = "/resendDrTranOtp";
|
|
String SUBMIT_DR_TRANSACTION = "/submitDrTransaction";
|
|
String SUBMIT_ADD_MONEY_GL_ACC_DR_TRANSACTION = "/submitGLAccontAddMoneyTranasction";
|
|
String CURRENCY_EVALUATION = "/getEvaluatedCurrency";
|
|
String SUBMIT_CR_TRANSACTION = "/submitCrTransaction";
|
|
String PENDING_CR_TRANSACTION = "/fetchPendingCredittransaction";
|
|
String ACCOUNT_STATEMENT = "/fetchDepositAccountStatement";
|
|
String BANKING_CASH_IN = "/deposit/transactions/uco/cash-in";
|
|
String BANKING_CASH_OUT = "/deposit/transactions/uco/cash-out";
|
|
String BANKING_REVERSE_TRANSACTION = "/deposit/transactions/uco/reverse-transaction";
|
|
String ACCOUNT_ACTIVITY = "/account/activity/organization/{porOrgacode}/customer/{cmpCustcode}/fromdate/{fdate}/todate/{tdate}";
|
|
|
|
// product related uri
|
|
String FETCH_UCO_DEPOSIT_PRODUCTS = "/deposit/fetchUcoDepositProducts";
|
|
String FETCH_UCO_ONBOARDING_DEPOSIT_PRODUCTS = "/auth/user/authenticate/onboardCutomer/fetchUcoDepositProducts";
|
|
String FETCH_UCO_GLS = "/deposit/fetchUcoGls";
|
|
String REVERSE_TRANSACTION = "/reverseTransaction";
|
|
String CORE_REVERSE_TRANSACTION = "/deposit/transactions/uco/reverse-transaction";
|
|
String ADD_BENEFICIARY = "/addBeneficary";
|
|
|
|
}
|