Subversion Repositories SmartDukaan

Rev

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

Rev 23557 Rev 23568
Line 9... Line 9...
9
import java.util.List;
9
import java.util.List;
10
import java.util.Map;
10
import java.util.Map;
11
 
11
 
12
import javax.servlet.http.HttpServletRequest;
12
import javax.servlet.http.HttpServletRequest;
13
 
13
 
14
import org.slf4j.Logger;
14
import org.apache.logging.log4j.Logger;
15
import org.slf4j.LoggerFactory;
15
import org.apache.logging.log4j.LogManager;
16
import org.springframework.beans.factory.annotation.Autowired;
16
import org.springframework.beans.factory.annotation.Autowired;
17
import org.springframework.core.io.InputStreamResource;
17
import org.springframework.core.io.InputStreamResource;
18
import org.springframework.http.HttpHeaders;
18
import org.springframework.http.HttpHeaders;
19
import org.springframework.http.HttpStatus;
19
import org.springframework.http.HttpStatus;
20
import org.springframework.http.ResponseEntity;
20
import org.springframework.http.ResponseEntity;
Line 48... Line 48...
48
 
48
 
49
@Controller
49
@Controller
50
@Transactional(rollbackFor=Throwable.class)
50
@Transactional(rollbackFor=Throwable.class)
51
public class SchemeController {
51
public class SchemeController {
52
 
52
 
53
	private static final Logger LOGGER = LoggerFactory.getLogger(SchemeController.class);
53
	private static final Logger LOGGER = LogManager.getLogger(SchemeController.class);
54
 
54
 
55
	@Autowired
55
	@Autowired
56
	private SchemeService schemeService;
56
	private SchemeService schemeService;
57
	
57
	
58
	@Autowired
58
	@Autowired