Interface LoanCobCatchUpApi
public interface LoanCobCatchUpApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<Void> Executes Loan COB Catch Up Executes the Loan COB job on every day from the oldest Loan to the current COB business dateretrofit2.Call<Void> executeLoanCOBCatchUp(Map<String, String> headers) Executes Loan COB Catch Up Executes the Loan COB job on every day from the oldest Loan to the current COB business dateretrofit2.Call<OldestCOBProcessedLoanDTO> Retrieves the oldest COB processed loan Retrieves the COB business date and the oldest COB processed loanretrofit2.Call<OldestCOBProcessedLoanDTO> getOldestCOBProcessedLoan(Map<String, String> headers) Retrieves the oldest COB processed loan Retrieves the COB business date and the oldest COB processed loanretrofit2.Call<IsCatchUpRunningDTO> Retrieves whether Loan COB catch up is running Retrieves whether Loan COB catch up is running, and the current execution date if it is running.retrofit2.Call<IsCatchUpRunningDTO> isCatchUpRunning(Map<String, String> headers) Retrieves whether Loan COB catch up is running Retrieves whether Loan COB catch up is running, and the current execution date if it is running.
-
Method Details
-
executeLoanCOBCatchUp
Executes Loan COB Catch Up Executes the Loan COB job on every day from the oldest Loan to the current COB business date- Returns:
- Call<Void>
-
getOldestCOBProcessedLoan
@GET("v1/loans/oldest-cob-closed") retrofit2.Call<OldestCOBProcessedLoanDTO> getOldestCOBProcessedLoan()Retrieves the oldest COB processed loan Retrieves the COB business date and the oldest COB processed loan- Returns:
- Call<OldestCOBProcessedLoanDTO>
-
isCatchUpRunning
Retrieves whether Loan COB catch up is running Retrieves whether Loan COB catch up is running, and the current execution date if it is running.- Returns:
- Call<IsCatchUpRunningDTO>
-
executeLoanCOBCatchUp
@POST("v1/loans/catch-up") retrofit2.Call<Void> executeLoanCOBCatchUp(@HeaderMap Map<String, String> headers) Executes Loan COB Catch Up Executes the Loan COB job on every day from the oldest Loan to the current COB business date- Returns:
- Call<Void>
-
getOldestCOBProcessedLoan
@GET("v1/loans/oldest-cob-closed") retrofit2.Call<OldestCOBProcessedLoanDTO> getOldestCOBProcessedLoan(@HeaderMap Map<String, String> headers) Retrieves the oldest COB processed loan Retrieves the COB business date and the oldest COB processed loan- Returns:
- Call<OldestCOBProcessedLoanDTO>
-
isCatchUpRunning
@GET("v1/loans/is-catch-up-running") retrofit2.Call<IsCatchUpRunningDTO> isCatchUpRunning(@HeaderMap Map<String, String> headers) Retrieves whether Loan COB catch up is running Retrieves whether Loan COB catch up is running, and the current execution date if it is running.- Returns:
- Call<IsCatchUpRunningDTO>
-