Rev 23527 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.recharge;import org.springframework.stereotype.Service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.common.model.RechargeRequest;import com.spice.profitmandi.common.model.RechargeResponse;@Servicepublic interface RechargeService {public RechargeResponse doRecharge(String rechargeApiHost, int rechargeApiPort, String authKey, String rechargeValidationApiHost, int rechargeValidationApiPort, String rechargeValidationAuthKey, int retailerId, RechargeRequest rechargeRequest) throws ProfitMandiBusinessException;public RechargeResponse checkStatus(String rechargeApiHost, int rechargeApiPort, String authKey, int retailerId, String requestId) throws ProfitMandiBusinessException;}