Subversion Repositories SmartDukaan

Rev

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

Rev 23532 Rev 23568
Line 7... Line 7...
7
import java.util.Map;
7
import java.util.Map;
8
 
8
 
9
import javax.servlet.http.HttpServletRequest;
9
import javax.servlet.http.HttpServletRequest;
10
 
10
 
11
import org.apache.http.conn.HttpHostConnectException;
11
import org.apache.http.conn.HttpHostConnectException;
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.http.ResponseEntity;
16
import org.springframework.http.ResponseEntity;
17
import org.springframework.stereotype.Controller;
17
import org.springframework.stereotype.Controller;
18
import org.springframework.transaction.annotation.Transactional;
18
import org.springframework.transaction.annotation.Transactional;
Line 68... Line 68...
68
public class UserController {
68
public class UserController {
69
 
69
 
70
	@Autowired
70
	@Autowired
71
	private ResponseSender<?> responseSender;
71
	private ResponseSender<?> responseSender;
72
 
72
 
73
	private static final Logger LOGGER = LoggerFactory.getLogger(UserController.class);
73
	private static final Logger LOGGER = LogManager.getLogger(UserController.class);
74
 
74
 
75
	@Value("${notifications.api.host}")
75
	@Value("${notifications.api.host}")
76
	private String nodeHost;
76
	private String nodeHost;
77
	
77
	
78
	@Value("${notifications.api.port}")
78
	@Value("${notifications.api.port}")