Subversion Repositories SmartDukaan

Rev

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

Rev 23559 Rev 23568
Line 7... Line 7...
7
import java.util.Map;
7
import java.util.Map;
8
import java.util.Set;
8
import java.util.Set;
9
 
9
 
10
import javax.servlet.http.HttpServletRequest;
10
import javax.servlet.http.HttpServletRequest;
11
 
11
 
12
import org.slf4j.Logger;
12
import org.apache.logging.log4j.Logger;
13
import org.slf4j.LoggerFactory;
13
import org.apache.logging.log4j.LogManager;
14
import org.springframework.beans.factory.annotation.Autowired;
14
import org.springframework.beans.factory.annotation.Autowired;
15
import org.springframework.beans.factory.annotation.Value;
15
import org.springframework.beans.factory.annotation.Value;
16
import org.springframework.stereotype.Controller;
16
import org.springframework.stereotype.Controller;
17
import org.springframework.transaction.annotation.Transactional;
17
import org.springframework.transaction.annotation.Transactional;
18
import org.springframework.ui.Model;
18
import org.springframework.ui.Model;
Line 43... Line 43...
43
 
43
 
44
@Controller
44
@Controller
45
@Transactional(rollbackFor=Throwable.class)
45
@Transactional(rollbackFor=Throwable.class)
46
public class RechargeController {
46
public class RechargeController {
47
 
47
 
48
	private static final Logger LOGGER = LoggerFactory.getLogger(RechargeController.class);
48
	private static final Logger LOGGER = LogManager.getLogger(RechargeController.class);
49
	
49
	
50
	@Value("${recharge.transaction.mobile.url}")
50
	@Value("${recharge.transaction.mobile.url}")
51
	private String rechargeMobileUrl;
51
	private String rechargeMobileUrl;
52
	
52
	
53
	@Value("${recharge.transaction.mobile.username}")
53
	@Value("${recharge.transaction.mobile.username}")