Interface InternalCobApi
public interface InternalCobApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<String> getCobPartitions(Integer partitionSize) retrofit2.Call<String> getCobPartitions(Integer partitionSize, Map<String, String> headers) retrofit2.Call<Void> loanReprocess(Long loanId) retrofit2.Call<Void> loanReprocess(Long loanId, Map<String, String> headers) retrofit2.Call<Void> updateLoanCobLastDate(Long loanId) retrofit2.Call<Void> updateLoanCobLastDate(Long loanId, String body) retrofit2.Call<Void> retrofit2.Call<Void> updateLoanCobLastDate(Long loanId, Map<String, String> headers)
-
Method Details
-
getCobPartitions
@GET("v1/internal/cob/partitions/{partitionSize}") retrofit2.Call<String> getCobPartitions(@Path("partitionSize") Integer partitionSize) - Parameters:
partitionSize- (required)- Returns:
- Call<String>
-
loanReprocess
@POST("v1/internal/cob/loan-reprocess/{loanId}") retrofit2.Call<Void> loanReprocess(@Path("loanId") Long loanId) - Parameters:
loanId- (required)- Returns:
- Call<Void>
-
updateLoanCobLastDate
@Headers("Content-Type:application/json") @POST("v1/internal/cob/fast-forward-cob-date-of-loan/{loanId}") retrofit2.Call<Void> updateLoanCobLastDate(@Path("loanId") Long loanId, @Body String body) - Parameters:
loanId- (required)body- (optional)- Returns:
- Call<Void>
-
updateLoanCobLastDate
@Headers("Content-Type:application/json") @POST("v1/internal/cob/fast-forward-cob-date-of-loan/{loanId}") retrofit2.Call<Void> updateLoanCobLastDate(@Path("loanId") Long loanId) - Parameters:
loanId- (required)body- (optional)- Returns:
- Call<Void>
-
getCobPartitions
@GET("v1/internal/cob/partitions/{partitionSize}") retrofit2.Call<String> getCobPartitions(@Path("partitionSize") Integer partitionSize, @HeaderMap Map<String, String> headers) - Parameters:
partitionSize- (required)- Returns:
- Call<String>
-
loanReprocess
@POST("v1/internal/cob/loan-reprocess/{loanId}") retrofit2.Call<Void> loanReprocess(@Path("loanId") Long loanId, @HeaderMap Map<String, String> headers) - Parameters:
loanId- (required)- Returns:
- Call<Void>
-
updateLoanCobLastDate
@Headers("Content-Type:application/json") @POST("v1/internal/cob/fast-forward-cob-date-of-loan/{loanId}") retrofit2.Call<Void> updateLoanCobLastDate(@Path("loanId") Long loanId, @Body String body, @HeaderMap Map<String, String> headers) - Parameters:
loanId- (required)body- (optional)- Returns:
- Call<Void>
-
updateLoanCobLastDate
@Headers("Content-Type:application/json") @POST("v1/internal/cob/fast-forward-cob-date-of-loan/{loanId}") retrofit2.Call<Void> updateLoanCobLastDate(@Path("loanId") Long loanId, @HeaderMap Map<String, String> headers) - Parameters:
loanId- (required)body- (optional)- Returns:
- Call<Void>
-