aboutsummaryrefslogtreecommitdiff
path: root/juick-api/src/main/java/com/juick/api/controllers/SkypeEndpoint.java
blob: 5137585b781f317cc460a48b8d1c482ce13cc297 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.juick.api.controllers;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import java.io.IOException;

/**
 * Created by vitalyster on 18.07.2016.
 */
@Controller
public class SkypeEndpoint {
    private static final Logger logger = LoggerFactory.getLogger(SkypeEndpoint.class);
    @RequestMapping(value = "/skypebotendpoint", method = RequestMethod.POST)
    public void doPost(@RequestBody String body) throws IOException {
        logger.info(body);
    }
}