Subversion Repositories SmartDukaan

Rev

Rev 23560 | Rev 23627 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23560 Rev 23574
Line 8... Line 8...
8
import com.spice.profitmandi.common.model.RechargeRequest;
8
import com.spice.profitmandi.common.model.RechargeRequest;
9
import com.spice.profitmandi.common.model.RechargeResponse;
9
import com.spice.profitmandi.common.model.RechargeResponse;
10
 
10
 
11
@Service
11
@Service
12
public interface RechargeService {
12
public interface RechargeService {
-
 
13
	public RechargeResponse doRecharge(String oxigenRechargeTransactionUrl, String oxigenRechargeAuthKey, String rechargeValidationUrl,
-
 
14
			String rechargeValidationAuthKey, RechargeCredential thinkWalnutDigitalRechargeTransactionMobileCredential,
13
	public RechargeResponse doRecharge(RechargeCredential rechargeTransactionMobileCredential, RechargeCredential rechargeTransactionDthCredential, String rechargeValidationUrl, String rechargeValidationAuthKey, int retailerId, RechargeRequest rechargeRequest) throws ProfitMandiBusinessException;
15
			RechargeCredential thinkWalnutDigitalRechargeTransactionDthCredential, int retailerId, RechargeRequest rechargeRequest)
-
 
16
					throws ProfitMandiBusinessException;
-
 
17
	public RechargeResponse checkStatus(String oxigenRechargeEnquiryUrl, String oxigenRechargeAuthKey,
14
	public RechargeResponse checkStatus(RechargeCredential rechargeEnquiryCredential, int retailerId, String requestId) throws ProfitMandiBusinessException;
18
			RechargeCredential thinkWalnutDigitalRechargeEnquiryCredential, int retailerId, String requestId)
-
 
19
					throws ProfitMandiBusinessException;
15
	public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
20
	public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
16
	public void updateRechargeCommission(int operatorId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
21
	public void updateRechargeCommission(int operatorId, int providerId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
17
	public void addCommissionToWallet();
22
	public void addCommissionToWallet();
18
}
23
}