Subversion Repositories SmartDukaan

Rev

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

Rev 23204 Rev 23568
Line 1... Line 1...
1
package com.spice.profitmandi.web.controller;
1
package com.spice.profitmandi.web.controller;
2
 
2
 
3
import org.slf4j.Logger;
3
import org.apache.logging.log4j.Logger;
4
import org.slf4j.LoggerFactory;
4
import org.apache.logging.log4j.LogManager;
5
import org.springframework.beans.factory.annotation.Autowired;
5
import org.springframework.beans.factory.annotation.Autowired;
6
import org.springframework.http.MediaType;
6
import org.springframework.http.MediaType;
7
import org.springframework.http.ResponseEntity;
7
import org.springframework.http.ResponseEntity;
8
import org.springframework.stereotype.Controller;
8
import org.springframework.stereotype.Controller;
9
import org.springframework.transaction.annotation.Transactional;
9
import org.springframework.transaction.annotation.Transactional;
Line 25... Line 25...
25
 
25
 
26
@Controller
26
@Controller
27
@Transactional(rollbackFor=Throwable.class)
27
@Transactional(rollbackFor=Throwable.class)
28
public class OTPController {
28
public class OTPController {
29
 
29
 
30
	private static final Logger logger=LoggerFactory.getLogger(OTPController.class);
30
	private static final Logger logger=LogManager.getLogger(OTPController.class);
31
	
31
	
32
	@Autowired
32
	@Autowired
33
	private ResponseSender<?> responseSender;
33
	private ResponseSender<?> responseSender;
34
	
34
	
35
	@Autowired
35
	@Autowired