Subversion Repositories SmartDukaan

Rev

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

Rev 21643 Rev 21702
Line 14... Line 14...
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.http.HttpStatus;
16
import org.springframework.http.HttpStatus;
17
import org.springframework.http.ResponseEntity;
17
import org.springframework.http.ResponseEntity;
18
import org.springframework.stereotype.Controller;
18
import org.springframework.stereotype.Controller;
-
 
19
import org.springframework.transaction.annotation.Transactional;
19
import org.springframework.web.bind.annotation.RequestBody;
20
import org.springframework.web.bind.annotation.RequestBody;
20
import org.springframework.web.bind.annotation.RequestMapping;
21
import org.springframework.web.bind.annotation.RequestMapping;
21
import org.springframework.web.bind.annotation.RequestMethod;
22
import org.springframework.web.bind.annotation.RequestMethod;
22
import org.springframework.web.bind.annotation.RequestParam;
23
import org.springframework.web.bind.annotation.RequestParam;
23
 
24
 
Line 54... Line 55...
54
/**
55
/**
55
 * @author ashikali
56
 * @author ashikali
56
 *
57
 *
57
 */
58
 */
58
@Controller
59
@Controller
-
 
60
@Transactional
59
public class UserController {
61
public class UserController {
60
 
62
 
61
	@Autowired
63
	@Autowired
62
	ResponseSender<?> responseSender;
64
	ResponseSender<?> responseSender;
63
 
65