Subversion Repositories SmartDukaan

Rev

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

Rev 34540 Rev 35458
Line 29... Line 29...
29
import org.springframework.web.bind.annotation.RequestBody;
29
import org.springframework.web.bind.annotation.RequestBody;
30
import org.springframework.web.bind.annotation.RequestMapping;
30
import org.springframework.web.bind.annotation.RequestMapping;
31
import org.springframework.web.bind.annotation.RequestMethod;
31
import org.springframework.web.bind.annotation.RequestMethod;
32
 
32
 
33
import javax.servlet.http.HttpServletRequest;
33
import javax.servlet.http.HttpServletRequest;
34
import javax.transaction.Transactional;
34
import org.springframework.transaction.annotation.Transactional;
35
 
35
 
36
@Controller
36
@Controller
37
@Transactional(rollbackOn = Throwable.class)
37
@Transactional(rollbackFor = Throwable.class)
38
public class WebHookController {
38
public class WebHookController {
39
 
39
 
40
    @Autowired
40
    @Autowired
41
    MVCResponseSender mvcResponseSender;
41
    MVCResponseSender mvcResponseSender;
42
 
42