Subversion Repositories SmartDukaan

Rev

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

Rev 23415 Rev 23568
Line 11... Line 11...
11
import java.util.Map;
11
import java.util.Map;
12
import java.util.stream.Collectors;
12
import java.util.stream.Collectors;
13
 
13
 
14
import javax.servlet.http.HttpServletRequest;
14
import javax.servlet.http.HttpServletRequest;
15
 
15
 
16
import org.slf4j.Logger;
16
import org.apache.logging.log4j.Logger;
17
import org.slf4j.LoggerFactory;
17
import org.apache.logging.log4j.LogManager;
18
import org.springframework.beans.factory.annotation.Autowired;
18
import org.springframework.beans.factory.annotation.Autowired;
19
import org.springframework.stereotype.Controller;
19
import org.springframework.stereotype.Controller;
20
import org.springframework.transaction.annotation.Transactional;
20
import org.springframework.transaction.annotation.Transactional;
21
import org.springframework.ui.Model;
21
import org.springframework.ui.Model;
22
import org.springframework.web.bind.annotation.RequestBody;
22
import org.springframework.web.bind.annotation.RequestBody;
Line 46... Line 46...
46
 
46
 
47
@Controller
47
@Controller
48
@Transactional(rollbackFor = Throwable.class)
48
@Transactional(rollbackFor = Throwable.class)
49
public class IndentController {
49
public class IndentController {
50
 
50
 
51
	private static final Logger LOGGER = LoggerFactory.getLogger(IndentController.class);
51
	private static final Logger LOGGER = LogManager.getLogger(IndentController.class);
52
 
52
 
53
	@Autowired
53
	@Autowired
54
	private CookiesProcessor cookiesProcessor;
54
	private CookiesProcessor cookiesProcessor;
55
 
55
 
56
	@Autowired
56
	@Autowired